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

github.com/StaticMania/portio-hugo.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordnth <dickson.neoh@gmail.com>2022-02-19 08:41:17 +0300
committerdnth <dickson.neoh@gmail.com>2022-02-19 08:41:17 +0300
commit446bbae2ebe55e76b82f2d5656b0897b714a4d9b (patch)
treeb56d34e29f15e3cdbe05ea2ca3f3ea050ae903f7
parent10914ddc3ad9afef22028c0d8c2c14d83a73427a (diff)
show all post with tag and cat
-rw-r--r--layouts/categories/taxonomy.html3
-rw-r--r--layouts/tags/taxonomy.html3
2 files changed, 2 insertions, 4 deletions
diff --git a/layouts/categories/taxonomy.html b/layouts/categories/taxonomy.html
index 1ef6d82..5799a23 100644
--- a/layouts/categories/taxonomy.html
+++ b/layouts/categories/taxonomy.html
@@ -27,8 +27,7 @@
<h3 class="breadCrumb__title">{{ .Title }}</h3>
<nav aria-label="breadcrumb" class="d-flex justify-content-center">
<ol class="breadcrumb align-items-center">
- <li class="breadcrumb-item"><a href="{{ .Site.BaseURL }}">Home</a></li>
- <li class="breadcrumb-item active" aria-current="page">{{ .Title }}</li>
+ Showing all posts with the category "{{.Title}}"
</ol>
</nav>
</div>
diff --git a/layouts/tags/taxonomy.html b/layouts/tags/taxonomy.html
index d8b2565..dc1dbfa 100644
--- a/layouts/tags/taxonomy.html
+++ b/layouts/tags/taxonomy.html
@@ -27,8 +27,7 @@
<h3 class="breadCrumb__title">{{ .Title }}</h3>
<nav aria-label="breadcrumb" class="d-flex justify-content-center">
<ol class="breadcrumb align-items-center">
- <li class="breadcrumb-item"><a href="{{ .Site.BaseURL }}">Home</a></li>
- <li class="breadcrumb-item active" aria-current="page">{{ .Title }}</li>
+ Showing all posts with the tag "{{.Title}}"
</ol>
</nav>
</div>