blog/layouts/posts/single.html

21 lines
353 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-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>
End.
</small>
{{- end -}}