18 lines
462 B
HTML
18 lines
462 B
HTML
<!doctype html>
|
|
<html lang="{{ .Language.Lang }}" class="h-100">
|
|
<head>
|
|
{{ partial "head.html" . }}
|
|
{{ partial "styles.html" . }}
|
|
</head>
|
|
<body class="d-flex h-100 text-center text-bg-dark">
|
|
<div class="cover-container d-flex w-100 h-100 p-3 mx-auto flex-column">
|
|
{{ partial "header.html" . }}
|
|
{{ block "main" . }}
|
|
{{ end }}
|
|
{{ partial "footer.html" . }}
|
|
</div>
|
|
{{ partial "scripts.html" . }}
|
|
</body>
|
|
</html>
|
|
|