blob: 1823c5d86217ad730b5a14c9b20f35f712a6fe28 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
{{ define "main" }}
{{ $wrappedTable := printf "<div class='table-wrapper'> ${1} </div>" }}
<div>
<h1 class="title centered">{{ .Title }}</h1>
<!--p style="text-align: center;">{{ .Summary }}</p-->
{{ .Content | replaceRE "(<table>(?:.|\n)+?</table>)" $wrappedTable | safeHTML }}
<!-- For some reason prevpage shows next and vice versa -->
<div class="page-nav">
<span>
{{ if .NextInSection }}
<a href="{{ .NextInSection.Permalink }}">Previous: {{ .NextInSection.Title }}</a>
{{ end }}
</span>
<span>
{{ if .PrevInSection }}
<a href="{{ .PrevInSection.Permalink }}">Next: {{ .PrevInSection.Title }}</a>
{{ end }}
</span>
</div>
</div>
{{ end }}
|