hearth/layouts/index.html

15 lines
263 B
HTML
Raw Normal View History

2023-04-07 05:56:53 -04:00
<!DOCTYPE html>
<html>
{{ partial "head" .}}
<body style="background-image:url({{.Params.background}})">
{{ partial "header" .}}
<main>
<article>
{{ .Content}}
</article>
</main>
{{partial "footer" .}}
</body>
</html>