2020-07-24 14:34:09 +02:00
|
|
|
---
|
|
|
|
title: Discography
|
|
|
|
subtitle: Discog
|
2020-07-27 12:29:49 +02:00
|
|
|
description: Collection of music releases published by 徒 setto セット over the years.
|
2020-07-24 14:34:09 +02:00
|
|
|
tags:
|
|
|
|
- discography
|
|
|
|
- releases
|
|
|
|
- music
|
|
|
|
- full-length
|
|
|
|
- albums
|
|
|
|
- EP
|
|
|
|
video_path:
|
2020-07-26 16:00:51 +02:00
|
|
|
image: /images/pages/jack-hamilton-CMnNiQBkwBI-unsplash.jpg
|
2020-07-24 14:34:09 +02:00
|
|
|
---
|
|
|
|
|
|
|
|
<!-- Banner -->
|
|
|
|
<section class="banner onload-image-fade-in onload-content-fade-right style2 fullscreen content-align-center image-position-center" style="min-height:100vh;">
|
|
|
|
<div class="content editable">
|
|
|
|
<h1 class="editable">{{ page.subtitle }}</h1>
|
|
|
|
<p>{{ page.description }}</p>
|
|
|
|
<ul class="actions stacked">
|
2020-07-27 15:26:09 +02:00
|
|
|
<li><a href="#moe" class="button small smooth-scroll">Cheggit!</a></li>
|
2020-07-24 14:34:09 +02:00
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
<div class="image">
|
|
|
|
<img src="{{ relBase }}{{ page.image }}" alt="{{ page.title }}" class="editable" />
|
|
|
|
</div>
|
|
|
|
</section>
|
|
|
|
|
|
|
|
<section class="wrapper style1 align-center" id="moe">
|
|
|
|
|
|
|
|
</section>
|
|
|
|
|
2020-07-27 14:37:24 +02:00
|
|
|
{% assign sorted = site.posts | sort: 'date' | reverse %}
|
2020-07-24 14:34:09 +02:00
|
|
|
{% for album in sorted %}
|
2020-07-27 14:37:24 +02:00
|
|
|
{% if album.category == 'releases' %}
|
2020-07-24 14:34:09 +02:00
|
|
|
<section class="spotlight style4 orient-{% cycle 'left', 'right' %} content-align-left image-position-center onscroll-image-fade-in" {% if forloop.index == 1 %}style="box-shadow: none;" {% endif %}>
|
|
|
|
<div class="content">
|
|
|
|
<h1>{{ album.title }}</h1>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<p>{{ album.date | date: '%Y' }}</p>
|
2020-07-28 11:59:32 +02:00
|
|
|
{% for release in site.albums %}
|
|
|
|
{% if release.slug == album.album %}
|
|
|
|
{% for track in release.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>{% if track.common.genre != null %} |
|
2020-07-28 11:59:32 +02:00
|
|
|
<span style="font-size: 14px">{{ track.common.genre }} </span>{% endif %}
|
2020-07-24 14:34:09 +02:00
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endfor %}
|
2020-07-28 11:59:32 +02:00
|
|
|
{% endif %}
|
|
|
|
{% endfor %}
|
2020-07-24 14:34:09 +02:00
|
|
|
<br />
|
|
|
|
<ul class="actions stacked">
|
2020-07-29 14:48:25 +02:00
|
|
|
<li><a href="{{ album.url }}" class="button small icon solid fa-volume-up">Listen</a>
|
2020-07-24 14:34:09 +02:00
|
|
|
</li>
|
|
|
|
</ul>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<div class="image">
|
2020-07-27 14:37:24 +02:00
|
|
|
<img src="{{ album.image }}" alt="{{ album.title }}" title="{{ album.title }}" />
|
2020-07-24 14:34:09 +02:00
|
|
|
|
|
|
|
</div>
|
|
|
|
</section>
|
2020-07-27 14:37:24 +02:00
|
|
|
{% endif %}
|
2020-07-24 14:34:09 +02:00
|
|
|
{% endfor %}
|
|
|
|
|
|
|
|
{% include footer.html %}
|