From a6d8d6fbd058f1f53a00eee8ba4f609496ad7c67 Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Thu, 26 Aug 2021 14:25:38 +0300 Subject: make releases that are of type 'track' actual tracks and modify the music-project layout to display those orphan tracks. --- _includes/music-project-release-info.html | 53 ++++++++++++++ _layouts/music-project.html | 83 +++++++--------------- _music_releases/2018-12-30-aaoth-forwards.md | 14 ---- _music_releases/2019-01-12-aaoth-that-cant-be.md | 11 --- ...19-02-08-secauloruxsehi-complex-neon-chamber.md | 35 --------- _music_releases/2019-02-28-aaoth-lookthrough.md | 11 --- _music_releases/2019-03-31-aaoth-mind-collapse.md | 11 --- _music_releases/2019-04-22-aaoth-madnight.md | 13 ---- _music_releases/2019-04-23-aaoth-sgti.md | 11 --- .../2019-05-10-aaoth-vortex-machines.md | 11 --- _music_releases/2019-05-20-aaoth-the-past.md | 11 --- _music_releases/2020-04-13-aaoth-massive-void.md | 11 --- _music_titles/aaoth-forwards.md | 12 ++++ _music_titles/aaoth-lookthrough.md | 9 +++ _music_titles/aaoth-madnight.md | 11 +++ _music_titles/aaoth-massive-void.md | 9 +++ _music_titles/aaoth-mind-collapse.md | 9 +++ _music_titles/aaoth-sgti.md | 9 +++ _music_titles/aaoth-that-cant-be.md | 9 +++ _music_titles/aaoth-the-past.md | 9 +++ _music_titles/aaoth-vortex-machines.md | 9 +++ .../secauloruxsehi-complex-neon-chamber.md | 33 +++++++++ music.md | 2 +- 23 files changed, 198 insertions(+), 198 deletions(-) create mode 100644 _includes/music-project-release-info.html delete mode 100644 _music_releases/2018-12-30-aaoth-forwards.md delete mode 100644 _music_releases/2019-01-12-aaoth-that-cant-be.md delete mode 100644 _music_releases/2019-02-08-secauloruxsehi-complex-neon-chamber.md delete mode 100644 _music_releases/2019-02-28-aaoth-lookthrough.md delete mode 100644 _music_releases/2019-03-31-aaoth-mind-collapse.md delete mode 100644 _music_releases/2019-04-22-aaoth-madnight.md delete mode 100644 _music_releases/2019-04-23-aaoth-sgti.md delete mode 100644 _music_releases/2019-05-10-aaoth-vortex-machines.md delete mode 100644 _music_releases/2019-05-20-aaoth-the-past.md delete mode 100644 _music_releases/2020-04-13-aaoth-massive-void.md create mode 100644 _music_titles/aaoth-forwards.md create mode 100644 _music_titles/aaoth-lookthrough.md create mode 100644 _music_titles/aaoth-madnight.md create mode 100644 _music_titles/aaoth-massive-void.md create mode 100644 _music_titles/aaoth-mind-collapse.md create mode 100644 _music_titles/aaoth-sgti.md create mode 100644 _music_titles/aaoth-that-cant-be.md create mode 100644 _music_titles/aaoth-the-past.md create mode 100644 _music_titles/aaoth-vortex-machines.md create mode 100644 _music_titles/secauloruxsehi-complex-neon-chamber.md diff --git a/_includes/music-project-release-info.html b/_includes/music-project-release-info.html new file mode 100644 index 0000000..f06625e --- /dev/null +++ b/_includes/music-project-release-info.html @@ -0,0 +1,53 @@ +{%- assign release = include.release %} +
+

{{ release.title }} + {% if release.r_tag %} + + ({{ release.type }}) + {% endif %} + {%- if release.bandcamp -%} + + listen on bandcamp + + {%- endif -%} +

+ +

released {{ release.date | date_to_string }} + / {{ release.style }} +

+ + {%- if release.r_tag -%} +
tracklist
+
+ {%- assign release_tracks = site.music_titles | + where: "r_tag", release.r_tag | sort: "num" -%} +
    + {%- for track in release_tracks -%} +
  1. + {%- if release.author == track.author -%} + {{ track.title }} + {%- else -%} + {%- assign + t_a_has_url = site.music_projects + | find: "title", track.author -%} + {%- if t_a_has_url -%} + + {{ track.author }} + {%- else -%} + {{ track.author }} + {% endif %} + — {{ track.title }} + {% endif %} +
  2. + {% endfor %} +
+
+ {%- endif -%} + + {{ release.content | markdownify }} + +
diff --git a/_layouts/music-project.html b/_layouts/music-project.html index b07f4b8..7e3044f 100644 --- a/_layouts/music-project.html +++ b/_layouts/music-project.html @@ -3,7 +3,6 @@ layout: default --- - @@ -38,70 +37,38 @@ layout: default - {%- assign releases = site.music_releases | where: "author", - page.title | group_by_exp: "item", "item.date | date: '%Y'" -%} - {%- assign releases_size = releases | size %} - {%- if releases_size > 0 -%} + {%- assign releases = site.music_releases | + where: "author", page.title | + group_by_exp: "item", "item.date | date: '%Y'" -%} + {%- assign releases.size = releases | size %} + {% unless releases.size == 0 %}

releases

- {% for item in releases %} + {% for year_group in releases %}
+ id="{{ year_group.name }}">

{{ item.name }}

- {%- for release in item.items -%} -
-

{{ release.title }} - - ({{ release.type }}) - {%- if release.bandcamp -%} - - listen on bandcamp - - {%- endif -%} -

- -

released {{ release.date | date_to_string }} - / {{ release.style }} -

- - {%- unless release.type == "track" -%} -
tracklist
-
- {%- assign release_tracks = site.music_titles | - where: "r_tag", release.r_tag | sort: "num" -%} -
    - {% for track in release_tracks %} -
  1. - {% if release.author == track.author %} - {{ track.title }} - {% else %} - {% assign t_a_has_url = site.music_projects | find: "title", track.author %} - {% if t_a_has_url %} - - {{ track.author }} - {% else %} - {{ track.author }} - {% endif %} - — {{ track.title }} - {% endif %} -
  2. - {% endfor %} -
-
- {%- endunless -%} - - {{ release.content }} - -
+ id="{{ year_group.name }}">{{ year_group.name }} + {%- for release in year_group.items -%} + {% include music-project-release-info.html release=release %} {%- endfor -%}
{%- endfor -%}
- {%- endif -%} + {% endunless %} + + {%- assign misc_tracks = site.music_titles | + where_exp: "item", "item.author == page.title and item.r_tag == nil" | + sort: "date" -%} + {%- assign misc_tracks.size = misc_tracks | size %} + {% unless misc_tracks.size == 0 %} +
+

misc tracks

+ + {% for track in misc_tracks %} + {% include music-project-release-info.html release=track %} + {%- endfor %} +
+ {% endunless %} diff --git a/_music_releases/2018-12-30-aaoth-forwards.md b/_music_releases/2018-12-30-aaoth-forwards.md deleted file mode 100644 index a3916de..0000000 --- a/_music_releases/2018-12-30-aaoth-forwards.md +++ /dev/null @@ -1,14 +0,0 @@ ---- -author: aaoth -title: forwards (universe wide grief) -type: track -date: 30-12-2018 -style: electronic improvisation -bandcamp: https://aaoth.bandcamp.com/track/forwards-universe-wide-grief -r_tag: AAOTH-01 ---- - -little desolate improv during the new year's eve's evening, recorded through sunvox. - -> this is the song of our lost souls when they'll fly away -> from the earth destroyed by humans. diff --git a/_music_releases/2019-01-12-aaoth-that-cant-be.md b/_music_releases/2019-01-12-aaoth-that-cant-be.md deleted file mode 100644 index 47f14e7..0000000 --- a/_music_releases/2019-01-12-aaoth-that-cant-be.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -author: aaoth -title: that can't be -type: track -date: 12-01-2019 -style: eai apocalyptic -bandcamp: https://aaoth.bandcamp.com/track/that-cant-be -r_tag: AAOTH-02 ---- - -apocalyptic guitar improvisation. diff --git a/_music_releases/2019-02-08-secauloruxsehi-complex-neon-chamber.md b/_music_releases/2019-02-08-secauloruxsehi-complex-neon-chamber.md deleted file mode 100644 index 2507f1b..0000000 --- a/_music_releases/2019-02-08-secauloruxsehi-complex-neon-chamber.md +++ /dev/null @@ -1,35 +0,0 @@ ---- -author: secauloruxse'i -title: complex neon chamber -type: track -date: 08-02-2019 -style: idm no techno -bandcamp: https://aaoth.bandcamp.com/track/complex-neon-chamber -r_tag: SCLRS-04 ---- - -lyrics: - -[verse 1] - -intradimensional room that you can't feel -rectangles, octagons, tesseract tissues aren't real -obstacles glow in the solid shadow of fear (hear) -voices that're piercing your eyes with the cracked mirror - -[refrain] - -*complex neon chamber -dark and gloom invader -chamber full of creatures -they're dancing they're dancing -they're moving in fire* - -[verse 2] - -colours out of sight, the crystallic tear (tears) -changing the gravity's limbs, catch the cinder -shockwave ambiguity chase to the northern wind -- see -poles and parallel lines are aligning as vertical tinder - -[refrain] diff --git a/_music_releases/2019-02-28-aaoth-lookthrough.md b/_music_releases/2019-02-28-aaoth-lookthrough.md deleted file mode 100644 index 334f568..0000000 --- a/_music_releases/2019-02-28-aaoth-lookthrough.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -author: aaoth -title: lookthrough -type: track -date: 28-02-2019 -style: eai abstract -bandcamp: https://aaoth.bandcamp.com/track/lookthrough -r_tag: AAOTH-03 ---- - -unthemed guitar improvisation. diff --git a/_music_releases/2019-03-31-aaoth-mind-collapse.md b/_music_releases/2019-03-31-aaoth-mind-collapse.md deleted file mode 100644 index 7dd23b4..0000000 --- a/_music_releases/2019-03-31-aaoth-mind-collapse.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -author: aaoth -title: mind collapse -type: track -date: 31-03-2019 -style: eai -bandcamp: https://aaoth.bandcamp.com/track/mind-collapse -r_tag: AAOTH-04 ---- - -recorded directly on recycled tape. only three samples in sunvox were used. diff --git a/_music_releases/2019-04-22-aaoth-madnight.md b/_music_releases/2019-04-22-aaoth-madnight.md deleted file mode 100644 index 48b82c3..0000000 --- a/_music_releases/2019-04-22-aaoth-madnight.md +++ /dev/null @@ -1,13 +0,0 @@ ---- -author: aaoth -title: madnight -type: track -date: 22-04-2019 -style: electronic lo-fi -bandcamp: https://aaoth.bandcamp.com/track/madnight -r_tag: AAOTH-05 ---- - -atmospheric electronic track made using [sunvox][1] on android. - -[1]:https://warmplace.ru/soft/sunvox diff --git a/_music_releases/2019-04-23-aaoth-sgti.md b/_music_releases/2019-04-23-aaoth-sgti.md deleted file mode 100644 index a112e52..0000000 --- a/_music_releases/2019-04-23-aaoth-sgti.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -author: aaoth -title: sgti -type: track -date: 23-04-2019 -style: eai -bandcamp: https://aaoth.bandcamp.com/track/sgti -r_tag: AAOTH-06 ---- - -**s**unvox/**g**uv'nor/**t**ape/**i**mprov diff --git a/_music_releases/2019-05-10-aaoth-vortex-machines.md b/_music_releases/2019-05-10-aaoth-vortex-machines.md deleted file mode 100644 index c105464..0000000 --- a/_music_releases/2019-05-10-aaoth-vortex-machines.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -author: aaoth -title: vortex machines -type: track -date: 10-05-2019 -style: electronic improvisation -bandcamp: https://aaoth.bandcamp.com/track/vortex-machines -r_tag: AAOTH-07 ---- - -apocalyptic electronic improvisation using sunvox. diff --git a/_music_releases/2019-05-20-aaoth-the-past.md b/_music_releases/2019-05-20-aaoth-the-past.md deleted file mode 100644 index fb9b280..0000000 --- a/_music_releases/2019-05-20-aaoth-the-past.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -author: aaoth -title: the past -type: track -date: 20-05-2019 -style: eai lo-fi -bandcamp: https://aaoth.bandcamp.com/track/the-past -r_tag: AAOTH-08 ---- - -atmospheric lo-fi improvisation. diff --git a/_music_releases/2020-04-13-aaoth-massive-void.md b/_music_releases/2020-04-13-aaoth-massive-void.md deleted file mode 100644 index 766e65c..0000000 --- a/_music_releases/2020-04-13-aaoth-massive-void.md +++ /dev/null @@ -1,11 +0,0 @@ ---- -author: aaoth -title: massive void -type: track -date: 13-04-2020 -style: generative electronic -bandcamp: https://aaoth.bandcamp.com/track/massive-void -r_tag: AAOTH-09 ---- - -generative abstract track made with vcvrack. diff --git a/_music_titles/aaoth-forwards.md b/_music_titles/aaoth-forwards.md new file mode 100644 index 0000000..25097b7 --- /dev/null +++ b/_music_titles/aaoth-forwards.md @@ -0,0 +1,12 @@ +--- +author: aaoth +title: forwards (universe wide grief) +date: 30-12-2018 +style: electronic improvisation +bandcamp: https://aaoth.bandcamp.com/track/forwards-universe-wide-grief +--- + +little desolate improv during the new year's eve's evening, recorded through sunvox. + +> this is the song of our lost souls when they'll fly away +> from the earth destroyed by humans. diff --git a/_music_titles/aaoth-lookthrough.md b/_music_titles/aaoth-lookthrough.md new file mode 100644 index 0000000..f18492c --- /dev/null +++ b/_music_titles/aaoth-lookthrough.md @@ -0,0 +1,9 @@ +--- +author: aaoth +title: lookthrough +date: 28-02-2019 +style: eai abstract +bandcamp: https://aaoth.bandcamp.com/track/lookthrough +--- + +unthemed guitar improvisation. diff --git a/_music_titles/aaoth-madnight.md b/_music_titles/aaoth-madnight.md new file mode 100644 index 0000000..3eef735 --- /dev/null +++ b/_music_titles/aaoth-madnight.md @@ -0,0 +1,11 @@ +--- +author: aaoth +title: madnight +date: 22-04-2019 +style: electronic lo-fi +bandcamp: https://aaoth.bandcamp.com/track/madnight +--- + +atmospheric electronic track made using [sunvox][1] on android. + +[1]:https://warmplace.ru/soft/sunvox diff --git a/_music_titles/aaoth-massive-void.md b/_music_titles/aaoth-massive-void.md new file mode 100644 index 0000000..055735b --- /dev/null +++ b/_music_titles/aaoth-massive-void.md @@ -0,0 +1,9 @@ +--- +author: aaoth +title: massive void +date: 13-04-2020 +style: generative electronic +bandcamp: https://aaoth.bandcamp.com/track/massive-void +--- + +generative abstract track made with vcvrack. diff --git a/_music_titles/aaoth-mind-collapse.md b/_music_titles/aaoth-mind-collapse.md new file mode 100644 index 0000000..cbaa391 --- /dev/null +++ b/_music_titles/aaoth-mind-collapse.md @@ -0,0 +1,9 @@ +--- +author: aaoth +title: mind collapse +date: 31-03-2019 +style: eai +bandcamp: https://aaoth.bandcamp.com/track/mind-collapse +--- + +recorded directly on recycled tape. only three samples in sunvox were used. diff --git a/_music_titles/aaoth-sgti.md b/_music_titles/aaoth-sgti.md new file mode 100644 index 0000000..35c2f54 --- /dev/null +++ b/_music_titles/aaoth-sgti.md @@ -0,0 +1,9 @@ +--- +author: aaoth +title: sgti +date: 23-04-2019 +style: eai +bandcamp: https://aaoth.bandcamp.com/track/sgti +--- + +**s**unvox/**g**uv'nor/**t**ape/**i**mprov diff --git a/_music_titles/aaoth-that-cant-be.md b/_music_titles/aaoth-that-cant-be.md new file mode 100644 index 0000000..e1b8361 --- /dev/null +++ b/_music_titles/aaoth-that-cant-be.md @@ -0,0 +1,9 @@ +--- +author: aaoth +title: that can't be +date: 12-01-2019 +style: eai apocalyptic +bandcamp: https://aaoth.bandcamp.com/track/that-cant-be +--- + +apocalyptic guitar improvisation. diff --git a/_music_titles/aaoth-the-past.md b/_music_titles/aaoth-the-past.md new file mode 100644 index 0000000..28a4951 --- /dev/null +++ b/_music_titles/aaoth-the-past.md @@ -0,0 +1,9 @@ +--- +author: aaoth +title: the past +date: 20-05-2019 +style: eai lo-fi +bandcamp: https://aaoth.bandcamp.com/track/the-past +--- + +atmospheric lo-fi improvisation. diff --git a/_music_titles/aaoth-vortex-machines.md b/_music_titles/aaoth-vortex-machines.md new file mode 100644 index 0000000..0fcdabc --- /dev/null +++ b/_music_titles/aaoth-vortex-machines.md @@ -0,0 +1,9 @@ +--- +author: aaoth +title: vortex machines +date: 10-05-2019 +style: electronic improvisation +bandcamp: https://aaoth.bandcamp.com/track/vortex-machines +--- + +apocalyptic electronic improvisation using sunvox. diff --git a/_music_titles/secauloruxsehi-complex-neon-chamber.md b/_music_titles/secauloruxsehi-complex-neon-chamber.md new file mode 100644 index 0000000..453eddd --- /dev/null +++ b/_music_titles/secauloruxsehi-complex-neon-chamber.md @@ -0,0 +1,33 @@ +--- +author: secauloruxse'i +title: complex neon chamber +date: 08-02-2019 +style: idm no techno +bandcamp: https://aaoth.bandcamp.com/track/complex-neon-chamber +--- + +lyrics: + +[verse 1] + +intradimensional room that you can't feel +rectangles, octagons, tesseract tissues aren't real +obstacles glow in the solid shadow of fear (hear) +voices that're piercing your eyes with the cracked mirror + +[refrain] + +*complex neon chamber +dark and gloom invader +chamber full of creatures +they're dancing they're dancing +they're moving in fire* + +[verse 2] + +colours out of sight, the crystallic tear (tears) +changing the gravity's limbs, catch the cinder +shockwave ambiguity chase to the northern wind -- see +poles and parallel lines are aligning as vertical tinder + +[refrain] diff --git a/music.md b/music.md index 42ea855..0185833 100644 --- a/music.md +++ b/music.md @@ -12,7 +12,7 @@ here's a list of projects in which i took part: {% assign haelsorisk_projects = site.music_projects | where: "other", nil %}
-{% include music-projects-list.html projects=haelsorisk_projects%} +{% include music-projects-list.html projects=haelsorisk_projects %}
[1]:/haelsorisk -- cgit v1.2.3