diff options
Diffstat (limited to 'themes/polaris/layouts/_default/baseof.html')
-rw-r--r-- | themes/polaris/layouts/_default/baseof.html | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/themes/polaris/layouts/_default/baseof.html b/themes/polaris/layouts/_default/baseof.html new file mode 100644 index 0000000..b6ccdac --- /dev/null +++ b/themes/polaris/layouts/_default/baseof.html @@ -0,0 +1,23 @@ +<!DOCTYPE html> +<html> + <head> + <meta charset="utf-8"> + <title>{{ .Site.Title }}</title> + <meta name="viewport" content="width=device-width, initial-scale=1"> + {{ $style := resources.Get "css/style.css" | minify | fingerprint }} + <link rel="stylesheet" href="{{ $style.Permalink }}"> + </head> + <body> + <nav> + {{ partial "nav.html" . }} + </nav> + <main> + {{ block "main" . }} + {{ .Content }} + {{ end }} + </main> + <footer> + {{ partial "footer.html" . }} + </footer> + </body> +</html> |