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