summaryrefslogtreecommitdiff
path: root/themes/hugo-classic/layouts
diff options
context:
space:
mode:
Diffstat (limited to 'themes/hugo-classic/layouts')
-rw-r--r--themes/hugo-classic/layouts/404.html5
-rw-r--r--themes/hugo-classic/layouts/_default/list.html18
-rw-r--r--themes/hugo-classic/layouts/_default/single.html23
-rw-r--r--themes/hugo-classic/layouts/_default/terms.html16
-rw-r--r--themes/hugo-classic/layouts/partials/foot_custom.html25
-rw-r--r--themes/hugo-classic/layouts/partials/footer.html16
-rw-r--r--themes/hugo-classic/layouts/partials/head_custom.html33
-rw-r--r--themes/hugo-classic/layouts/partials/header.html16
8 files changed, 0 insertions, 152 deletions
diff --git a/themes/hugo-classic/layouts/404.html b/themes/hugo-classic/layouts/404.html
deleted file mode 100644
index c2e4e40..0000000
--- a/themes/hugo-classic/layouts/404.html
+++ /dev/null
@@ -1,5 +0,0 @@
-{{ partial "header.html" . }}
-
-404 NOT FOUND
-
-{{ partial "footer.html" . }}
diff --git a/themes/hugo-classic/layouts/_default/list.html b/themes/hugo-classic/layouts/_default/list.html
deleted file mode 100644
index 41d9d89..0000000
--- a/themes/hugo-classic/layouts/_default/list.html
+++ /dev/null
@@ -1,18 +0,0 @@
-{{ partial "header.html" . }}
-
-{{if not .IsHome }}
-<h1>{{ .Title }}</h1>
-{{ end }}
-
-{{ .Content }}
-
-<ul>
- {{ range (where .Data.Pages "Section" "!=" "") }}
- <li>
- <span class="date">{{ .Date.Format "2006/01/02" }}</span>
- <a href="{{ .URL }}">{{ .Title }}</a>
- </li>
- {{ end }}
-</ul>
-
-{{ partial "footer.html" . }}
diff --git a/themes/hugo-classic/layouts/_default/single.html b/themes/hugo-classic/layouts/_default/single.html
deleted file mode 100644
index b3b5570..0000000
--- a/themes/hugo-classic/layouts/_default/single.html
+++ /dev/null
@@ -1,23 +0,0 @@
-{{ partial "header.html" . }}
-<div class="article-meta">
-<h1><span class="title">{{ .Title }}</span></h1>
-{{ with .Params.author }}<h2 class="author">{{ . }}</h2>{{ end }}
-{{ if .Params.date }}<h2 class="date">{{ .Date.Format "2006/01/02" }}</h2>{{ end }}
-<p class="terms">
- {{ range $i := (slice "categories" "tags") }}
- {{ with ($.Param $i) }}
- {{ $i | title }}: {{ range $k := . }}<a href="{{ relURL (print "/" $i "/" $k | urlize) }}">{{$k}}</a> {{ end }}
- {{ end }}
- {{ end }}
-</p>
-</div>
-
-{{ if .Params.toc }}
-{{ .TableOfContents }}
-{{ end }}
-
-<main>
-{{ .Content }}
-</main>
-
-{{ partial "footer.html" . }}
diff --git a/themes/hugo-classic/layouts/_default/terms.html b/themes/hugo-classic/layouts/_default/terms.html
deleted file mode 100644
index 4f6f544..0000000
--- a/themes/hugo-classic/layouts/_default/terms.html
+++ /dev/null
@@ -1,16 +0,0 @@
-{{ partial "header.html" . }}
-
-<h1>{{ .Title }}</h1>
-
-<ul class="terms">
- {{ range $key, $value := .Data.Terms }}
- <li>
- <a href="{{ (print "/" $.Data.Plural "/" (lower $key)) | relURL }}">
- {{ $key }}
- </a>
- ({{ len $value }})
- </li>
- {{ end }}
-</ul>
-
-{{ partial "footer.html" . }}
diff --git a/themes/hugo-classic/layouts/partials/foot_custom.html b/themes/hugo-classic/layouts/partials/foot_custom.html
deleted file mode 100644
index 3d9fb1d..0000000
--- a/themes/hugo-classic/layouts/partials/foot_custom.html
+++ /dev/null
@@ -1,25 +0,0 @@
-<!-- Automagically centers images. Original Author Yihui Xie: https://yihui.name -->
-<script>
-(function() {
- function center_el(tagName) {
- var tags = document.getElementsByTagName(tagName), i, tag;
- for (i = 0; i < tags.length; i++) {
- tag = tags[i];
- var parent = tag.parentElement;
- // center an image if it is the only element of its parent
- if (parent.childNodes.length === 1) {
- // if there is a link on image, check grandparent
- if (parent.nodeName === 'A') {
- parent = parent.parentElement;
- if (parent.childNodes.length != 1) continue;
- }
- if (parent.nodeName === 'P') parent.style.textAlign = 'center';
- }
- }
- }
- var tagNames = ['img', 'embed', 'object'];
- for (var i = 0; i < tagNames.length; i++) {
- center_el(tagNames[i]);
- }
-})();
-</script>
diff --git a/themes/hugo-classic/layouts/partials/footer.html b/themes/hugo-classic/layouts/partials/footer.html
deleted file mode 100644
index 8b721a8..0000000
--- a/themes/hugo-classic/layouts/partials/footer.html
+++ /dev/null
@@ -1,16 +0,0 @@
- <footer>
- {{ partial "foot_custom.html" . }}
- {{ with .Site.Params.footer }}
- <hr/>
- {{ . | markdownify }}
- {{ end }}
- <div id="license-info">
- &#169;2020 by Jan Götte. This work is licensed under
- <a href="https://creativecommons.org/licenses/by-nc-sa/4.0/">CC-BY-NC-SA 4.0</a>.
- </div>
- <div id="imprint-info">
- <a href="/imprint">Impressum und Haftungsausschluss und Datenschutzerklärung</a>.
- </div>
- </footer>
- </body>
-</html>
diff --git a/themes/hugo-classic/layouts/partials/head_custom.html b/themes/hugo-classic/layouts/partials/head_custom.html
deleted file mode 100644
index 6520ca0..0000000
--- a/themes/hugo-classic/layouts/partials/head_custom.html
+++ /dev/null
@@ -1,33 +0,0 @@
-<header>
-
- <!--
- Syntax highlighting - defaults to atom light theme.
- List here: https://github.com/isagalaev/highlight.js/tree/master/src/styles
- -->
- <link rel="stylesheet" href="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/styles/atom-one-light.min.css">
- <script src="//cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0/highlight.min.js"></script>
- <script>hljs.initHighlightingOnLoad();</script>
- <nav>
- <ul>
- {{ $title := lower .Title }}
- {{ $section := lower .Section }}
- <li class="pull-left {{ if .IsHome }}current{{ end }}">
- <a href="{{ .Site.BaseURL }}">/home/{{ lower .Site.Title}}</a>
- </li>
- {{ range .Site.Menus.main }}
- {{ $name := lower .Name }}
- <li class="pull-left {{ if eq $name $title }}current{{ else if eq $section $name }}current{{ else if eq $title (pluralize $name) }}current{{ end }}">
- <a href="{{ .URL }}">~/{{ lower .Name }}</a>
- </li>
- {{end}}
-
- {{ range .Site.Menus.feed }}
- {{ $name := lower .Name}}
- <li class="pull-right">
- <a href="{{ .URL }}">~/{{ lower .Name}}</a>
- </li>
- {{end}}
-
- </ul>
- </nav>
-</header>
diff --git a/themes/hugo-classic/layouts/partials/header.html b/themes/hugo-classic/layouts/partials/header.html
deleted file mode 100644
index 6ef9a69..0000000
--- a/themes/hugo-classic/layouts/partials/header.html
+++ /dev/null
@@ -1,16 +0,0 @@
-<!DOCTYPE html>
-<html lang="{{ .Site.LanguageCode }}">
- <head>
- <meta charset="utf-8">
- <meta name="viewport" content="width=device-width, initial-scale=1">
- <title>{{ .Title }} | {{ .Site.Title }}</title>
- <link rel="stylesheet" href="{{ "/css/style.css" | relURL }}" />
- <link rel="stylesheet" href="{{ "/css/fonts.css" | relURL }}" />
- {{ range .Site.Params.custom_css -}}
- <link rel="stylesheet" href="{{ . | absURL }}">
- {{- end }}
- {{ partial "head_custom.html" . }}
- </head>
-
- <body>
- <br/>