contrast-hugo/layouts/_default/baseof.html

35 lines
1.4 KiB
HTML
Raw Normal View History

2019-07-15 09:04:11 -04:00
<!DOCTYPE html>
2019-07-15 09:07:53 -04:00
<html lang="{{ .Site.LanguageCode | default "en" }}">
2019-07-15 09:04:11 -04:00
<title>{{ if .Title }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
<meta charset="utf-8">
2019-07-18 15:26:43 -04:00
{{ hugo.Generator }}
{{- if or .Description .Site.Params.description }}
2019-07-15 09:04:11 -04:00
<meta name="description" content="{{ .Description | default .Site.Params.description }}">
2019-07-18 15:26:43 -04:00
{{- end }}
<meta name="viewport" content="width=device-width, initial-scale=1.0">
2021-02-28 15:34:43 -05:00
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/{{ if .Site.Params.minimal }}minimal.css{{ else }}index.css{{ end }}">
2020-02-03 11:05:50 -05:00
<link rel="canonical" href="{{ .Permalink }}">
<link rel="alternate" type="application/rss+xml" href="{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}" title="{{ .Site.Title }}">
2019-07-15 09:04:11 -04:00
{{- if or .Params.math .Site.Params.math }}
2021-02-28 15:34:43 -05:00
<link rel="stylesheet" href="{{ .Site.BaseURL }}katex/katex.min.css">
<script defer src="{{ .Site.BaseURL }}katex/katex.min.js"></script>
<script defer src="{{ .Site.BaseURL }}katex/contrib/auto-render.min.js" onload="renderMathInElement(document.body)"></script>
2019-07-15 09:04:11 -04:00
{{- end }}
2020-11-25 14:51:00 -05:00
<header>
2020-02-18 11:49:01 -05:00
{{ if not (gt (len .Site.Menus) 1) }}
2021-02-28 15:34:43 -05:00
<a href="{{ .Site.BaseURL }}" class="title">{{ .Site.Title }}</a>
2020-02-18 11:49:01 -05:00
{{ end }}
2020-02-18 11:55:14 -05:00
{{ range $menu, $items := .Site.Menus }}
2020-02-18 11:49:01 -05:00
<nav>
2020-02-18 11:55:14 -05:00
{{ range $items }}
2020-11-25 14:51:00 -05:00
<a href="{{ .URL }}">{{ .Name }}</a>
2020-02-18 11:49:01 -05:00
{{ end }}
</nav>
{{ end }}
2019-07-15 09:04:11 -04:00
</header>
{{- block "main" . }}{{- end }}
2020-02-18 11:40:33 -05:00
2019-07-15 09:04:11 -04:00
</html>