sandvich.xyz/layouts/_default/single.html

19 lines
451 B
HTML
Raw Normal View History

2022-09-12 19:20:07 -07:00
{{ partial "head.html" . }}
{{ partial "header.html" }}
<div class="root">
<div class="content">
2022-10-30 19:47:39 -07:00
<h1 class="MUGA">
2022-09-12 19:20:07 -07:00
{{ .Title }}
</h1>
2022-10-30 19:47:39 -07:00
{{ if (eq .Section "posts") }}
{{ partial "post-info.html" . }}
{{ end }}
2022-09-12 19:20:07 -07:00
{{ .Content }}
{{ partial "remark42.html" . }}
{{ partial "footer.html" }}
</div>
</div>
2022-10-30 19:47:39 -07:00
<ul class="shortlist links">
{{ partial "links.html" }}
</ul>