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.html21
-rw-r--r--themes/hugo-classic/layouts/_default/single.html30
-rw-r--r--themes/hugo-classic/layouts/_default/terms.html13
-rw-r--r--themes/hugo-classic/layouts/partials/foot_custom.html0
-rw-r--r--themes/hugo-classic/layouts/partials/footer.html35
-rw-r--r--themes/hugo-classic/layouts/partials/head_custom.html0
-rw-r--r--themes/hugo-classic/layouts/partials/header.html48
-rw-r--r--themes/hugo-classic/layouts/robots.txt4
9 files changed, 156 insertions, 0 deletions
diff --git a/themes/hugo-classic/layouts/404.html b/themes/hugo-classic/layouts/404.html
new file mode 100644
index 0000000..bd93017
--- /dev/null
+++ b/themes/hugo-classic/layouts/404.html
@@ -0,0 +1,5 @@
+{{ partial "header.html" . }}
+
+404 - You once were found. But now you're lost.
+
+{{ partial "footer.html" . }}
diff --git a/themes/hugo-classic/layouts/_default/list.html b/themes/hugo-classic/layouts/_default/list.html
new file mode 100644
index 0000000..0ee6442
--- /dev/null
+++ b/themes/hugo-classic/layouts/_default/list.html
@@ -0,0 +1,21 @@
+{{ partial "header.html" . }}
+
+<div class="content-wrapper">
+{{if not .IsHome }}
+ <h1>{{ .Title | markdownify }}</h1>
+ {{ end }}
+
+ {{ .Content }}
+
+ <ul>
+ {{ $pages := .Pages }}
+ {{ if .IsHome }}{{ $pages = .Site.RegularPages }}{{ end }}
+ {{ range (where $pages "Section" "!=" "") }}
+ <li>
+ <span class="date">{{ .Date.Format "2006/01/02" }}</span>
+ <a href="{{ .RelPermalink }}">{{ .Title | markdownify }}</a>
+ </li>
+ {{ end }}
+ </ul>
+</div>
+{{ partial "footer.html" . }}
diff --git a/themes/hugo-classic/layouts/_default/single.html b/themes/hugo-classic/layouts/_default/single.html
new file mode 100644
index 0000000..04688e0
--- /dev/null
+++ b/themes/hugo-classic/layouts/_default/single.html
@@ -0,0 +1,30 @@
+{{ partial "header.html" . }}
+<div class="article-meta">
+<h1><span class="title">{{ .Title | markdownify }}</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 }}
+ {{ with .TableOfContents }}
+ <div id="table-of-contents">
+ <h2>Table of Contents</h2>
+ {{ . | safeHTML }}
+ </div>
+ {{ end }}
+{{ end }}
+
+<div class="content-wrapper">
+ <main>
+ {{ .Content }}
+ <a href="/"> >> Home</a>
+ </main>
+</div>
+{{ partial "footer.html" . }}
diff --git a/themes/hugo-classic/layouts/_default/terms.html b/themes/hugo-classic/layouts/_default/terms.html
new file mode 100644
index 0000000..1b515a5
--- /dev/null
+++ b/themes/hugo-classic/layouts/_default/terms.html
@@ -0,0 +1,13 @@
+{{ partial "header.html" . }}
+
+<h1>{{ .Title }}</h1>
+
+<ul class="terms">
+ {{ range .Data.Terms }}
+ <li>
+ <a href="{{ .Page.Permalink }}">{{ .Page.Title }}</a> ({{ .Count }})
+ </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
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/themes/hugo-classic/layouts/partials/foot_custom.html
diff --git a/themes/hugo-classic/layouts/partials/footer.html b/themes/hugo-classic/layouts/partials/footer.html
new file mode 100644
index 0000000..494ce73
--- /dev/null
+++ b/themes/hugo-classic/layouts/partials/footer.html
@@ -0,0 +1,35 @@
+ <footer>
+ {{ partial "foot_custom.html" . }}
+ <!-- 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>
+
+ {{ with .Site.Params.footer }}
+ <hr/>
+ {{ . | markdownify }}
+ {{ end }}
+ </footer>
+ </body>
+</html>
diff --git a/themes/hugo-classic/layouts/partials/head_custom.html b/themes/hugo-classic/layouts/partials/head_custom.html
new file mode 100644
index 0000000..e69de29
--- /dev/null
+++ b/themes/hugo-classic/layouts/partials/head_custom.html
diff --git a/themes/hugo-classic/layouts/partials/header.html b/themes/hugo-classic/layouts/partials/header.html
new file mode 100644
index 0000000..855f593
--- /dev/null
+++ b/themes/hugo-classic/layouts/partials/header.html
@@ -0,0 +1,48 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.LanguageCode }}">
+ <head>
+
+ <link rel="apple-touch-icon" sizes="180x180" href="/images/apple-touch-icon.png">
+ <link rel="icon" type="image/png" sizes="32x32" href="/images/favicon-32x32.png">
+ <link rel="icon" type="image/png" sizes="16x16" href="/images/favicon-16x16.png">
+ <link rel="manifest" href="/images/site.webmanifest">
+
+ <meta charset="utf-8">
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="description" content="{{ if .Description }}{{ .Description }}{{ else }}{{ .Site.Params.Description }}{{ end }}">
+ <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>
+ <header>
+ <nav>
+ <ul>
+ {{ $title := lower .Title }}
+ {{ $section := lower .Section }}
+ <li class="pull-left {{ if .IsHome }}current{{ end }}">
+ <a href="{{ .Site.BaseURL }}">~/{{ 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/robots.txt b/themes/hugo-classic/layouts/robots.txt
new file mode 100644
index 0000000..2a87967
--- /dev/null
+++ b/themes/hugo-classic/layouts/robots.txt
@@ -0,0 +1,4 @@
+# robots.txt
+User-agent: *
+Disallow:
+Disallow: /cgi-bin/ \ No newline at end of file