15 lines
264 B
HTML
15 lines
264 B
HTML
<!doctype html>
|
|
<html lang="{{- .Site.LanguageCode -}}">
|
|
{{ partial "components/head/index.html" . }}
|
|
|
|
|
|
<body>
|
|
{{ partial "components/header.html" . }}
|
|
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
|
|
{{ partial "components/footer.html" . }}
|
|
</body>
|
|
</html>
|