2018-04-26 18:20:41 -05:00
|
|
|
{{ define "main" }}
|
|
|
|
<div class="reveal">
|
|
|
|
<!-- Any section element inside of this container is displayed as a slide -->
|
|
|
|
<div class="slides">
|
|
|
|
<!-- Find all pages with a type of reveal -->
|
2018-04-27 00:26:49 -05:00
|
|
|
{{ range union (slice .Page) (where .Data.Pages "Type" "home") }}
|
2018-04-27 00:11:04 -05:00
|
|
|
<!-- Don't process empty content files -->
|
|
|
|
{{ if ne (len .Content) 0 }}
|
|
|
|
<!-- Split the processed content by <hr /> tag -->
|
|
|
|
{{ range (split .Content "<hr />") }}
|
|
|
|
<!-- Output the content as safe -->
|
|
|
|
<section>{{ . | safeHTML }}</section>
|
|
|
|
{{ end }}
|
2018-04-26 17:25:43 -05:00
|
|
|
{{ end }}
|
2018-04-26 18:20:41 -05:00
|
|
|
{{ end }}
|
2018-04-26 17:25:43 -05:00
|
|
|
</div>
|
2018-04-26 18:20:41 -05:00
|
|
|
</div>
|
|
|
|
{{ end }}
|