aboutsummaryrefslogtreecommitdiffstats
path: root/layouts/_default/#baseof.html#
diff options
context:
space:
mode:
authorverdant <im@verdant.ee>2026-05-31 16:36:13 +0800
committerverdant <im@verdant.ee>2026-05-31 16:36:13 +0800
commitd91f48c4945acd1b9f76a79d7804580b70b0c2df (patch)
tree6844217a5b61d31d6d2a837fb708db411825bc5c /layouts/_default/#baseof.html#
parent7876c3763897092266e535cd464d45637862d73b (diff)
downloadblog-d91f48c4945acd1b9f76a79d7804580b70b0c2df.tar.gz
blog-d91f48c4945acd1b9f76a79d7804580b70b0c2df.zip
Refactor: remove bloated CSS style and nested HTML layouts
Diffstat (limited to 'layouts/_default/#baseof.html#')
-rw-r--r--layouts/_default/#baseof.html#29
1 files changed, 0 insertions, 29 deletions
diff --git a/layouts/_default/#baseof.html# b/layouts/_default/#baseof.html#
deleted file mode 100644
index a6224e8..0000000
--- a/layouts/_default/#baseof.html#
+++ /dev/null
@@ -1,29 +0,0 @@
-<!doctype html>
-<html lang="{{ with .Site.LanguageCode }}{{ . }}{{ else }}en-US{{ end }}">
- <head>
- <!-- <link rel="stylesheet" href="/css/style.css" /> -->
- <link rel="stylesheet" href="/css/style.css" />
- <meta http-equiv="X-Clacks-Overhead" content="GNU Terry Pratchett" />
- <meta charset="utf-8" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- {{- partial "favicon.html" . -}}
- <title>{{ .Title }}</title>
-
- {{- partial "seo_tags.html" . -}}
- <meta name="referrer" content="no-referrer-when-downgrade" />
- <link rel="alternate" type="application/rss+xml" href="/atom.xml" title="{{ .Site.Title }}">
-
- {{ with .OutputFormats.Get "rss" -}} {{ printf `
- <link rel="%s" type="%s" href="%s" title="%s" />
- ` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} {{ end -}}
-
- {{- partial "custom_head.html" . -}}
- </head>
-
- <body>
- <main>{{- block "main" . }}{{- end }}</main>
- <footer>{{- partial "footer.html" . -}}</footer>
-
- {{- partial "custom_body.html" . -}}
- </body>
-</html>