basspistol.com/discography.html

34 lines
817 B
HTML
Raw Normal View History

2019-04-01 23:16:35 +02:00
---
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: discogs.mp4
poster: discogs.png
thumb: discogs.png
---
2019-02-28 17:06:17 +01:00
<!DOCTYPE html>
<html>
<head>
2019-04-01 23:16:35 +02:00
{% include metahead.html %}
2019-02-28 17:06:17 +01:00
</head>
<body>
2019-04-01 23:16:35 +02:00
{% include navmenu.html %}
2019-02-28 17:06:17 +01:00
<div id="content">
2019-04-01 23:16:35 +02:00
{% include videopageheader.html %}
2019-02-28 17:06:17 +01:00
<div class="fitter">
2019-04-01 23:16:35 +02:00
{% assign sorted = site.albums | reverse %}
{% for album in sorted %}
2019-02-28 17:06:17 +01:00
<div class="records">
2019-04-01 23:16:35 +02:00
<a href="{{ base }}/albums/{{ album.slug }}/">
<img class="recordthumbs" src="{{ base }}{{ album.cover }}" title="{{ album.name }}" alt="{{ album.name }}" />
2019-02-28 17:06:17 +01:00
</a>
</div>
2019-04-01 23:16:35 +02:00
{% endfor %}
{% include footer.html %}
2019-02-28 17:06:17 +01:00
</div>
</div>
</body>
</html>