diff options
Diffstat (limited to 'themes/xmin/layouts/_default/baseof.html')
-rw-r--r-- | themes/xmin/layouts/_default/baseof.html | 31 |
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 @@ -<!DOCTYPE html> -<html lang="{{ .Site.LanguageCode }}" {{- if .Page.IsNode }} class="h-feed"{{ end }}> - <head> - <meta charset="utf-8"> - <meta name="viewport" content="width=device-width, initial-scale=1"> - <title {{- if .Page.IsNode }} class="p-name"{{ end }}>{{ .Title }} | {{ .Site.Title }}</title> - <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" /> - {{- range .AlternativeOutputFormats }} - {{ printf `<link href="%s" rel="%s" type="%s" title="%s" />` .Permalink .Rel .MediaType.Type $.Site.Title | safeHTML }} - {{- end }} - </head> - - <body> - <nav> - <ul> - {{- range .Site.Menus.main }} - <li><a {{- if eq .URL "/" }} class="author"{{ end }} href="{{ .URL | relURL }}">{{ .Name }}</a></li> - {{- end }} - </ul> - </nav> - - {{ block "main" . }} - {{ end }} - - <footer> - {{- with .Site.Params.footer }} - {{ . | markdownify }} - {{- end }} - </footer> - </body> -</html> |