25 lines
1.1 KiB
HTML
25 lines
1.1 KiB
HTML
{{ define "main" }}
|
|
<article>
|
|
<h1 style="padding-top: 1em;">{{ .Title }}</h1>
|
|
<p style="padding-bottom: 1em;">Tags:
|
|
{{ range (.GetTerms "categories") }}
|
|
<a href="{{ .Permalink }}" style="background: #202226; border-radius: 0.3em; padding: 0.4em; margin: 0.1em">{{ .LinkTitle }}</a>
|
|
{{ end }}</p>
|
|
{{.Content}}
|
|
<small>Published on {{ .Date.Format "2006-01-02" }}</small>
|
|
<div class="next-post" style="padding-top: 1em;">
|
|
{{ if .NextPage }}
|
|
Next: <a class="link-reverse" href="{{ .NextPage.Permalink }}"> {{ .NextPage.Title | truncate 50 "..." }}</a> »
|
|
{{ end }}
|
|
</div>
|
|
<div class="previous-post" style="padding-top: 1em; padding-bottom: 2em;">
|
|
{{ if .PrevPage }}
|
|
« Previous: <a class="link-reverse" href="{{ .PrevPage.Permalink }}"> {{ .PrevPage.Title | truncate 50 "..."}}</a>
|
|
{{ end }}
|
|
</div>
|
|
<script defer src="https://comments.aronajones.com/js/commento.js"></script>
|
|
<div id="commento" style="width: 50%"></div>
|
|
<noscript>FYI: Comments would be here, but they require Javascript.</noscript>
|
|
</article>
|
|
{{ end }}
|