remove useless page

This commit is contained in:
sakrecoer 2020-07-10 12:01:27 +02:00
parent bf59c0ed47
commit 1b5a63e1b5

View file

@ -1,42 +0,0 @@
---
title: taxonomy page
subtitle: Tags
description: 'List of post tags on Basspistol'
keywords: Basspistol, Outernational, Music, Syndicate, Homepage, Collective, Free, Culture, Tags
video_path: /assets/vid/intro_loop_.mp4
image: /assets/vid/intro_loop_.jpg
permalink: /tags/
---
<!DOCTYPE html>
<html>
<head>
{% include relBase.html %}
{% include matomo.html %}
</head>
<body>
<div id="content">
<div class="fitter">
{% capture tags %}
{% for tag in site.tags %}
{{ tag[0] }}
{% endfor %}
{% endcapture %}
{% assign sortedtags = tags | split:' ' | sort %}
{% for tag in sortedtags %}
<div class="articles">
<h3 id="{{ tag }}">{{ tag }}</h3>
<ul>
{% for post in site.tags[tag] %}
<li><a href="{{ post.url }}">{{ post.title }}</a></li>
{% endfor %}
</ul>
</div>
{% endfor %}
</div>
{% include footer.html %}
</div>
</body>
</html>