feat: WIP

This commit is contained in:
2021-06-12 01:58:10 +02:00
parent b60416834e
commit dc551c0d2a
67 changed files with 1998 additions and 1 deletions

View File

@ -0,0 +1,26 @@
<!DOCTYPE html>
<html lang="{{ .Site.Language.Lang }}">
{{ partial "head.html" . }}
<body>
<header>
<div class="container">
{{ partial "header.html" . }}
</div>
</header>
{{ partial "debug.html" . }}
<main>
{{ block "main" . }}{{ end }}
</main>
<footer>
<div class="container">
{{ partial "footer.html" . }}
</div>
</footer>
</div>
{{ partial "js.html" . }}
</body>
</html>

View File

@ -0,0 +1,5 @@
{{ define "main" }}
<section class="content">
{{ .Content }}
</section>
{{ end }}

View File

@ -0,0 +1,5 @@
{{ define "main" }}
<section class="content container md">
{{ .Content }}
</section>
{{ end }}