20 lines
332 B
HTML
20 lines
332 B
HTML
{{- define "content" -}}
|
|
|
|
<a href="../">« back</a>
|
|
<h1 style="margin: 0;">{{ .Title }}</h1>
|
|
|
|
<small style="display: block; margin-bottom: 20px;">
|
|
Posted
|
|
on {{ partial "rel-date" .Date }}
|
|
- {{ .ReadingTime }} min read
|
|
</small>
|
|
|
|
<div id="content">{{ .Content }}</div>
|
|
|
|
<hr />
|
|
|
|
<small>
|
|
End.
|
|
</small>
|
|
|
|
{{- end -}}
|