1
0
mirror of https://github.com/danbee/danbarber.me.hugo.git synced 2025-03-04 08:59:18 +00:00

The dot passes variables through to the partials

This commit is contained in:
Daniel Barber 2019-10-12 19:11:45 -04:00
parent b90c53f00c
commit 1cb2387186

View File

@ -1,14 +1,14 @@
<!DOCTYPE html>
<html>
<head>
{{ partial "head.html" }}
{{ partial "head.html" . }}
</head>
<body>
{{ partial "header.html" }}
{{ partial "header.html" . }}
<main class="container">
{{ block "main" . }}
{{ end }}
</main>
{{ partial "footer.html" }}
{{ partial "footer.html" . }}
</body>
</html>