35 lines
1.6 KiB
HTML
35 lines
1.6 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="{{ .Site.LanguageCode | default "en" }}">
|
|
<title>{{ if .Title }}{{ .Title }} | {{ end }}{{ .Site.Title }}</title>
|
|
<meta charset="utf-8">
|
|
{{ hugo.Generator }}
|
|
{{- if or .Description .Site.Params.description }}
|
|
<meta name="description" content="{{ .Description | default .Site.Params.description }}">
|
|
{{- end }}
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
{{- if .Site.Params.fontawesome }}
|
|
{{ partial "font-awesome.html" . }}
|
|
{{- end }}
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/index.css">
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/classes.css">
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}fonts/PT-Sans.css">
|
|
{{- if .Site.Params.sidebar }}
|
|
<link rel="stylesheet" href="{{ .Site.BaseURL }}css/sidebar.css" media="screen and (min-width: 70em)">
|
|
{{- end }}
|
|
<link rel="canonical" href="{{ .Permalink }}">
|
|
<link rel="alternate" type="application/rss+xml" href="{{ with .OutputFormats.Get "RSS" }}{{ .RelPermalink }}{{ end }}" title="{{ .Site.Title }}">
|
|
{{- if or .Params.math .Site.Params.math }}
|
|
{{ partial "math.html" . }}
|
|
{{- end }}
|
|
|
|
<header class="{{ if .Site.Params.darkheader }}dark{{ end }} {{ if gt (len .Site.Menus) 1 }}full{{ end }}">
|
|
{{ $url := .RelPermalink }}
|
|
{{ if not .Site.Params.hidetitle }}<a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a>{{ end }}
|
|
{{ range .Site.Menus }}<nav>{{ range . }}<a href="{{ .URL }}" {{ if (eq $url .URL) }}class="selected"{{ end }}>{{ .Pre }}{{ .Name }}{{ .Post }}</a>{{ end }}</nav>{{ end }}
|
|
{{ with .Site.Params.description }}<div class="hidden">{{ safeHTML . }}</div>{{ end }}
|
|
</header>
|
|
|
|
{{- block "main" . }}{{- end }}
|
|
|
|
</html>
|