use smaller baseof

This commit is contained in:
Oliver Atkinson 2024-04-01 08:46:28 -06:00
parent 53562106b2
commit a0e296861c

View File

@ -1,48 +1,26 @@
<!DOCTYPE html> <!DOCTYPE html>
<html lang="{{ .Site.Language }}"> <html lang="{{ .Site.Language }}">
<head> {{ partial "head.html" . }}
<title>{{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}</title>
<link rel="canonical" href="{{ .Site.BaseURL }}">
<link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='/index.xml'>
<link rel='stylesheet' type='text/css' href='/style.css'>
<link rel='stylesheet' type='text/css' href='/hugo.css'>
<link rel='stylesheet' type='text/css' href='/content.css'>
{{ with .Site.Params.favicon }}<link rel="icon" href="{{ . }}">
{{ end -}}
<meta name="description" content="{{ with .Params.description }}{{ . }}{{ else }}{{ .Summary }}{{ end }}">
{{ if isset .Params "tags" }}<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}">
{{ end -}}
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="robots" content="index, follow">
<meta charset="utf-8">
</head>
<body> <body>
{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
<main> <main>
<header> <body>
<h1 id="tag_{{ .Title }}"> {{ block "header" . }}
{{ if .IsHome }} {{ .Site.Title }} {{ end }} {{ partial "header.html" . }}
{{ block "title" . }} {{ end }}
{{ end }}</h1> <main>
<h4 id="tag_{{ .Title }}"> <div class="article-header">
{{ if not .IsHome }} {{ .Params.description }} {{ end }} <h3 class="spaced">
</h4> {{ .Page.Title }}
</header> </h3>
<article> </div>
{{ block "main" . }} <article>
{{ .Content }} {{ block "main" . }}
{{ end }} {{ .Content }}
{{ if not .IsHome }} <br><hr><br> {{end -}} {{ end }}
{{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}} </article>
{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}} {{ block "footer" . }}
</article> {{ partial "footer.html" . }}
</main> {{ end }}
{{ block "footer" . }} </main>
<footer>
<a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a>
{{- if .Param "showrss" }}<br><br><a href="/index.xml"><img src="/rss.svg" style="max-height:1.5em" alt="RSS Feed" title="Subscribe via RSS for updates."></a>{{ end }}
</footer>
{{ end }}
</body> </body>
</html> </html>