2019-11-19 04:39:28 +00:00
|
|
|
{{ define "title" }}
|
|
|
|
{{ .Title }} – {{ .Site.Title }}
|
|
|
|
{{ end }}
|
2019-11-21 04:38:53 +00:00
|
|
|
{{ define "content-header" }}
|
2019-12-07 19:06:46 +00:00
|
|
|
<h1 class="p-name u-url"><a href="{{ .Permalink }}">{{ .Title }}</a></h1>
|
2019-12-07 18:51:12 +00:00
|
|
|
<p>
|
2020-01-01 03:19:48 +00:00
|
|
|
Published on <time class="dt-published" datetime="{{ .Date }}">{{ .Date.Format "January 2, 2006" }}</time>
|
2019-12-07 18:51:12 +00:00
|
|
|
</p>
|
2019-11-21 04:38:53 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ define "content" }}
|
2019-12-07 18:51:12 +00:00
|
|
|
<article class="e-content">
|
2019-11-19 04:39:28 +00:00
|
|
|
{{ .Content }}
|
2019-11-21 04:38:53 +00:00
|
|
|
</article>
|
2019-11-24 21:51:04 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ define "content-footer" }}
|
2019-12-23 22:55:57 +00:00
|
|
|
{{ partial "webmentions.html" . }}
|
2019-11-24 21:51:04 +00:00
|
|
|
{{ partial "prev-next-page.html" . }}
|
2019-11-19 04:39:28 +00:00
|
|
|
{{ end }}
|