basspistol.com/discography.html

49 lines
1.2 KiB
HTML
Raw Permalink 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'
2020-07-11 09:07:24 +02:00
tags:
- discography
- releases
- music
- full-length
- albums
- EP
2019-04-02 00:28:32 +02:00
video_path: /assets/vid/discogs.mp4
2020-07-09 10:15:00 +02:00
image: /assets/vid/discogs.jpg
2020-09-08 18:07:38 +02:00
layout: default
2019-04-01 23:16:35 +02:00
---
2020-09-08 18:07:38 +02:00
{% include relBase.html %}
{% include header.html %}
2020-07-09 10:15:00 +02:00
{% assign sorted = site.albums | sort: 'date' | reverse %}
2019-04-01 23:16:35 +02:00
{% for album in sorted %}
2020-09-08 18:07:38 +02:00
{% for post in site.posts %}
{% if album.slug == post.album %}
2020-07-09 10:15:00 +02:00
2020-09-25 11:35:37 +02:00
<section class="front-section" id="read">
2020-07-09 10:15:00 +02:00
2020-09-08 18:07:38 +02:00
<div style="background-image:url({{ site.mediaurl }}/{{ album.tracks[0].slug }}.jpeg)">
<p class="editor-link"><a href="cloudcannon:collections/_albums/{{ post.path }}" rel="nofollow"
class="btn"><strong>&#9998;</strong> Edit Posy</a></p>
</div>
<div class="description">
<div class="container">
<div>
2020-11-30 01:27:41 +01:00
<h2>{{ album.title }} ({{ album.date | date: '%Y' }})</h2>
<h3>by {{ album.artists }} </h3>
2020-09-08 18:07:38 +02:00
</div>
<div>
2020-09-11 11:22:50 +02:00
<p><a class="button" href="{{ relBase }}{{ post.url }}">🔊 play this release</a></p>
2020-09-08 18:07:38 +02:00
</div>
</div>
2020-07-09 10:15:00 +02:00
</div>
</section>
2020-09-08 18:07:38 +02:00
{% endif %}
{% endfor %}
2020-07-09 10:15:00 +02:00
2019-04-01 23:16:35 +02:00
{% endfor %}
2020-07-09 10:15:00 +02:00