Updated 265 files via CloudCannon

This commit is contained in:
CloudCannon 2019-03-27 13:04:51 +00:00
parent 167f5744b6
commit 4ea2a0c6d0
265 changed files with 40138 additions and 80445 deletions

View file

@ -1,41 +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: 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>