theme/layouts/post/single.html

16 lines
311 B
HTML
Raw Normal View History

2019-02-02 16:17:50 +00:00
{{ partial "header.html" . }}
2022-01-29 15:55:26 +00:00
<article class="max-w-screen-lg mx-auto mt-4">
<h1 class="text-3xl font-bold font-title mb-8">
<a href="{{ .Permalink }}">
{{ .Title }}
</a>
</h1>
2022-01-29 16:25:39 +00:00
{{ partial "prose.html" .Content }}
2021-09-05 16:40:19 +00:00
2022-01-29 15:55:26 +00:00
{{ partial "vikunja-cloud-banner.html" }}
</article>
2019-02-02 16:17:50 +00:00
{{ partial "footer.html" . }}