get rid of categories and add more tags
Signed-off-by: Harald Hoyer <harald@hoyer.xyz>
This commit is contained in:
parent
575eac4fe0
commit
5ebee61159
20 changed files with 39 additions and 29 deletions
|
@ -28,20 +28,6 @@
|
|||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-md-10 mx-auto">
|
||||
<h2>Categories</h2>
|
||||
<ul>
|
||||
{% set categories = get_taxonomy(kind="categories") %}
|
||||
{% for category in categories.items %}
|
||||
<li><a href="/categories/{{ category.name }}/rss.xml">{{ category.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
<div class="container">
|
||||
<div class="row">
|
||||
<div class="col-lg-8 col-md-10 mx-auto">
|
||||
|
@ -49,7 +35,7 @@
|
|||
<ul>
|
||||
{% set tags = get_taxonomy(kind="tags") %}
|
||||
{% for tag in tags.items %}
|
||||
<li><a href="/tags/{{ tag.name }}/rss.xml">{{ tag.name }}</a></li>
|
||||
<li><a href="{{ tag.permalink }}/rss.xml">{{ tag.name }}</a></li>
|
||||
{% endfor %}
|
||||
</ul>
|
||||
</div>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue