diff options
author | frosty <passedgoandgot200@disroot.org> | 2025-06-17 04:38:15 -0400 |
---|---|---|
committer | frosty <passedgoandgot200@disroot.org> | 2025-06-17 04:38:15 -0400 |
commit | 61fbce70abd2cafaef960f5e787a97a3a828d74e (patch) | |
tree | 5d49885a2f1f0254075d3dae96faf00b50ccfd5e /themes/polaris/layouts/_default/baseof.html | |
parent | 91408bd3d594ca341f8c27b6b4d7403b564f4d38 (diff) |
remove static fonts, update posts, clean up layout
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> |