parent
f2f095707a
commit
6d1de9d325
2 changed files with 23 additions and 24 deletions
|
@ -1,28 +1,26 @@
|
||||||
<!DOCTYPE html>
|
<!DOCTYPE html>
|
||||||
<html lang="{{ $.Site.Language }}">
|
<html lang="{{ $.Site.Language }}">
|
||||||
<head>
|
<head>
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
{{ partial "head.html" . }}
|
||||||
{{ block "title" . }}
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||||
<title>{{ if .IsHome }}{{ $.Site.Title }}{{ else }}{{ .Title }} :: {{ $.Site.Title }}{{ end }}</title>
|
{{ block "title" . }}
|
||||||
{{ end }}
|
<title>
|
||||||
{{ partial "head.html" . }}
|
{{ if .IsHome }}{{ $.Site.Title }}{{ else }}{{ .Title }} :: {{
|
||||||
</head>
|
$.Site.Title }}{{ end }}
|
||||||
<body class="{{- ( or .Params.color $.Site.Params.ThemeColor ) -}}">
|
</title>
|
||||||
{{ $container := cond ($.Site.Params.FullWidthTheme | default false) "container full" (cond ($.Site.Params.CenterTheme | default false) "container center" "container") }}
|
|
||||||
|
|
||||||
<div class="{{- $container -}}{{- cond ($.Site.Params.oneHeadingSize | default true) " headings--one-size" "" }}">
|
|
||||||
|
|
||||||
{{ partial "header.html" . }}
|
|
||||||
|
|
||||||
<div class="content">
|
|
||||||
{{ block "main" . }}
|
|
||||||
{{ end }}
|
{{ end }}
|
||||||
</div>
|
</head>
|
||||||
|
<body class="pink">
|
||||||
|
{{ $container := cond ($.Site.Params.FullWidthTheme | default false)
|
||||||
|
"container full" (cond ($.Site.Params.CenterTheme | default false)
|
||||||
|
"container center" "container") }}
|
||||||
|
|
||||||
{{ block "footer" . }}
|
<div class="container center headings--one-size">
|
||||||
{{ partial "footer.html" . }}
|
{{ partial "header.html" . }}
|
||||||
{{ end }}
|
|
||||||
</div>
|
|
||||||
|
|
||||||
</body>
|
<div class="content">{{ block "main" . }} {{ end }}</div>
|
||||||
|
|
||||||
|
{{ block "footer" . }} {{ partial "footer.html" . }} {{ end }}
|
||||||
|
</div>
|
||||||
|
</body>
|
||||||
</html>
|
</html>
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
<a rel="me" href="https://kolektiva.social/@eyess"></a>
|
<a rel="me" href="https://kolektiva.social/@eyess"></a>
|
||||||
<a rel="me" href="https://mastodon.social/@brookeee"></a>
|
<a rel="me" href="https://kolektiva.social/@brooke"></a>
|
||||||
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
|
|
||||||
|
<meta charset="UTF-8" />
|
||||||
<meta
|
<meta
|
||||||
name="description"
|
name="description"
|
||||||
content="{{ if .IsHome }}{{ $.Site.Params.Subtitle }}{{ else if .Description}}{{ .Description | plainify }}{{ else }}{{ .Summary | plainify }}{{ end }}"
|
content="{{ if .IsHome }}{{ $.Site.Params.Subtitle }}{{ else if .Description}}{{ .Description | plainify }}{{ else }}{{ .Summary | plainify }}{{ end }}"
|
||||||
|
|
Loading…
Add table
Reference in a new issue