1
0
web/layouts/_default/single.html
2024-04-07 18:18:53 +09:00

17 lines
342 B
HTML

{{ partial "head.html" . }}
{{ partial "navbar.html" . }}
{{ partial "header.html" . }}
<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>
</div>
{{ partial "footer.html" . }}
</body>
</html>