summaryrefslogtreecommitdiff
path: root/themes/vapor/layouts/_default
diff options
context:
space:
mode:
Diffstat (limited to 'themes/vapor/layouts/_default')
-rw-r--r--themes/vapor/layouts/_default/baseof.html42
-rw-r--r--themes/vapor/layouts/_default/list.html22
-rw-r--r--themes/vapor/layouts/_default/rss.xml26
-rw-r--r--themes/vapor/layouts/_default/single.html5
4 files changed, 95 insertions, 0 deletions
diff --git a/themes/vapor/layouts/_default/baseof.html b/themes/vapor/layouts/_default/baseof.html
new file mode 100644
index 0000000..b6899ba
--- /dev/null
+++ b/themes/vapor/layouts/_default/baseof.html
@@ -0,0 +1,42 @@
+<!DOCTYPE html>
+<html lang="{{ .Site.Language }}">
+<head>
+ <title>{{ if not .IsHome }}{{ .Title | title }} | {{ end }}{{ .Site.Title }}</title>
+ <link rel="canonical" href="{{ .Site.BaseURL }}">
+ <link rel='alternate' type='application/rss+xml' title="{{ .Site.Title }} RSS" href='/index.xml'>
+ <link rel='stylesheet' type='text/css' href='/style.css'>
+ {{ with .Site.Params.favicon }}<link rel="icon" href="{{ . }}">
+ {{ end -}}
+ <meta name="description" content="{{ with .Params.description }}{{ . }}{{ else }}{{ .Summary }}{{ end }}">
+ {{ if isset .Params "tags" }}<meta name="keywords" content="{{ with .Params.tags }}{{ delimit . ", " }}{{ end }}">
+ {{ end -}}
+ <meta name="viewport" content="width=device-width, initial-scale=1">
+ <meta name="robots" content="index, follow">
+ <meta charset="utf-8">
+</head>
+<body>
+{{ if .Site.Menus.main }}{{ partial "nav.html" . }}{{ end -}}
+<main>
+<header><h1 id="tag_{{ .Title }}">{{ block "title" . }}{{ end }}</h1></header>
+<article>
+{{ block "main" . }}
+{{ .Content }}
+{{ end }}
+{{ if .Param "nextprev" }}{{ partial "nextprev.html" . -}}{{ end -}}
+{{ if .Param "taglist" }}{{ partial "taglist.html" . }}{{ end -}}
+</article>
+ <script data-goatcounter="https://schizoid.goatcounter.com/count"
+ async src="//gc.zgo.at/count.js"></script>
+</main>
+{{ block "footer" . }}
+<footer>
+ <a href="{{ .Site.BaseURL }}">{{ .Site.BaseURL }}</a>
+ {{- if .Param "showrss" }}<br><br>
+ <img src="/images/gifs/vim.love.gif"> <a href="https://spyware.neocities.org/articles/discord"><img src="/images/gifs/discord.gif"></a> <img src="/images/gifs/poweredby.gif">
+ <br>
+ <!--<a href="/index.xml"><img src="/rss.svg" style="max-height:1.5em" alt="RSS Feed" title="Subscribe via RSS for updates."><br>-->
+ </a>{{ end }}
+</footer>
+{{ end }}
+</body>
+</html>
diff --git a/themes/vapor/layouts/_default/list.html b/themes/vapor/layouts/_default/list.html
new file mode 100644
index 0000000..c028241
--- /dev/null
+++ b/themes/vapor/layouts/_default/list.html
@@ -0,0 +1,22 @@
+{{ define "title" -}}
+{{ .Title | title }}
+{{- end }}
+{{ define "main" -}}
+{{ .Content }}
+ <script data-goatcounter="https://schizoid.goatcounter.com/count"
+ async src="//gc.zgo.at/count.js"></script>
+<ul>
+{{- range.Pages }}
+<li>
+ {{- if .Param "datesinlist" }}<time datetime="{{ .Date.Format "2006-01-02T15:04:05Z07:00" }}">{{ .Date.Format "2006 Jan 02" }}</time> &ndash; {{ end -}}
+ <a href="{{ .RelPermalink }}">{{ .Title }}</a>
+ {{- if .Param "authorsinlist" }}
+ {{ with .Params.authors }}
+ by
+ {{ delimit . ", " " and " }}
+ {{end}}
+ {{ end -}}
+</li>
+{{- end }}
+</ul>
+{{- end }}
diff --git a/themes/vapor/layouts/_default/rss.xml b/themes/vapor/layouts/_default/rss.xml
new file mode 100644
index 0000000..38dbe3d
--- /dev/null
+++ b/themes/vapor/layouts/_default/rss.xml
@@ -0,0 +1,26 @@
+<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom">
+ <channel>
+ <title>{{ .Site.Title }}</title>
+ <link>{{ .Permalink }}</link>
+ <description>Recent content {{ if ne .Title .Site.Title }}{{ with .Title }}in {{.}} {{ end }}{{ end }}on {{ .Site.Title }}</description>
+ <generator>Hugo -- gohugo.io</generator>{{ with .Site.LanguageCode }}
+ <language>{{.}}</language>{{end}}{{ with .Site.Author.email }}
+ <managingEditor>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</managingEditor>{{end}}{{ with .Site.Author.email }}
+ <webMaster>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</webMaster>{{end}}{{ with .Site.Copyright }}
+ <copyright>{{.}}</copyright>{{end}}{{ if not .Date.IsZero }}
+ <lastBuildDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</lastBuildDate>{{ end }}
+ {{ with .OutputFormats.Get "RSS" }}
+ {{ printf "<atom:link href=%q rel=\"self\" type=%q />" .Permalink .MediaType | safeHTML }}
+ {{ end }}
+ {{ range .Site.RegularPages }}
+ <item>
+ <title>{{ .Title }}</title>
+ <link>{{ .Permalink }}</link>
+ <pubDate>{{ .Date.Format "Mon, 02 Jan 2006 15:04:05 -0700" | safeHTML }}</pubDate>
+ {{ with .Site.Author.email }}<author>{{.}}{{ with $.Site.Author.name }} ({{.}}){{end}}</author>{{end}}
+ <guid>{{ .Permalink }}</guid>
+ <description>{{- .Content | html -}}</description>
+ </item>
+ {{ end }}
+ </channel>
+</rss>
diff --git a/themes/vapor/layouts/_default/single.html b/themes/vapor/layouts/_default/single.html
new file mode 100644
index 0000000..57bdc1b
--- /dev/null
+++ b/themes/vapor/layouts/_default/single.html
@@ -0,0 +1,5 @@
+{{ define "title" -}}
+{{ .Title }}
+ <script data-goatcounter="https://schizoid.goatcounter.com/count"
+ async src="//gc.zgo.at/count.js"></script>
+{{- end }}