remove useless page
This commit is contained in:
parent
bf59c0ed47
commit
1b5a63e1b5
42
tags.html
42
tags.html
|
@ -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>
|
Loading…
Reference in a new issue