freedom/layouts/_default/single.html

23 lines
511 B
HTML
Raw Normal View History

2022-08-17 14:50:07 -04:00
<!DOCTYPE html>
<html>
<head>
{{partial "head" .}}
</head>
<body>
2022-08-22 20:03:48 -04:00
{{partial "header" .}}
<main>
<article>
<section>
{{.Content}}
</section>
{{ if .Params.author}}
2022-09-05 19:26:00 -04:00
<hr>
2022-08-22 20:03:48 -04:00
<section>
{{partial "metadata" .}}
</section>
{{end}}
</article>
</main>
{{partial "footer" .}}
2022-08-17 14:50:07 -04:00
</body>
</html>