The current Hugo theme for the beetbox.io website
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.
|
|
|
{{ define "main" }}
|
|
|
|
<main>
|
|
|
|
{{ partial "article-meta.html" . }}
|
|
|
|
|
|
|
|
{{ if .Params.toc }}
|
|
|
|
{{ .TableOfContents }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ .Content }}
|
|
|
|
|
|
|
|
<p>
|
|
|
|
|
|
|
|
{{ with .NextInSection }}
|
|
|
|
<b>Next: </b><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
|
|
|
<br>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ with .PrevInSection }}
|
|
|
|
<b>Previous: </b><a href="{{ .Permalink }}">{{ .Title | markdownify }}</a>
|
|
|
|
<br>
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
<b><a href="/"> >> Home</a></b>
|
|
|
|
</p>
|
|
|
|
|
|
|
|
</main>
|
|
|
|
{{ end }}
|