1
0
web/layouts/_default/single.html

17 lines
342 B
HTML
Raw Normal View History

2024-04-05 08:44:02 +00:00
{{ partial "head.html" . }}
{{ partial "navbar.html" . }}
{{ partial "header.html" . }}
2024-04-05 08:46:22 +00:00
<article>
<div class="content">
{{ if ne .Lastmod .Date }}<div class="post-time-date">{{ .Lastmod.Format "2006-01-02" }}</div>{{ end }}
<h2>{{ .Title }}</h2>
{{ .Content }}
</div>
</article>
2024-04-05 08:44:02 +00:00
</div>
2024-04-05 08:46:22 +00:00
{{ partial "footer.html" . }}
2024-04-05 08:44:02 +00:00
</body>
</html>