website/themes/datacoop2020/layouts/_default/baseof.html
Benjamin Bach fef42ad5c8
Some checks reported errors
continuous-integration/drone/pr Build encountered an error
Structure for multilingual contents + contents of old website
2020-05-03 22:45:20 +02:00

28 lines
428 B
HTML

<!doctype html>
<html lang="en">
{{ partial "head.html" . }}
<body>
{{ partial "nav.html" . }}
<div class="container">
<article>
{{ block "main" . }}{{ end }}
</article>
</div>
{{ partial "bootstrap-js.html" . }}
{{ partial "mastodon-js.html" . }}
<ul>
{{ range $.Site.Home.AllTranslations }}
<li><a href="{{ .Permalink }}">{{ .Language.LanguageName }}</a></li>
{{ end }}
</ul>
</body>
</html>