45 lines
936 B
HTML
45 lines
936 B
HTML
{{ define "body" }}
|
|
|
|
<p><em>
|
|
Published {{ DateTimeFormat .Payload.PublishedAt }}
|
|
{{ if not .Payload.LastUpdatedAt.IsZero }}
|
|
<br/>Last updated {{ DateTimeFormat .Payload.LastUpdatedAt }}
|
|
{{ end }}
|
|
</em></p>
|
|
|
|
<h1 id="post-headline">
|
|
{{ .Payload.Title }}
|
|
</h1>
|
|
|
|
<p>
|
|
<em>- {{ .Payload.Description }}</em>
|
|
</p>
|
|
|
|
<hr/>
|
|
|
|
{{ .Payload.Body }}
|
|
|
|
{{ if (or .Payload.SeriesPrevious .Payload.SeriesNext) }}
|
|
<hr/>
|
|
<p><em>
|
|
If you liked this post, consider checking out other posts in the series:<br/>
|
|
|
|
{{ if .Payload.SeriesPrevious }}
|
|
Previously: <a href="{{ PostURL .Payload.SeriesPrevious.ID }}">{{ .Payload.SeriesPrevious.Title }}</a>
|
|
{{ end }}
|
|
|
|
{{ if (and .Payload.SeriesNext .Payload.SeriesPrevious) }}
|
|
</br>
|
|
{{ end }}
|
|
|
|
{{ if .Payload.SeriesNext }}
|
|
Next: <a href="{{ PostURL .Payload.SeriesNext.ID }}">{{ .Payload.SeriesNext.Title }}</a></br>
|
|
{{ end }}
|
|
|
|
</em></p>
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
{{ template "base.html" . }}
|