Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mmrath/hugo-bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'layouts/taxonomy')
-rw-r--r--layouts/taxonomy/topic.html11
-rw-r--r--layouts/taxonomy/topic.terms.html22
2 files changed, 0 insertions, 33 deletions
diff --git a/layouts/taxonomy/topic.html b/layouts/taxonomy/topic.html
deleted file mode 100644
index a9f3c76..0000000
--- a/layouts/taxonomy/topic.html
+++ /dev/null
@@ -1,11 +0,0 @@
-{{ partial "head" . }}
-<section id="main-content" class="container main_content">
- <header class="container">
- {{ partial "content/h1-title" . }}
- </header>
- {{ range $index, $page := .Paginator.Pages }}
- {{ .Render "summary" }}
- {{ end }}
- {{ partial "content/pagination" . }}
-</section>
-{{ partial "foot" . }}
diff --git a/layouts/taxonomy/topic.terms.html b/layouts/taxonomy/topic.terms.html
deleted file mode 100644
index 8e49494..0000000
--- a/layouts/taxonomy/topic.terms.html
+++ /dev/null
@@ -1,22 +0,0 @@
-{{ partial "head" . }}
-<section id="main-content" class="container main_content terms topic">
- <header class="container">
- {{ partial "content/h1-title" . }}
- </header>
- {{ $data := .Data }}
- {{ range $key,$value := .Data.Terms.Alphabetical }}
- <article class="container">
- <h2>
- <a href="{{ (print $data.Plural "/" ($value.Name | urlize) "/") | relURL }}">{{ $value.Name }}</a>
- </h2>
- <ul>
- {{ range $value.Pages.ByTitle }}
- <li>
- <a href="{{ .Permalink }}">{{ .Title }}</a>
- </li>
- {{ end }}
- </ul>
- </article>
- {{ end }}
-</section>
-{{ partial "foot" . }}