init project

This commit is contained in:
2023-05-17 01:12:02 +02:00
commit dd92e00845
20 changed files with 3976 additions and 0 deletions

View File

@ -0,0 +1,17 @@
<!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>