summaryrefslogtreecommitdiff
path: root/layouts/taxonomy
diff options
context:
space:
mode:
authorNicholas Johnson <nick@nicholasjohnson.ch>2023-02-25 00:00:00 +0000
committerNicholas Johnson <nick@nicholasjohnson.ch>2023-02-25 00:00:00 +0000
commitb5c3919fe891a965b0051b0ea10f3121d049b34080165f95b92a65e739526c5c (patch)
tree48c4101994628c672988e6d8691c14a4764c925cf8a75b20d414c9115de7c9e7 /layouts/taxonomy
parent8dffa37f8ac556ed834feb78d8d659592808fe342f2078eaeea6c256d2ad0529 (diff)
Organize layouts
Diffstat (limited to 'layouts/taxonomy')
-rw-r--r--layouts/taxonomy/taxonomy.atom.xml22
-rw-r--r--layouts/taxonomy/taxonomy.gemini_atom.xml21
-rw-r--r--layouts/taxonomy/taxonomy.gmi13
-rw-r--r--layouts/taxonomy/taxonomy.html16
4 files changed, 72 insertions, 0 deletions
diff --git a/layouts/taxonomy/taxonomy.atom.xml b/layouts/taxonomy/taxonomy.atom.xml
new file mode 100644
index 0000000..c0c9f6e
--- /dev/null
+++ b/layouts/taxonomy/taxonomy.atom.xml
@@ -0,0 +1,22 @@
+{{ "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" | safeHTML }}
+<feed xmlns="http://www.w3.org/2005/Atom">
+ <id>{{ .Permalink }}</id>
+ <title>{{ .Site.Title }}</title>
+ <updated>{{ .Date.Format "2006-01-02T15:04:05Z" | safeHTML }}</updated>
+ <link href="{{ .Permalink }}atom.xml" rel="self" />
+ <link href="{{ .Permalink }}" rel="alternate" />
+ <author>
+ <name>{{ .Site.Author.name }}</name>
+ <email>{{ .Site.Author.email }}</email>
+ </author>
+ <generator>Hugo -- gohugo.io</generator>
+ <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.Format "2006") }}</rights>
+ <subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Data.Pages }}
+ <entry>
+ <id>{{ .Permalink }}</id>
+ <title type="html">{{ .Title }}</title>
+ <updated>{{ .Date.Format "2006-01-02T15:04:05Z" | safeHTML }}</updated>
+ <link href="{{ .Permalink }}" />
+ <content type="html">{{ .Content | html }}</content>
+ </entry>{{ end }}
+</feed>
diff --git a/layouts/taxonomy/taxonomy.gemini_atom.xml b/layouts/taxonomy/taxonomy.gemini_atom.xml
new file mode 100644
index 0000000..85ff034
--- /dev/null
+++ b/layouts/taxonomy/taxonomy.gemini_atom.xml
@@ -0,0 +1,21 @@
+{{ "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" | safeHTML }}
+<feed xmlns="http://www.w3.org/2005/Atom">
+ <id>{{ replace .Permalink "https://" "gemini://" }}</id>
+ <title>{{ .Site.Title }}</title>
+ <updated>{{ .Date.Format "2006-01-02T15:04:05Z" | safeHTML }}</updated>
+ <link href="{{ replace .Permalink "https://" "gemini://" | safeURL }}atom.xml" rel="self" />
+ <link href="{{ replace .Permalink "https://" "gemini://" | safeURL }}" rel="alternate" />
+ <author>
+ <name>{{ .Site.Author.name }}</name>
+ <email>{{ .Site.Author.email }}</email>
+ </author>
+ <generator>Hugo -- gohugo.io</generator>
+ <rights type="html">{{ replace .Site.Copyright "{currentYear}" (now.Format "2006") }}</rights>
+ <subtitle>{{ .Site.Params.Description }}</subtitle>{{ range first .Site.Config.Services.RSS.Limit .Data.Pages }}
+ <entry>
+ <id>{{ replace .Permalink "https://" "gemini://" | safeURL }}</id>
+ <title>{{ .Title }}</title>
+ <updated>{{ .Date.Format "2006-01-02T15:04:05Z" | safeHTML }}</updated>
+ <link href="{{ replace .Permalink "https://" "gemini://" | safeURL }}" rel="alternate" />
+ </entry>{{ end }}
+</feed>
diff --git a/layouts/taxonomy/taxonomy.gmi b/layouts/taxonomy/taxonomy.gmi
new file mode 100644
index 0000000..56b53a9
--- /dev/null
+++ b/layouts/taxonomy/taxonomy.gmi
@@ -0,0 +1,13 @@
+{{ define "main" -}}
+=> / {{ emojify ":link:" | safeHTML }} Return to homepage
+
+
+# {{ .Type | humanize }}
+## Feeds
+=> {{ .RelPermalink | replaceRE `(?m)index.gmi$` "atom.xml" | safeHTML }} {{ emojify ":link:" | safeHTML }} Atom Feed
+
+## List
+{{- range .Data.Pages }}
+=> {{ .RelPermalink | replaceRE `(?m)index.gmi$` "" }} {{ emojify ":link:" | safeHTML }} {{ .Title | safeHTML }}
+{{- end }}
+{{- end }}
diff --git a/layouts/taxonomy/taxonomy.html b/layouts/taxonomy/taxonomy.html
new file mode 100644
index 0000000..a3a22a7
--- /dev/null
+++ b/layouts/taxonomy/taxonomy.html
@@ -0,0 +1,16 @@
+{{ define "main" -}}
+<nav>
+ <p>{{ emojify ":link:" | safeHTML }}&nbsp;<a class="link" href="/" rel="noreferrer">Return to homepage</a></p>
+</nav>
+<main>
+ <h1>{{ .Type | humanize }}</h1>
+ <h2>Feeds</h2>
+ <p><a class="link" href="{{ print .RelPermalink "atom.xml" }}" rel="noreferrer"> {{ emojify ":link:" | safeHTML }}&nbsp;Atom Feed</a></p>
+ <h2>List</h2>
+ <ul class="list">
+ {{- range .Data.Pages }}
+ <li class="list__item">{{ emojify ":link:" }}&nbsp;<a class="link" href="{{ .RelPermalink }}" rel="noreferrer">{{ .Title }}</a></li>
+ {{- end }}
+ </ul>
+</main>
+{{- end }}