Reseting all redundant commits
This commit is contained in:
parent
ad05bc280a
commit
9f59a32bf1
421 changed files with 72746 additions and 3044 deletions
245
index.html
245
index.html
|
|
@ -1,109 +1,136 @@
|
|||
---
|
||||
title: Greetings Robot!
|
||||
description: 'This is the motherweb of Sakrecoer. Music, art, thoughts and passion from innerspace.'
|
||||
image: /siteicon.png
|
||||
mp4_path: /assets/vi/0001-0076.mp4
|
||||
webm_path: /assets/vi/0001-0076.webm
|
||||
---
|
||||
|
||||
<div id="hero">
|
||||
<div class="pivot">
|
||||
<h1>{{ site.title }}</h1>
|
||||
<h2>{{ page.title }}</h2>
|
||||
<h2>{{ page.description }}</h2>
|
||||
<h3><a href="/about/" alt="About Sakrecoer">Read more</a></h3>
|
||||
{% include liberapay.html %}
|
||||
|
||||
|
||||
|
||||
</div>
|
||||
<div class="fullscreen-bg">
|
||||
<video loop muted poster="{{ relBase }}/assets/img/sakrecoer-logo2.svg" class="fullscreen-bg__video">
|
||||
<source src="{{ relBase }}{{ page.webm_path }}" type="video/webm">
|
||||
<source src="{{ relBase }}{{ page.mp4_path }}" type="video/mp4">
|
||||
</video>
|
||||
</div>
|
||||
</div>
|
||||
<div class="button-group filters-button-group" style="margin: auto; padding: 20px;">
|
||||
|
||||
<button class="button is-checked" data-filter="*">show all</button>
|
||||
|
||||
<!-- create categories array-->
|
||||
{% assign categories_array = "" | split:"|" %}
|
||||
|
||||
<!--Add each unique 'my_collection' category to the array-->
|
||||
{% for post in site.tracks %}
|
||||
{% for category in post.categories %}
|
||||
{% assign categories_array = categories_array | push: category | uniq %}
|
||||
{% endfor %}
|
||||
{% endfor %}
|
||||
|
||||
<!--Output the categories-->
|
||||
{% for category in categories_array %}
|
||||
|
||||
<button class="button" data-filter=".{{ category }}">{{ category }}</button>
|
||||
{% endfor %}
|
||||
</div>
|
||||
|
||||
<div class="musiflex">
|
||||
|
||||
{% for track in site.tracks reversed %}
|
||||
<div id="{{ track.uid }}" class="element-item trackcontainer {% for key in track.categories %}{{ key }} {% endfor %}">
|
||||
<a href="{{ track.url }}">
|
||||
<div class="track" style="background-image:url({{ track.image }});"></div>
|
||||
</a>
|
||||
</div>
|
||||
{% endfor %}
|
||||
|
||||
</div>
|
||||
|
||||
<script>
|
||||
// external js: isotope.pkgd.js
|
||||
|
||||
// init Isotope
|
||||
var $grid = $('.musiflex').isotope({
|
||||
itemSelector: '.element-item',
|
||||
layoutMode: 'fitRows'
|
||||
});
|
||||
// filter functions
|
||||
|
||||
// bind filter button click
|
||||
$('.filters-button-group').on('click', 'button', function () {
|
||||
var filterValue = $(this).attr('data-filter');
|
||||
// use filterFn if matches value
|
||||
|
||||
$grid.isotope({ filter: filterValue });
|
||||
});
|
||||
// change is-checked class on buttons
|
||||
$('.button-group').each(function (i, buttonGroup) {
|
||||
var $buttonGroup = $(buttonGroup);
|
||||
$buttonGroup.on('click', 'button', function () {
|
||||
$buttonGroup.find('.is-checked').removeClass('is-checked');
|
||||
$(this).addClass('is-checked');
|
||||
});
|
||||
});
|
||||
</script>
|
||||
|
||||
<div style="background: linear-gradient(45deg, #deefb7, #5fb49c);">
|
||||
<div class="trackcontainer logo" style="margin-top:0;padding-top:0;">
|
||||
{% include cookiemonster.html %}
|
||||
</div>
|
||||
</div>
|
||||
<style>
|
||||
body {
|
||||
background: linear-gradient(230deg, #deefb7, #98dfaf, #5fb49c, #414288, #682d63);
|
||||
background-position: center;
|
||||
background-repeat: repeat;
|
||||
-webkit-animation: AnimationName 60s ease infinite;
|
||||
-moz-animation: AnimationName 60s ease infinite;
|
||||
animation: AnimationName 60s ease infinite; }
|
||||
#wallpaper {
|
||||
background-image: url('{{ page.image }}');
|
||||
background-position: center;
|
||||
background-repeat: repeat;
|
||||
-webkit-animation: AnimationName 60s ease infinite;
|
||||
-moz-animation: AnimationName 60s ease infinite;
|
||||
animation: AnimationName 60s ease infinite;
|
||||
}
|
||||
|
||||
</style>
|
||||
---
|
||||
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
|
||||
image: /assets/img/live_original.gif
|
||||
logo_image: /siteicon.png
|
||||
---
|
||||
{% include relBase.html %}
|
||||
<!-- Banner -->
|
||||
<section
|
||||
class="banner onload-image-fade-in onload-content-fade-right style5 fullscreen content-align-center image-position-center;"
|
||||
style="background-image:url('{{ page.image }}');background-size:cover;background-repeat:no-repeat;background-position: center;min-height: 100vh;">
|
||||
<div
|
||||
style="z-index:0;position:absolute; top:0; left:0; width:100%;min-height:100%;background-color: rgba(13, 13 ,13, 0.5);">
|
||||
</div>
|
||||
<div class="content" style="z-index:1">
|
||||
<h1 style="margin-top:80px">{{ site.title }}</h1>
|
||||
|
||||
<p>{{ site.description }}</p>
|
||||
<ul class="actions stacked">
|
||||
<li><a href="#music" class="button large wide smooth-scroll">Gimme Music!</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="image">
|
||||
<img src="{{ relBase }}{{ site.logo }}" alt="{{ site.title }} logo" />
|
||||
</div>
|
||||
</section>
|
||||
|
||||
|
||||
<!-- Posts -->
|
||||
|
||||
|
||||
{% for post in site.posts limit: '2' %}
|
||||
|
||||
<section id="album{% increment var %}"
|
||||
class="section-shadow banner style1 orient-{% cycle 'left', 'right' %} content-align-{% cycle 'right', 'left' %} image-position-center fullscreen onload-image-fade-in onload-content-fade-right">
|
||||
|
||||
<div class="content">
|
||||
<h1>{{ post.title }}</h1>
|
||||
<p>{{ post.description }}</p>
|
||||
{% if post.category == 'release' %}
|
||||
{% capture album_name -%}
|
||||
{{ post.album }}
|
||||
{%- endcapture %}
|
||||
{% for album in site.albums %}
|
||||
{% capture name -%}
|
||||
{{ album.relative_path | replace_first: album.collection, '' | replace_first: '_/', '' | replace_first: '.md', '' }}
|
||||
{%- endcapture %}
|
||||
{% if name == album_name %}
|
||||
<p>{{ album.date | date: '%Y' }}</p>
|
||||
|
||||
{% for track in album.tracks %}
|
||||
<p style="margin-bottom: 30px; font-family: monospace;font-size: 14px">
|
||||
<strong>{{ track.common.track.no }}. {{ track.common.title }}</strong><br />
|
||||
<span id="{{ track.common.title | slugify | remove: '-' }}"></span> |
|
||||
<span style="font-family: monospace;font-size: 14px">{{ track.common.genre }} </span>
|
||||
</p>
|
||||
|
||||
|
||||
<script type="text/javascript">
|
||||
var {{ track.common.title | slugify | remove: '-' }}timestamp = {{ track.format.duration | round }};
|
||||
var {{ track.common.title | slugify | remove: '-' }}hours = Math.floor({{ track.common.title | slugify | remove: '-' }}timestamp / 60 / 60);
|
||||
var {{ track.common.title | slugify | remove: '-' }}minutes = Math.floor({{ track.common.title | slugify | remove: '-' }}timestamp / 60) - ({{ track.common.title | slugify | remove: '-' }}hours * 60);
|
||||
var {{ track.common.title | slugify | remove: '-' }}seconds = {{ track.common.title | slugify | remove: '-' }}timestamp % 60;
|
||||
var {{ track.common.title | slugify | remove: '-' }}formatted = {{ track.common.title | slugify | remove: '-' }}hours.toString().padStart(2, '0') + ':' + {{ track.common.title | slugify | remove: '-' }}minutes.toString().padStart(2, '0') + ':' + {{ track.common.title | slugify | remove: '-' }}seconds.toString().padStart(2, '0');
|
||||
var theSpan = document.getElementById("{{ track.common.title | slugify | remove: '-' }}");
|
||||
theSpan.innerHTML = {{ track.common.title | slugify | remove: '-' }}formatted;
|
||||
</script>
|
||||
{% endfor %}
|
||||
{% break %} {% endif %} {% endfor %}
|
||||
{% endif %}
|
||||
|
||||
<br />
|
||||
<ul class="actions stacked">
|
||||
|
||||
<li><a href="{{ relBase }}{{ post.url }}"
|
||||
class="button big wide {% if post.category == 'release' %}icon solid fa-volume-up{% endif %}">Cheggid out</a>
|
||||
</li>
|
||||
</ul>
|
||||
</div>
|
||||
|
||||
<div class="image">
|
||||
<img src="{{ relBase }}{{ post.image }}" alt="{{ post.title }}" title="{{ post.title }}" />
|
||||
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
<!-- Releases -->
|
||||
|
||||
<section id="music" class="wrapper style1 align-center">
|
||||
<div class="inner" style="padding-top: 40px;">
|
||||
<h2>Releases</h2>
|
||||
<p>Collection of releases through time</p>
|
||||
</div>
|
||||
</section>
|
||||
|
||||
{% assign sorted = site.albums | sort: 'date' | reverse %}
|
||||
{% for album in sorted %}
|
||||
|
||||
<section class="spotlight style5 orient-{% cycle 'left', 'right' %} content-align-{% cycle 'right', 'left' %} image-position-center onscroll-image-fade-in" {% if forloop.index == 1 %}style="box-shadow: none;" {% endif %}>
|
||||
|
||||
|
||||
<div class="content">
|
||||
<h3>{{ album.title }}</h3>
|
||||
<p>{{ album.date | date: "%Y" }}</p>
|
||||
<!-- <p>{{ artist.bio }}</p> -->
|
||||
|
||||
<ul class="actions stacked">
|
||||
<li><a href="{{ album.url }}" style="text-decoration:none;" class="button">Listen</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<div class="image">
|
||||
<img src="{{ site.mediaurl }}/{{ album.slug }}/{{ album.tracks[0].trackSlug }}.jpeg" alt="{{ album.title | smartify }}" />
|
||||
</div>
|
||||
|
||||
</section>
|
||||
|
||||
{% endfor %}
|
||||
|
||||
<!-- END Insta -->
|
||||
|
||||
{% include footer.html %}
|
||||
Loading…
Add table
Add a link
Reference in a new issue