2020-01-12 14:33:02 +00:00
|
|
|
{{ define "main" }}
|
2020-06-01 13:59:02 +00:00
|
|
|
<article class="gdoc-markdown gdoc-post">
|
2020-09-17 20:44:42 +00:00
|
|
|
<header class="gdoc-post__header">
|
2020-06-01 13:59:02 +00:00
|
|
|
<h1 class="gdoc-post__title">{{ .Title }}</h1>
|
2020-09-17 20:44:42 +00:00
|
|
|
<div class="gdoc-post__date">
|
|
|
|
<svg class="icon date"><use xlink:href="#date"></use></svg>
|
|
|
|
<time datetime="{{ .Lastmod.Format "2006-01-02T15:04:05Z07:00" | safeHTML }}">
|
|
|
|
{{ if ne (.Lastmod.Format "2006-01-02") (.Date.Format "2006-01-02") }}
|
|
|
|
Updated on
|
|
|
|
{{ end }}
|
|
|
|
{{ .Lastmod.Format "Jan 2, 2006" }}
|
|
|
|
</time>
|
|
|
|
</div>
|
2020-06-01 13:59:02 +00:00
|
|
|
</header>
|
|
|
|
<div>
|
2020-02-26 22:59:30 +00:00
|
|
|
{{ partial "content" . }}
|
2020-06-01 13:59:02 +00:00
|
|
|
</div>
|
2020-01-12 14:33:02 +00:00
|
|
|
</article>
|
|
|
|
{{ end }}
|