setto.basspistol.com/index.html

135 lines
4.5 KiB
HTML
Raw Normal View History

2020-07-24 14:34:09 +02:00
---
2020-07-26 16:00:51 +02:00
title: Yo, webTV crib! ゲットー・スービド
2020-07-24 14:34:09 +02:00
description: >-
2020-08-03 00:15:55 +02:00
The music of To Setto Setto is a cypher cloud jam
2020-07-26 16:00:51 +02:00
induced by popcorn chewing threads in obscure chat-rooms.
2020-07-24 14:34:09 +02:00
tags:
- outernational
- music
- homepage
- free
- culture
2020-08-03 00:11:11 +02:00
nebula_image: /images/nebula.jpg
image: /siteicon.png
2020-07-24 14:34:09 +02:00
---
{% include relBase.html %}
<!-- Banner -->
<section
class="banner onload-image-fade-in onload-content-fade-right style5 fullscreen content-align-center image-position-center;"
2020-08-03 00:11:11 +02:00
style="background-image:url('{{ relBase }}{{ page.nebula_image }}');background-size:cover;background-repeat:no-repeat;background-position: center;min-height: 100vh;">
2020-07-24 14:34:09 +02:00
<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>
2020-07-27 09:57:56 +02:00
<p>{{ page.description }}</p>
2020-07-24 14:34:09 +02:00
<ul class="actions stacked">
2020-07-29 14:48:25 +02:00
<li><a href="#music" class="button small smooth-scroll-middle">Music!</a></li>
2020-07-24 14:34:09 +02:00
</ul>
</div>
<div class="image">
2020-08-03 00:11:11 +02:00
<img src="{{ relBase }}{{ page.image }}" alt="{{ site.title }} logo" />
2020-07-24 14:34:09 +02:00
</div>
</section>
<!-- Posts -->
2020-07-27 09:57:56 +02:00
<section id="news" class="wrapper style1 align-center">
<div class="inner" style="padding-top: 40px;">
<h2>Web-Log</h2>
2020-07-27 15:26:09 +02:00
<p>Ramblings, announcenments and thoughts going on in the 徒 setto セット Cypher. In written form intertwined with audio</p>
<ul class="actions stacked">
<li><a href="/log/" class="button small">Archive</a></li>
</ul>
2020-07-27 09:57:56 +02:00
</div>
</section>
2020-07-24 14:34:09 +02:00
2020-07-27 14:37:24 +02:00
{% for post in site.posts limit: '1' %}
2020-07-24 14:34:09 +02:00
<section
2020-07-24 14:34:09 +02:00
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">
<h3>{{ post.title }}</h3>
2020-07-24 14:34:09 +02:00
<p>{{ post.description }}</p>
{% if post.category == 'releases' %}
2020-07-24 14:34:09 +02:00
{% 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-size: 14px">
2020-07-24 14:34:09 +02:00
<strong>{{ track.common.track.no }}. {{ track.common.title }}</strong><br />
<span>{% assign round_seconds = track.format.duration | 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 }}</span> |
<span style="font-size: 14px">{{ track.common.genre }} </span>
2020-07-24 14:34:09 +02:00
</p>
2020-07-24 14:34:09 +02:00
{% endfor %}
{% break %} {% endif %} {% endfor %}
{% endif %}
<br />
<ul class="actions stacked">
2020-07-29 14:48:25 +02:00
<li><li><a href="{{ post.url }}" class="button small {% if post.category == 'releases' %}icon solid fa-volume-up{% endif %}">{% if post.category == 'releases' %}Listen{% else %}Read{% endif %}</a>
2020-07-24 14:34:09 +02:00
</li>
</ul>
</div>
<div class="image">
<img src="{{ relBase }}{{ post.image }}" alt="{{ post.title }}" title="{{ post.title }}" />
</div>
</section>
{% endfor %}
{% include streamer.html %}
<!-- Releases -->
<section id="music" class="wrapper style1 align-center">
<div class="inner" style="padding-top: 40px;">
<h2>Releases</h2>
2020-07-27 09:57:56 +02:00
<p>Collection of released music through time</p>
2020-07-24 14:34:09 +02:00
</div>
</section>
2020-07-27 14:37:24 +02:00
{% assign sorted = site.posts | sort: 'date' | reverse %}
{% for album in sorted offset: '1' %}
2020-07-27 14:37:24 +02:00
{% if album.category == 'releases' %}
2020-07-24 14:34:09 +02:00
<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>
<ul class="actions stacked">
2020-07-29 14:48:25 +02:00
<li><a href="{{ album.url }}" style="text-decoration:none;" class="button small icon solid fa-volume-up">Listen</a></li>
2020-07-24 14:34:09 +02:00
</ul>
</div>
<div class="image">
2020-07-27 14:37:24 +02:00
<img src="{{ album.image }}"
2020-07-24 14:34:09 +02:00
alt="{{ album.title | smartify }}" />
</div>
</section>
2020-07-27 14:37:24 +02:00
{% endif %}
2020-07-24 14:34:09 +02:00
{% endfor %}
<!-- END Release -->
2020-07-24 14:34:09 +02:00
{% include footer.html %}