This commit is contained in:
slashformotion 2021-07-30 21:08:12 +02:00
commit 07a755cafb
6 changed files with 11 additions and 40 deletions
layouts/_default

View file

@ -4,22 +4,16 @@
*/}}
<!DOCTYPE html>
<html lang="{{ .Site.LanguageCode }}">
{{ partial "header.html" . }}
<body>
{{ define "main" }}
<div id="layout" class="pure-g">
<article class="pure-u-1">
{{ partial "brand.html" . }}
{{ partial "content.header.html" . }}
{{ partial "toc.html" . }}
<section>{{ .Content }}</section>
<section>
{{ partial "disqus.html" . }}
{{ partial "footer.html" . }}
</section>
</article>
<article class="pure-u-1">
{{ partial "brand.html" . }}
{{ partial "content.header.html" . }}
{{ partial "toc.html" . }}
<section>{{ .Content }}</section>
<section>
{{ partial "footer.html" . }}
</section>
</article>
</div>
</body>
</html>
{{ end }}