34 lines
875 B
HTML
34 lines
875 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 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="{{ site.baseurl }}/albums/{{ album.slug }}/">
|
|
<img class="recordthumbs" src="{{ site.baseurl }}{{ album.cover }}" title="{{ album.name }}" alt="{{ album.name }}" />
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
{% include footer.html %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|