binario/layouts/_default/baseof.html

22 lines
647 B
HTML
Raw Normal View History

2018-11-03 14:23:41 +00:00
<!DOCTYPE html>
<html class="no-js" lang="{{ .Site.LanguageCode | default "en-us" }}">
{{ partial "head.html" . }}
2018-11-03 14:23:41 +00:00
<body>
{{ partial "header" . }}
2018-11-14 18:34:07 +00:00
<div class="primary">
2018-11-03 14:23:41 +00:00
{{ block "main" . }}
{{- if or .Title .Content }}
<div class="page block">
{{ with .Title }}<h1 class="page__title">{{ . }}</h1>{{ end }}
{{ with .Content }}<div class="page__content{{ if not $.Title }} page__content--notitle{{ end }}">{{ . }}</div>{{ end }}
</div>
{{ end }}
{{ end }}
</div>
{{ partial "footer" . }}
{{- with .Site.Menus.main }}
2018-11-03 14:23:41 +00:00
<script src="{{ "js/menu.js" | relURL }}"></script>
{{- end }}
2018-11-03 14:23:41 +00:00
{{- partial "mathjax.html" . -}}
</body>
</html>