2018-04-30 20:47:20 -05:00
|
|
|
<div class="reveal">
|
|
|
|
<!-- Any section element inside of this container is displayed as a slide -->
|
|
|
|
<div class="slides">
|
|
|
|
<!-- Use the array of pages passed as a param -->
|
|
|
|
{{ range . -}}
|
|
|
|
<!-- Don't process empty content files -->
|
|
|
|
{{- if ne (len .Content) 0 -}}
|
2018-07-12 17:21:48 -05:00
|
|
|
<!-- Remove the <hr /> tag generated by blackfriday for footnotes -->
|
|
|
|
{{ $content := replace .Content "<div class=\"footnotes\">\n\n<hr />" "<div class=\"footnotes\">" }}
|
2018-04-30 20:47:20 -05:00
|
|
|
<!-- Split the processed content by <hr /> tag -->
|
2018-07-12 17:21:48 -05:00
|
|
|
{{- range (split $content "<hr />") -}}
|
2018-04-30 20:47:20 -05:00
|
|
|
<!-- Only wrap in <section> tag if not already wrapped by shortcode -->
|
|
|
|
{{- if in . "data-noprocess" -}}
|
|
|
|
{{- . | safeHTML -}}
|
|
|
|
{{- else -}}
|
|
|
|
<section>
|
2018-07-12 17:21:48 -05:00
|
|
|
{{- . | safeHTML }}
|
2018-04-30 20:47:20 -05:00
|
|
|
</section>
|
|
|
|
{{ end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end -}}
|
|
|
|
{{- end }}
|
|
|
|
</div>
|
|
|
|
</div>
|