blob: 4fc70649f3f2210fd24b4580bf08af439635784f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
{{ define "main" }}
<article>
<h1>{{ .Title }}</h1>
{{ .Content }}
</article>
{{ if or .NextInSection .PrevInSection }}
<nav class="pagination">
<hr/>
<p>More Episodes</p>
<ul>
{{ if .PrevInSection }}
<li class="prev"><a href="{{ .PrevInSection.Permalink }}">« {{ .PrevInSection.Title }}</a></li>
{{ end }}
{{ if .NextInSection }}
<li class="next"><a href="{{ .NextInSection.Permalink }}">{{ .NextInSection.Title }} »</a></li>
{{ end }}
</ul>
<hr/>
</nav>
{{ end }}
{{ end }}
|