hugo-simpleIntro/layouts/_default/baseof.html

24 lines
499 B
HTML
Raw Normal View History

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