23 lines
464 B
HTML
23 lines
464 B
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode }}">
|
|
<head>
|
|
{{ partial "seo_schema.html" . }}
|
|
|
|
<title>{{ block "title" . }} {{ .Site.Title }} {{ end }}</title>
|
|
|
|
{{ partial "head.html" . }}
|
|
</head>
|
|
|
|
<body>
|
|
<div class="flexWrapper">
|
|
{{ partial "header.html" . }}
|
|
|
|
<div class="content">
|
|
<main class="main">{{ block "main" . }} {{ end }}</main>
|
|
</div>
|
|
|
|
{{ partial "footer.html" . }}
|
|
</div>
|
|
</body>
|
|
</html>
|