summaryrefslogtreecommitdiff
path: root/themes/markskitchen/layouts/partials/head.html
diff options
context:
space:
mode:
Diffstat (limited to 'themes/markskitchen/layouts/partials/head.html')
-rw-r--r--themes/markskitchen/layouts/partials/head.html45
1 files changed, 0 insertions, 45 deletions
diff --git a/themes/markskitchen/layouts/partials/head.html b/themes/markskitchen/layouts/partials/head.html
deleted file mode 100644
index 29e9f49..0000000
--- a/themes/markskitchen/layouts/partials/head.html
+++ /dev/null
@@ -1,45 +0,0 @@
-<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 -->
- <meta name="description" content="{{ .Site.Params.Description }}">
-
- <!-- 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 -}}
-
- <!-- custom feeds -->
- <link rel="alternative" type="application/rss+xml" href="https://huginn.marks.kitchen/users/1/web_requests/23/reblogs.xml" title="Mark's Reblogs" />
-
- <!-- 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>