You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
443 B
20 lines
443 B
{{ define "title" }}{{ .Title }}{{ end }}
|
|
|
|
{{ define "main" }}
|
|
<main>
|
|
{{ partial "article-meta.html" . }}
|
|
|
|
{{ .Content }}
|
|
</main>
|
|
|
|
<section>
|
|
{{ with .NextInSection }}
|
|
<p>Next: <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></p>
|
|
{{ end }}
|
|
|
|
{{ with .PrevInSection }}
|
|
<p>Previous: <a href="{{ .Permalink }}">{{ .Title | markdownify }}</a></p>
|
|
{{ end }}
|
|
</section>
|
|
|
|
{{ end }}
|
|
|