diff options
Diffstat (limited to 'themes/polaris/layouts/_default/baseof.html')
-rw-r--r-- | themes/polaris/layouts/_default/baseof.html | 19 |
1 files changed, 5 insertions, 14 deletions
diff --git a/themes/polaris/layouts/_default/baseof.html b/themes/polaris/layouts/_default/baseof.html index 37a6059..3c052ea 100644 --- a/themes/polaris/layouts/_default/baseof.html +++ b/themes/polaris/layouts/_default/baseof.html @@ -11,30 +11,21 @@ <meta charset="utf-8"> <title>{{ $pageTitle }}</title> <meta name="viewport" content="width=device-width, initial-scale=1"> - <link rel="icon" href="{{ .Site.Params.iconURL }}"> - {{ with resources.Get "css/noto-serif.css" | minify | fingerprint }} - <link rel="stylesheet" href="{{ .Permalink }}"> - {{ end }} {{ with resources.Get "css/style.css" | minify | fingerprint }} - <link rel="stylesheet" href="{{ .Permalink }}"> + <link rel="stylesheet" href="{{ .Permalink }}"> {{ end }} <meta property="og:title" content="{{ $pageTitle }}"> <meta property="og:url" content="{{ .Page.RelPermalink }}"> - <meta property="og:image" content="{{ .Site.Params.iconURL }}"> <meta property="og:site_name" content="{{ .Site.Title }}"> <meta property="og:description" content="{{ .Site.Params.subtext }}"> </head> <body> - <nav> - {{ partial "nav.html" . }} - </nav> - <main> + {{ partial "header.html" . }} + <div class="content"> {{ block "main" . }} - {{ .Content }} + {{ . }} {{ end }} - </main> - <footer> {{ partial "footer.html" . }} - </footer> + </div> </body> </html> |