2019-02-03 12:30:44 +01:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html lang="{{ .Site.LanguageCode }}">
|
2019-08-04 15:53:35 +02:00
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
|
2019-08-09 15:25:13 +02:00
|
|
|
<title>{{ block "title" . }}{{ .Site.Title }}{{ end }}</title>
|
2019-08-04 15:53:35 +02:00
|
|
|
{{ partial "head.html" . }}
|
|
|
|
</head>
|
|
|
|
<body class="">
|
|
|
|
<div class="wrapper">
|
2019-08-05 15:15:01 +02:00
|
|
|
{{ partial "header.html" . }}
|
2019-08-04 15:53:35 +02:00
|
|
|
<main class="main">
|
|
|
|
<div class="container">
|
|
|
|
{{ block "content" . }}{{ end }}
|
|
|
|
</div>
|
|
|
|
</main>
|
|
|
|
{{ partial "footer.html" . }}
|
2019-08-18 19:36:52 +02:00
|
|
|
{{ partial "scripts.html" . }}
|
2019-08-04 15:53:35 +02:00
|
|
|
</div>
|
|
|
|
</body>
|
2019-08-18 19:36:52 +02:00
|
|
|
</html>
|