aboutsummaryrefslogtreecommitdiff
path: root/generators/hugo/themes/tdro/layouts/_default/taxonomy.html
diff options
context:
space:
mode:
authorThedro Neely <thedroneely@gmail.com>2019-05-17 22:56:00 -0400
committerThedro Neely <thedroneely@gmail.com>2019-05-17 22:56:00 -0400
commit51c0cc199f30e195eafbf04e6be09dd8b2561574 (patch)
treeeac3c7950a8855b3f38c1bb9d7744f5a60e2a4f8 /generators/hugo/themes/tdro/layouts/_default/taxonomy.html
parent48e0d578c7f65e6a0ab8d293217983ba8bb21c00 (diff)
downloadthedroneely.com-51c0cc199f30e195eafbf04e6be09dd8b2561574.tar.gz
thedroneely.com-51c0cc199f30e195eafbf04e6be09dd8b2561574.tar.bz2
thedroneely.com-51c0cc199f30e195eafbf04e6be09dd8b2561574.zip
generators/hugo: Add Hugo theme source files
Diffstat (limited to 'generators/hugo/themes/tdro/layouts/_default/taxonomy.html')
-rw-r--r--generators/hugo/themes/tdro/layouts/_default/taxonomy.html18
1 files changed, 18 insertions, 0 deletions
diff --git a/generators/hugo/themes/tdro/layouts/_default/taxonomy.html b/generators/hugo/themes/tdro/layouts/_default/taxonomy.html
new file mode 100644
index 0000000..de57250
--- /dev/null
+++ b/generators/hugo/themes/tdro/layouts/_default/taxonomy.html
@@ -0,0 +1,18 @@
+{{ define "main" }}
+{{- if $.Site.Params.debug }}<p class="has-text-danger">DEBUG: layouts/_default/taxonomy.html</p>{{ end -}}
+<section class="section is-fullheight" itemscope itemtype="http://schema.org/AboutPage">
+ <div class="container">
+ <div class="columns is-centered">
+ <div class="column is-7">
+ <article class="content">
+ <h1 class="title">{{ .Data.Singular | title }}: {{ .Title }}</h1>
+ {{ range .Paginator.Pages }}
+ {{ .Render "summary" }}
+ {{ end }}
+ </article>
+ {{ partial "pagination.html" . }}
+ </div>
+ </div>
+ </div>
+</section>
+{{ end }}