summaryrefslogtreecommitdiff
path: root/layouts/_default/term.html
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/_default/term.html
parent8dffa37f8ac556ed834feb78d8d659592808fe342f2078eaeea6c256d2ad0529 (diff)
Organize layouts
Diffstat (limited to 'layouts/_default/term.html')
-rw-r--r--layouts/_default/term.html14
1 files changed, 0 insertions, 14 deletions
diff --git a/layouts/_default/term.html b/layouts/_default/term.html
deleted file mode 100644
index 4b69ebe..0000000
--- a/layouts/_default/term.html
+++ /dev/null
@@ -1,14 +0,0 @@
-{{ define "main" -}}
-<nav>
- <p>{{ emojify ":link:" | safeHTML }}&nbsp;<a class="link" href="/" rel="noreferrer">Return to homepage</a></p>
-</nav>
-<main>
- <h1>{{ .Type | singularize | humanize }} "{{ .Title }}"</h1>
- <h2>Feeds</h2>
- <p><a class="link" href="{{ print .RelPermalink "atom.xml" }}" rel="noreferrer"> {{ emojify ":link:" | safeHTML }}&nbsp;Atom Feed</a></p>
- <h2>Journal Entries</h2>
- {{- range .Data.Pages.ByPublishDate.Reverse }}
- {{ partial "metadata.html" . -}}
- {{- end -}}
-</main>
-{{- end }}