about summary refs log tree commit diff stats
path: root/themes/xmin/layouts/_default/baseof.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/xmin/layouts/_default/baseof.html')
-rw-r--r--themes/xmin/layouts/_default/baseof.html31
1 files changed, 0 insertions, 31 deletions
diff --git a/themes/xmin/layouts/_default/baseof.html b/themes/xmin/layouts/_default/baseof.html deleted file mode 100644 index f934ea8..0000000 --- a/themes/xmin/layouts/_default/baseof.html +++ /dev/null
@@ -1,31 +0,0 @@
1<!DOCTYPE html>
2<html lang="{{ .Site.LanguageCode }}" {{- if .Page.IsNode }} class="h-feed"{{ end }}>
3 <head>
4 <meta charset="utf-8">
5 <meta name="viewport" content="width=device-width, initial-scale=1">
6 <title {{- if .Page.IsNode }} class="p-name"{{ end }}>{{ .Title }} | {{ .Site.Title }}</title>
7 <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" />
8 {{- range .AlternativeOutputFormats }}
9 {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }}
10 {{- end }}
11 </head>
12
13 <body>
14 <nav>
15 <ul>
16 {{- range .Site.Menus.main }}
17 <li><a {{- if eq .URL "/" }} class="author"{{ end }} href="{{ .URL | relURL }}">{{ .Name }}</a></li>
18 {{- end }}
19 </ul>
20 </nav>
21
22 {{ block "main" . }}
23 {{ end }}
24
25 <footer>
26 {{- with .Site.Params.footer }}
27 {{ . | markdownify }}
28 {{- end }}
29 </footer>
30 </body>
31</html>