diff options
Diffstat (limited to 'themes/markskitchen/layouts/partials')
-rw-r--r-- | themes/markskitchen/layouts/partials/footer.html | 3 | ||||
-rw-r--r-- | themes/markskitchen/layouts/partials/head.html | 48 | ||||
-rw-r--r-- | themes/markskitchen/layouts/partials/header.html | 13 |
3 files changed, 64 insertions, 0 deletions
diff --git a/themes/markskitchen/layouts/partials/footer.html b/themes/markskitchen/layouts/partials/footer.html new file mode 100644 index 0000000..19c1837 --- /dev/null +++ b/themes/markskitchen/layouts/partials/footer.html @@ -0,0 +1,3 @@ +<footer> + <div>Mark Powers <<span class="email">mark</span>> © 2022 </div> +</footer> diff --git a/themes/markskitchen/layouts/partials/head.html b/themes/markskitchen/layouts/partials/head.html new file mode 100644 index 0000000..3bd261e --- /dev/null +++ b/themes/markskitchen/layouts/partials/head.html @@ -0,0 +1,48 @@ +<head> + <meta charset="UTF-8"> + <meta name="viewport" content="width=device-width, initial-scale=1.0"> + + <!-- author --> + <meta name="author" content="{{ .Site.Author.name }}"> + + <!-- description --> + {{ if .Description }} + <meta name="description" content="{{ .Description }}"> + {{ else if and .IsPage .Summary }} + <meta name="description" content="{{ .Summary }}"> + {{ else }} + <meta name="description" content="{{ .Site.Params.description }}"> + {{ end }} + + <!-- favicon --> + <link rel="icon" href="{{ .Site.Params.favicon | absURL }}"> + + <!-- keywords --> + {{ if .Keywords }} + <meta name="keywords" content="{{ range $key, $value := .Keywords }} {{ $value }} {{ end }}"> + {{ end }} + + <!-- permalink --> + <link rel="canonical" href="{{ .Permalink }}"> + + <!-- rss --> + {{ range .AlternativeOutputFormats -}} + {{ printf ` + <link rel="%s" type="%s" href="%s" title="%s" />` .Rel .MediaType.Type .Permalink $.Site.Title | safeHTML }} + {{ end -}} + + <!-- schema --> + {{ template "_internal/schema.html" . }} + + <!-- style --> + <link media="screen" rel="stylesheet" href='{{ "css/common.css" | absURL }}'> + + <!-- title --> + {{ if .IsHome }} + <title>{{ .Site.Title }}</title> + {{ else }} + <title>{{ .Title }} - {{ .Site.Title }}</title> + {{ end }} + + {{ block "head" . }}{{ end }} +</head> diff --git a/themes/markskitchen/layouts/partials/header.html b/themes/markskitchen/layouts/partials/header.html new file mode 100644 index 0000000..97fec62 --- /dev/null +++ b/themes/markskitchen/layouts/partials/header.html @@ -0,0 +1,13 @@ +<header id="header"> + <h1> + <a href="{{ .Site.BaseURL }}">{{ .Site.Title }}</a> + </h1> + + <nav> + {{ range .Site.Menus.main }} + <span class="nav-bar-item"> + <a class="link" href="{{ .URL | safeURL }}">{{ .Name }}</a> + </span> + {{ end }} + </nav> +</header> |