ariadne.space/layouts/_default/single.html

15 lines
341 B
HTML

{{ define "main" }}
<article class="h-entry">
<h1 class="p-name">{{ .Title }}</h1>
<div class="e-content">
{{ .Content }}
</div>
<p>
Published on
<a class="u-url" href="{{ .Permalink }}">
<time class="dt-published" datetime="{{ .Date }}">{{ .Date.Format "Jan 2, 2006" }}</time>
</a>
</p>
</article>
{{ end }}