nichijou/layouts/blog/single.html

19 lines
310 B
HTML
Raw Normal View History

2024-05-12 09:01:12 -04:00
{{ partial "head.html" . }}
<h1>
{{$.Title}}
<small>
<span class="date">{{.Date.Format "January 2, 2006"}}</span>
on
<span class="site"><a href="{{.Site.BaseURL}}">{{.Site.Title}}</a></span>
</small>
</h1>
<main>
<article>
{{.Content}}
</article>
</main>
{{ partial "foot.html" }}