wires

summary refs log tree commit diff
path: root/layouts/partials
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/partials')
-rw-r--r--layouts/partials/footer.html10
-rw-r--r--layouts/partials/head.html21
-rw-r--r--layouts/partials/header.html10
-rw-r--r--layouts/partials/tags.html6
4 files changed, 0 insertions, 47 deletions
diff --git a/layouts/partials/footer.html b/layouts/partials/footer.html
deleted file mode 100644
index 52c7a99..0000000
--- a/layouts/partials/footer.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<footer>
-  Made with <a href="https://gohugo.io">Hugo</a>. All content is licensed under
-  <a
-    href="http://creativecommons.org/licenses/by-sa/4.0/"
-    target="_blank"
-    rel="license noopener noreferrer"
-  >
-    CC BY-SA 4.0
-  </a>
-</footer>
diff --git a/layouts/partials/head.html b/layouts/partials/head.html
deleted file mode 100644
index 2fe366d..0000000
--- a/layouts/partials/head.html
+++ /dev/null
@@ -1,21 +0,0 @@
-<meta charset="utf-8"/>
-<meta name="viewport" content="width=device-width, initial-scale=1.0">
-{{ with (or .Description .Site.Params.description) }}
-<meta name="description" content="{{ . }}"/>
-{{ end }}
-{{ with .Keywords }}<meta name="keywords" content="{{ delimit . ", " }}"/>{{ end }}
-<link rel="license" href="https://creativecommons.org/licenses/by-sa/4.0/"/>
-<link rel="canonical" href="{{ .Permalink }}"/>
-{{ range slice "style.css" "syntax.css"}}
-{{- with resources.Get . }}
-  {{- if eq hugo.Environment "development" }}
-    <link rel="stylesheet" href="{{ .RelPermalink }}">
-  {{- else }}
-    {{- with . | minify | fingerprint }}
-      <link rel="stylesheet" href="{{ .RelPermalink }}" integrity="{{ .Data.Integrity }}" crossorigin="anonymous">
-    {{- end }}
-  {{- end }}
-{{- end }}
-{{ end }}
-<title>{{ printf "%s | %s" .Title site.Title }}</title>
-
diff --git a/layouts/partials/header.html b/layouts/partials/header.html
deleted file mode 100644
index bf7f2f2..0000000
--- a/layouts/partials/header.html
+++ /dev/null
@@ -1,10 +0,0 @@
-<header>
-  <p id="site-title">{{.Title}}</p>
-  <nav id="main-nav">
-    <ul>
-      {{ with .Menus.main }}{{ range . }}
-      <li><a href="{{ .URL }}">{{ .Name }}</a></li>
-      {{ end }}{{ end }}
-    </ul>
-  </nav>
-</header>
diff --git a/layouts/partials/tags.html b/layouts/partials/tags.html
deleted file mode 100644
index b464c47..0000000
--- a/layouts/partials/tags.html
+++ /dev/null
@@ -1,6 +0,0 @@
-{{ with .GetTerms "tags" }}
-<p>
-  Tags:{{ range $i, $e := . }}{{- if $i -}},{{ end -}}{{ with $e }}
-  <a class="tag" href="{{.Permalink}}">{{lower .Title}}</a>{{end}}{{ end }}
-</p>
-{{ end }}