15 lines
396 B
HTML
15 lines
396 B
HTML
|
<!DOCTYPE html>
|
||
|
<html itemscope lang="{{ .Site.LanguageCode }}">
|
||
|
<head>
|
||
|
{{ partial "head.html" . }}
|
||
|
</head>
|
||
|
|
||
|
<body lang="{{ .Site.Params.Lang }}">
|
||
|
{{ partial "header.html" . }}
|
||
|
<div class="container middle_container">
|
||
|
{{ block "main" . }}
|
||
|
<!-- The part of the page that begins to differ between templates -->
|
||
|
{{ end }}
|
||
|
</div> <!-- end middle_container -->
|
||
|
{{ partial "footer.html" . }}
|