A fast and simple blog backend.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
mediocre-blog/srv/src/http/tpl/post.html

44 lines
894 B

{{ 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>
This post is part of a 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" . }}