blog/layouts/posts/single.html

33 lines
681 B
HTML
Raw Normal View History

2020-11-03 22:14:45 +00:00
{{- define "content" -}}
<a href="../">&laquo; back</a>
<h1 style="margin: 0;">{{ .Title }}</h1>
<small style="display: block; margin-bottom: 20px;">
Posted
2020-11-03 23:27:16 +00:00
on {{ partial "rel-date" .Date }}
2020-11-03 22:14:45 +00:00
- {{ .ReadingTime }} min read
</small>
2021-07-06 05:52:05 +00:00
{{ if .Params.toc }}
<div class="toc">
<details>
<summary>Table of Contents</summary>
{{ .TableOfContents }}
</details>
</div>
{{ end }}
2021-05-04 12:02:15 +00:00
<div id="content" class="post-content">{{ .Content }}</div>
2020-11-03 22:14:45 +00:00
<hr />
<small>
2021-08-30 07:52:21 +00:00
Thanks for reading!
{{ if .Params.mastodon }}
Have comments? Discuss this post on <a href="{{ .Params.mastodon }}" target="_blank">Mastodon</a>.
{{ end }}
2020-11-03 22:14:45 +00:00
</small>
{{- end -}}