39 lines
1.4 KiB
HTML
39 lines
1.4 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<link rel="shortcut icon" href="/favicon.ico" />
|
|
<title>{{- block "title" . }}{{ with .Title }}{{ . }} | {{ end }}{{ .Site.Title }}{{- end }}</title>
|
|
|
|
<!-- Primary Meta Tags -->
|
|
<meta name="title" content="{{ with .Title }}{{ . }}{{ else }}{{ .Site.Title }}{{ end }}" />
|
|
<meta name="description" content="{{ with .Description }}{{ . }}{{ else }}{{if .IsPage}}{{ .Summary }}{{ else }}{{ with .Site.Params.description }}{{ . }}{{ end }}{{ end }}{{ end }}" />
|
|
<meta name="keywords" content="{{ if .IsPage}}{{ range $index, $tag := .Params.tags }}{{ $tag }},{{ end }}{{ else }}{{ range $plural, $terms := .Site.Taxonomies }}{{ range $term, $val := $terms }}{{ printf "%s," $term }}{{ end }}{{ end }}{{ end }}" />
|
|
|
|
{{- partial "style.html" . -}}
|
|
</head>
|
|
<body>
|
|
<header>
|
|
{{ if .IsHome }}
|
|
<a href="{{ "" | relURL }}" class="title">
|
|
<h2>{{ .Site.Title }}</h2>
|
|
</a>
|
|
{{ end }}
|
|
<!-- <nav>
|
|
<a href="{{ "" | relURL }}">Home</a>
|
|
{{ range .Site.Menus.main }}
|
|
<a href="{{ .URL }}">{{ .Name }}</a>
|
|
{{ end }}
|
|
{{ with .Site.GetPage "/blog" }}
|
|
<a href="{{ "blog" | relURL }}">Blog</a>
|
|
{{ end }}
|
|
</nav> -->
|
|
</header>
|
|
<main>
|
|
{{- block "main" . }}{{- end }}
|
|
</main>
|
|
<footer>
|
|
</footer>
|
|
</body>
|
|
</html> |