This commit is contained in:
Set Hallstrom 2019-04-01 23:16:35 +02:00
parent 9e9b61eabc
commit cfc4264419
266 changed files with 80462 additions and 40141 deletions

41
tags.html Normal file
View file

@ -0,0 +1,41 @@
---
title: taxonomy page
subtitle: Tags
description: 'List of post tags on Basspistol'
keywords: Basspistol, Outernational, Music, Syndicate, Homepage, Collective, Free, Culture, Tags
video: intro_loop_.mp4
poster: intro_loop_.png
thumb: intro_loop_.png
permalink: /tags/
---
<!DOCTYPE html>
<html>
<head>
{% include metahead.html %}
</head>
<body>
{% include navmenu.html %}
<div id="content">
{% include videopageheader.html %}
<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>