2020-09-08 18:07:38 +02:00
---
title: Music Syndicate
subtitle: Basspistol
description: >-
Homepage of Basspistol, The Outernational Music Syndicate established in 2010.
The underground is dead, Long Live the Underground!
tags:
- basspistol
- uuternational
- music
- syndicate
- homepage
- collective
- free
- culture
video_path: /assets/vid/intro_loop_.mp4
image: /assets/vid/intro_loop_.jpg
logo_image: /siteicon.png
layout: default
---
{% include relBase.html %}
2020-09-25 11:35:37 +02:00
{% include relBase.html %}
2020-09-08 18:07:38 +02:00
< header class = "hero" id = "top"
2020-09-25 11:35:37 +02:00
style="background-image: url({{ page.image }});">
2020-09-08 18:07:38 +02:00
< div class = "imagecontainer" >
2020-09-08 20:04:08 +02:00
< h4 > {{ page.title }}< / h4 >
2020-09-08 18:07:38 +02:00
< / div >
2020-09-25 11:35:37 +02:00
< div class = "splash" >
< div class = "splash-logo" >
< a href = "#read" > < img src = "{{ site.icon }}" width = "240px" alt = "{{ site.title }} Logo" / > < / a >
< / div >
< div class = "description" >
< h1 > {{ site.title }}< / h1 >
< p > {{ page.description }}< / p >
2020-11-03 11:27:22 +01:00
< p > < a href = "#read" class = "button" style = "margin-bottom: 10px" > 🔥 Boom< / a > < a href = "/radio/" class = "button" > 📻 Radio app< / a > < a href = "https://v.basspistol.org" target = "_blank" rel = "noopener" class = "button" > 📺 Video app< / a > < / p >
2020-09-25 11:35:37 +02:00
< / div >
< / div >
2020-09-08 18:07:38 +02:00
2020-09-25 11:35:37 +02:00
< / header >
2020-09-08 18:07:38 +02:00
2020-09-25 12:15:26 +02:00
< section class = "section-title" id = "read" >
2020-09-08 18:07:38 +02:00
< div class = "container" >
< h2 > Latest News< / h2 >
< / div >
< / section >
2020-09-25 11:14:52 +02:00
{% for post in site.categories.highlights limit: 3 %}
2020-09-08 18:07:38 +02:00
< section class = "front-section" >
< div style = "background-image:url({{ post.image }})" >
< p class = "editor-link" > < a href = "cloudcannon:collections/_posts/{{ post.path }}" rel = "nofollow"
class="btn">< strong > ✎ < / strong > Edit Posy< / a > < / p >
< / div >
< div class = "description" >
< div class = "container" >
< div class = "" >
< h3 > {{ post.title }}< / h3 >
2020-10-14 14:02:46 +02:00
< p > < time datetime = "{{ post.date }}" > {% include forloop-dates.html %}< / time > < / p >
2020-09-08 18:07:38 +02:00
{{ post.description }}
< / div >
< div >
2020-09-25 11:14:52 +02:00
< p > < a class = "button" href = "{{ relBase }}{{ post.url }}" > ✨ Read Highlight< / a > < / p >
2020-09-08 18:07:38 +02:00
< / div >
< / div >
< / div >
< / section >
2020-09-25 11:14:52 +02:00
2020-09-08 18:07:38 +02:00
{% endfor %}
< section class = "releases" >
< h2 > Releases< / h2 >
< div class = "container" >
{% assign sorted = site.albums | sort: 'date' | reverse %}
{% for album in sorted %}
{% for post in site.posts %}
{% if album.slug == post.album %}
< article >
< figure >
< a href = "{{ post.url }}" >
< img src = "{{ site.mediaurl }}/{{ album.tracks[0].slug }}.jpeg" alt = "Cover art for {{ post.title }}" / > < / a >
< figcaption >
< strong > {{ album.name }}< / strong > < br / >
{% assign total = 0 %}
{% for track in album.tracks %}
{% assign total = total | plus: track.format.duration %}
{% endfor %}
{% assign round_seconds = total | round %}{% assign minutes = round_seconds | divided_by: 60 %}{% assign leftover_seconds = minutes | times: 60 %}{{ minutes }}:{% assign seconds_without_zero = round_seconds | minus: leftover_seconds %}{% if seconds_without_zero < 10 % } 0 { % endif % } { { seconds_without_zero } }
< br / >
{{ album.date | date: '%Y' }}
< / figcaption >
< / figure >
< / article >
{% endif %}
{% endfor %}
{% endfor %}
< / div >
< / section >