2020-08-12 17:15:08 -05:00
|
|
|
<!DOCTYPE html>
|
2022-05-30 15:33:18 -05:00
|
|
|
<html lang="{{ $.Site.LanguageCode}}">
|
|
|
|
<!-- HEAD Element -->
|
|
|
|
{{ partial "head.html" . }}
|
|
|
|
|
|
|
|
<!-- Page BODY -->
|
2020-08-12 17:15:08 -05:00
|
|
|
<body>
|
2022-05-30 15:33:18 -05:00
|
|
|
|
|
|
|
<!-- HEADER Element -->
|
|
|
|
{{ partial "header.html" . }}
|
|
|
|
|
|
|
|
<!-- Content -->
|
2020-08-12 17:15:08 -05:00
|
|
|
<div id="content">
|
2022-05-30 15:33:18 -05:00
|
|
|
{{ block "main" . }}
|
|
|
|
<!-- The page content will go here, declaring a "main" block -->
|
|
|
|
{{ end }}
|
2020-08-12 17:15:08 -05:00
|
|
|
</div>
|
2022-05-30 15:33:18 -05:00
|
|
|
|
|
|
|
<!-- FOOTER Element -->
|
|
|
|
{{ partial "footer.html" . }}
|
|
|
|
|
2020-08-12 17:15:08 -05:00
|
|
|
</body>
|
|
|
|
</html>
|