--- title: Yo, webTV crib! ゲットー・スービド description: >- The music of To Setto Setto is a cypher cloud jam induced by popcorn chewing threads in obscure chat-rooms.induced by popcorn chewing threads in obscure chat-rooms.induced by popcorn chewing threads in obscure chat-rooms.induced by popcorn chewing threads in obscure chat-rooms. nebula_image: /images/nebula.jpg image: /siteicon.png --- {% include relBase.html %} {% include header.html %}

EPs and LPs

{% assign sorted = site.albums | sort: 'date' | reverse %} {% for album in sorted %} {% for post in site.posts %} {% if album.slug == post.album %} {% if post.tags contains 'EP' or post.tags contains 'LP' %}
{{ album.name }}
{% 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 }}
{{ album.date | date: '%Y' }}
{% endif %} {% endif %} {% endfor %} {% endfor %}

Singles

{% for track in sorted %} {% for post in site.posts %} {% if track.slug == post.album %} {% if post.tags contains 'single' %}
{{ track.tracks[0].common.title }}
{% assign round_seconds = track.tracks[0].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 }} | {{ track.tracks[0].common.genre }}
{% endif %} {% endif %} {% endfor %} {% endfor %}