trwnh.com/unified.test.hugo/layouts/_default/single.html

13 lines
322 B
HTML
Raw Normal View History

{{- define "head" }}
<link rel="author" href="https://trwnh.com" />{{/* TODO: make variable */}}
{{- end }}
{{- define "body" }}
2024-10-05 19:56:14 +00:00
<body class="layout-_default-single">
2024-10-18 07:33:33 +00:00
{{ partial "site-header.html" . }}
<main id="main">
2024-11-13 17:24:48 +00:00
{{ partial "components/article.html" . }}
</main>
2024-10-18 07:33:33 +00:00
{{ partial "site-footer.html" . }}
2024-10-05 06:27:07 +00:00
</body>
2024-10-16 05:34:37 +00:00
{{ end }}