49 lines
1.2 KiB
HTML
49 lines
1.2 KiB
HTML
|
{{ define "body" }}
|
||
|
|
||
|
<header id="post-header">
|
||
|
<h1 id="post-headline">
|
||
|
{{ .Title }}
|
||
|
</h1>
|
||
|
<div class="light">
|
||
|
{{ .PublishedAt.Format "2006-01-02" }}
|
||
|
•
|
||
|
{{ if not .LastUpdatedAt.IsZero }}
|
||
|
(Updated {{ .LastUpdatedAt.Format "2006-01-02" }})
|
||
|
•
|
||
|
{{ end }}
|
||
|
<em>{{ .Description }}</em>
|
||
|
</div>
|
||
|
</header>
|
||
|
|
||
|
{{ if (or .SeriesPrevious .SeriesNext) }}
|
||
|
<p class="light"><em>
|
||
|
This post is part of a series:<br/>
|
||
|
{{ if .SeriesPrevious }}
|
||
|
Previously: <a href="{{ .SeriesPrevious.HTTPPath }}">{{ .SeriesPrevious.Title }}</a></br>
|
||
|
{{ end }}
|
||
|
{{ if .SeriesNext }}
|
||
|
Next: <a href="{{ .SeriesNext.HTTPPath }}">{{ .SeriesNext.Title }}</a></br>
|
||
|
{{ end }}
|
||
|
</em></p>
|
||
|
{{ end }}
|
||
|
|
||
|
<div id="post-content">
|
||
|
{{ .Body }}
|
||
|
</div>
|
||
|
|
||
|
{{ if (or .SeriesPrevious .SeriesNext) }}
|
||
|
<p class="light"><em>
|
||
|
If you liked this post, consider checking out other posts in the series:<br/>
|
||
|
{{ if .SeriesPrevious }}
|
||
|
Previously: <a href="{{ .SeriesPrevious.HTTPPath }}">{{ .SeriesPrevious.Title }}</a></br>
|
||
|
{{ end }}
|
||
|
{{ if .SeriesNext }}
|
||
|
Next: <a href="{{ .SeriesNext.HTTPPath }}">{{ .SeriesNext.Title }}</a></br>
|
||
|
{{ end }}
|
||
|
</em></p>
|
||
|
{{ end }}
|
||
|
|
||
|
{{ end }}
|
||
|
|
||
|
{{ template "base.html" . }}
|