summaryrefslogtreecommitdiff
path: root/layouts/_default/single.html
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2020-02-17 19:46:17 +0000
committerDavid T. Sadler <davidtsadler@googlemail.com>2020-02-17 19:46:17 +0000
commit12b052b1f480c5a95acd1477e28ce76f84ff7932 (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /layouts/_default/single.html
parent0b68a4fd6af7383ddd5c41d591361f1d3a5d9050 (diff)
Remove everything
Diffstat (limited to 'layouts/_default/single.html')
-rw-r--r--layouts/_default/single.html21
1 files changed, 0 insertions, 21 deletions
diff --git a/layouts/_default/single.html b/layouts/_default/single.html
deleted file mode 100644
index 4fc7064..0000000
--- a/layouts/_default/single.html
+++ /dev/null
@@ -1,21 +0,0 @@
-{{ define "main" }}
- <article>
- <h1>{{ .Title }}</h1>
- {{ .Content }}
- </article>
- {{ if or .NextInSection .PrevInSection }}
- <nav class="pagination">
- <hr/>
- <p>More Episodes</p>
- <ul>
- {{ if .PrevInSection }}
- <li class="prev"><a href="{{ .PrevInSection.Permalink }}">« {{ .PrevInSection.Title }}</a></li>
- {{ end }}
- {{ if .NextInSection }}
- <li class="next"><a href="{{ .NextInSection.Permalink }}">{{ .NextInSection.Title }} »</a></li>
- {{ end }}
- </ul>
- <hr/>
- </nav>
- {{ end }}
-{{ end }}