ariadne.space/layouts/_default/single.html

17 lines
370 B
HTML
Raw Normal View History

2022-08-02 16:59:11 +00:00
{{ define "main" }}
2022-08-03 00:12:13 +00:00
<article class="h-entry">
<h1 class="p-name">{{ .Title }}</h1>
<div class="e-content">
2022-08-02 16:59:11 +00:00
{{ .Content }}
</div>
{{ if .Date }}
2022-08-03 00:12:13 +00:00
<p>
Published on
<a class="u-url" href="{{ .Permalink }}">
<time class="dt-published" datetime="{{ .Date }}">{{ .Date.Format "Jan 2, 2006" }}</time>
</a>
</p>
{{ end }}
2022-08-02 16:59:11 +00:00
</article>
{{ end }}