basspistol.com/discography.html
2019-12-16 12:12:57 +01:00

35 lines
892 B
HTML

---
title: Discography
subtitle: Discog
description: 'Our collection of Creative Commons licensed releases. Open culture''s finest'
keywords: Discography, Releases, Music, Full-length, Albums, EP
video_path: /assets/vid/discogs.mp4
poster_image: /assets/vid/discogs.jpg
---
<!DOCTYPE html>
<html>
<head>
{% include relBase.html %}
{% include metahead.html %}
{% include matomo.html %}
</head>
<body>
{% include navmenu.html %}
<div id="content">
{% include videopageheader.html %}
<div class="fitter">
{% assign sorted = site.albums | reverse %}
{% for album in sorted %}
<div class="records">
<a href="{{ relBase }}/albums/{{ album.slug }}/">
<img class="recordthumbs" src="{{ relBase }}{{ album.cover }}" title="{{ album.name }}" alt="{{ album.name }}" />
</a>
</div>
{% endfor %}
{% include footer.html %}
</div>
</div>
</body>
</html>