aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorla-ninpre <leobrekalini@gmail.com>2021-08-19 00:22:00 +0300
committerla-ninpre <leobrekalini@gmail.com>2021-08-19 00:22:00 +0300
commit9dcaf807a98362a708136284534ee343dd3f2742 (patch)
tree1dce7891fb881d01516296511445059f97e91cac
parent275316f5ed205e77137b045c0c5fba603a2fc0b0 (diff)
downloadaaoth.xyz-9dcaf807a98362a708136284534ee343dd3f2742.tar.gz
aaoth.xyz-9dcaf807a98362a708136284534ee343dd3f2742.zip
add info about music projects
much of stuff included here is subject to change.
-rw-r--r--_config.yml14
-rw-r--r--_layouts/music-project.html70
-rw-r--r--_music_projects/aaock-morth.md10
-rw-r--r--_music_projects/aaoth.md10
-rw-r--r--_music_projects/akpngims.md10
-rw-r--r--_music_projects/lequalone.md11
-rw-r--r--_music_projects/secauloruxsehi.md9
-rw-r--r--_music_projects/spiral-materivm.md10
-rw-r--r--_music_projects/xvra.md10
-rw-r--r--_music_releases/2015-05-28-lequalone-the-darkness.md9
-rw-r--r--_music_releases/2015-06-13-akpngims-enneorth.md10
-rw-r--r--_music_releases/2015-09-12-lequalone-wastelands.md10
-rw-r--r--_music_releases/2015-10-05-lequalone-chasm-of-psychosis.md9
-rw-r--r--_music_releases/2015-10-26-lequalone-soul-ocean.md10
-rw-r--r--_music_releases/2015-11-02-lequalone-youll-never-hear-me-again.md9
-rw-r--r--_music_releases/2015-17-27-xvra-svartfeber.md9
-rw-r--r--_music_releases/2016-08-22-xvra-save-me-from-the-life.md10
-rw-r--r--_music_releases/2016-16-18-aaock-morth-aateh-tgh-saaghth.md10
-rw-r--r--_music_releases/2017-01-06-xvra-doedstad.md10
-rw-r--r--_music_releases/2018-06-30-xvra-absens.md11
-rw-r--r--_music_releases/2018-11-04-secauloruxsehi-fungi-noise.md10
-rw-r--r--_music_releases/2018-11-08-secauloruxsehi-rot.md10
-rw-r--r--_music_releases/2018-11-09-secauloruxsehi-aetheria.md10
-rw-r--r--_music_releases/2018-12-30-aaoth-forwards.md13
-rw-r--r--_music_releases/2019-01-07-spiral-materivm-through-woods-and-despair.md14
-rw-r--r--_music_releases/2019-01-12-aaoth-that-cant-be.md10
-rw-r--r--_music_releases/2019-02-08-secauloruxsehi-complex-neon-chamber.md34
-rw-r--r--_music_releases/2019-02-28-aaoth-lookthrough.md10
-rw-r--r--_music_releases/2019-03-31-aaoth-mind-collapse.md10
-rw-r--r--_music_releases/2019-04-22-aaoth-madnight.md12
-rw-r--r--_music_releases/2019-04-23-aaoth-sgti.md10
-rw-r--r--_music_releases/2019-05-10-aaoth-vortex-machines.md10
-rw-r--r--_music_releases/2019-05-20-aaoth-the-past.md10
-rw-r--r--_music_releases/2020-04-13-aaoth-massive-void.md10
-rw-r--r--_sass/main.scss45
-rw-r--r--haelsorisk.md10
-rw-r--r--music.md24
37 files changed, 498 insertions, 15 deletions
diff --git a/_config.yml b/_config.yml
index 1f827a6..942f917 100644
--- a/_config.yml
+++ b/_config.yml
@@ -9,6 +9,14 @@ exclude:
- README.md
- art/thumbs.sh
+collections:
+ music_releases:
+
+ music_projects:
+ output: true
+ permalink: /music/:title
+ sort_by: start_date
+
excerpt_separator: <!--more-->
defaults:
@@ -23,6 +31,11 @@ defaults:
layout: "post"
- scope:
+ path: "_music_projects"
+ values:
+ layout: "music-project"
+
+ - scope:
path: "assets/img"
values:
image: true
@@ -36,4 +49,3 @@ defaults:
path: "art/*/thumbs"
values:
thumbnail: true
-
diff --git a/_layouts/music-project.html b/_layouts/music-project.html
new file mode 100644
index 0000000..b21b269
--- /dev/null
+++ b/_layouts/music-project.html
@@ -0,0 +1,70 @@
+---
+layout: default
+---
+
+<!-- TODO: add physical release links-->
+<!-- TODO: prettify release display -->
+<!-- TODO: add project logos -->
+<!-- TODO: add sound for albums that aren't available on bandcamp -->
+
+<div class="music-project">
+
+ <div class="music-project-sidebar">
+ <h1>{{ page.title }}</h1>
+ <img id="logo"
+ {%- if page.logo -%}
+ src="{{ page.logo }}"
+ {%- else -%}
+ src="/assets/img/{{ page.title }}-logo.png"
+ {%- endif -%}
+ alt="{{ page.title }} logo">
+ <p>{{ page.start_date | date_to_string }}&ndash;
+ {%- if page.end_date -%}
+ {{ page.end_date | date_to_string }}
+ {%- else -%}
+ &hellip;
+ {%- endif -%}
+ {%- if page.status -%}
+ &ensp;({{ page.status }})
+ {%- endif -%}
+ </p>
+ <p>tags: {{ page.tags | join: ", " }}</p>
+ </div>
+
+ <div class="music-project-info">
+
+ {{ page.content | markdownify }}
+
+ <div class="music-releases">
+ <h2>releases</h2>
+
+ {%- assign releases = site.music_releases | where: "author", page.title
+ | group_by_exp: "item", "item.date | date: '%Y'" -%}
+ {% for item in releases %}
+ <h3>{{ item.name }}<!--year--></h3>
+ {%- for release in item.items -%}
+ <div class="music-release">
+ <h4>
+ {{ release.title }} ({{ release.type }})
+ {%- if release.bandcamp -%}
+ <a href="{{ release.bandcamp }}"
+ title="listen on bandcamp">
+ <img src="/assets/img/bandcamp-icon.png"
+ alt="listen on bandcamp"
+ width="24px" height="24px">
+ </a>
+ {%- endif -%}
+ </h4>
+
+ <p>released {{ release.date | date_to_string }}
+ | <em>{{ release.style }}</em>
+ </p>
+
+ {{ release.content }}
+
+ </div>
+ {%- endfor -%}
+ {%- endfor -%}
+ </div>
+ </div>
+</div>
diff --git a/_music_projects/aaock-morth.md b/_music_projects/aaock-morth.md
new file mode 100644
index 0000000..fa2de20
--- /dev/null
+++ b/_music_projects/aaock-morth.md
@@ -0,0 +1,10 @@
+---
+title: aaock-morth
+start_date: 06.11.2015
+status: stalled
+description: ambient related to voices and obscure sounds
+roles: samples mixing mastering
+tags: ambient dark&nbsp;ambient
+---
+
+abstract ambient project about lack of point in human speech.
diff --git a/_music_projects/aaoth.md b/_music_projects/aaoth.md
new file mode 100644
index 0000000..d6f2e5d
--- /dev/null
+++ b/_music_projects/aaoth.md
@@ -0,0 +1,10 @@
+---
+title: aaoth
+other: true
+start_date: 30.12.2018
+description: self-titled project for experiments.
+tags: experimental no&nbsp;music electronic
+logo: /assets/img/aaoth-music-logo.png
+---
+
+personal experiments and sound studies.
diff --git a/_music_projects/akpngims.md b/_music_projects/akpngims.md
new file mode 100644
index 0000000..886bc90
--- /dev/null
+++ b/_music_projects/akpngims.md
@@ -0,0 +1,10 @@
+---
+title: akpngims
+start_date: 13.07.2015
+status: stalled
+description: black ambient and noise
+roles: synths samples mixing mastering
+tags: black&nbsp;ambient noise
+---
+
+rough sounding obscure project.
diff --git a/_music_projects/lequalone.md b/_music_projects/lequalone.md
new file mode 100644
index 0000000..6c822d8
--- /dev/null
+++ b/_music_projects/lequalone.md
@@ -0,0 +1,11 @@
+---
+title: L=1
+start_date: 28.05.2015
+end_date: 02.11.2015
+status: closed
+description: dark synthwave and dark ambient
+roles: synths samples mixing mastering
+tags: dark&nbsp;synthwave dark&nbsp;ambient
+---
+
+debut project inspired by *diagnose: lebensgefahr*.
diff --git a/_music_projects/secauloruxsehi.md b/_music_projects/secauloruxsehi.md
new file mode 100644
index 0000000..46855e3
--- /dev/null
+++ b/_music_projects/secauloruxsehi.md
@@ -0,0 +1,9 @@
+---
+title: secauloruxse'i
+other: true
+start_date: 05.11.2017
+description: lojban-themed chiptune
+tags: chiptune
+---
+
+synth and chiptune project with name in lojban.
diff --git a/_music_projects/spiral-materivm.md b/_music_projects/spiral-materivm.md
new file mode 100644
index 0000000..ba995f9
--- /dev/null
+++ b/_music_projects/spiral-materivm.md
@@ -0,0 +1,10 @@
+---
+title: spiral materivm
+start_date: 25.02.2018
+description: primitive post-rock
+roles: all&nbsp;instruments vocals
+status: active
+tags: post-rock primitive&nbsp;rock
+---
+
+project about world perception from personal perspective.
diff --git a/_music_projects/xvra.md b/_music_projects/xvra.md
new file mode 100644
index 0000000..82b18a7
--- /dev/null
+++ b/_music_projects/xvra.md
@@ -0,0 +1,10 @@
+---
+title: xvra
+start_date: 22.02.2015
+status: active
+description: black metal
+tags: black&nbsp;metal dsbm
+roles: all&nbsp;instruments vocals
+---
+
+black metal project.
diff --git a/_music_releases/2015-05-28-lequalone-the-darkness.md b/_music_releases/2015-05-28-lequalone-the-darkness.md
new file mode 100644
index 0000000..e8ec19e
--- /dev/null
+++ b/_music_releases/2015-05-28-lequalone-the-darkness.md
@@ -0,0 +1,9 @@
+---
+author: L=1
+title: the darkness
+type: album
+date: 28-05-2015
+style: dark&nbsp;ambient
+---
+
+first dark ambient album.
diff --git a/_music_releases/2015-06-13-akpngims-enneorth.md b/_music_releases/2015-06-13-akpngims-enneorth.md
new file mode 100644
index 0000000..faa084b
--- /dev/null
+++ b/_music_releases/2015-06-13-akpngims-enneorth.md
@@ -0,0 +1,10 @@
+---
+author: akpngims
+title: enneorth
+type: album
+date: 13-06-2015
+style: black&nbsp;ambient
+bandcamp: https://haelsorisk.bandcamp.com/album/enneorth
+---
+
+all is error. the great mistake. irregular.
diff --git a/_music_releases/2015-09-12-lequalone-wastelands.md b/_music_releases/2015-09-12-lequalone-wastelands.md
new file mode 100644
index 0000000..add631c
--- /dev/null
+++ b/_music_releases/2015-09-12-lequalone-wastelands.md
@@ -0,0 +1,10 @@
+---
+author: L=1
+title: wastelands
+type: ep
+date: 12-09-2015
+style: dark&nbsp;ambient
+bandcamp: https://haelsorisk.bandcamp.com/album/wastelands
+---
+
+apocalyptic synthwave inspired by fallout game series.
diff --git a/_music_releases/2015-10-05-lequalone-chasm-of-psychosis.md b/_music_releases/2015-10-05-lequalone-chasm-of-psychosis.md
new file mode 100644
index 0000000..aa5eae6
--- /dev/null
+++ b/_music_releases/2015-10-05-lequalone-chasm-of-psychosis.md
@@ -0,0 +1,9 @@
+---
+author: L=1
+title: chasm of psychosis
+type: lp
+date: 05-10-2015
+style: dark&nbsp;synthwave
+---
+
+chaotic synthwave lp.
diff --git a/_music_releases/2015-10-26-lequalone-soul-ocean.md b/_music_releases/2015-10-26-lequalone-soul-ocean.md
new file mode 100644
index 0000000..f82b959
--- /dev/null
+++ b/_music_releases/2015-10-26-lequalone-soul-ocean.md
@@ -0,0 +1,10 @@
+---
+author: L=1
+title: soul ocean
+type: album
+date: 26-10-2015
+style: dark&nbsp;synthwave
+bandcamp: https://haelsorisk.bandcamp.com/album/soul-ocean
+---
+
+dark atmospheric synthwave.
diff --git a/_music_releases/2015-11-02-lequalone-youll-never-hear-me-again.md b/_music_releases/2015-11-02-lequalone-youll-never-hear-me-again.md
new file mode 100644
index 0000000..157a7ed
--- /dev/null
+++ b/_music_releases/2015-11-02-lequalone-youll-never-hear-me-again.md
@@ -0,0 +1,9 @@
+---
+author: L=1
+title: you'll never hear me again
+type: ep
+date: 02-11-2015
+style: dark&nbsp;ambient
+---
+
+ending ep with sample experiments.
diff --git a/_music_releases/2015-17-27-xvra-svartfeber.md b/_music_releases/2015-17-27-xvra-svartfeber.md
new file mode 100644
index 0000000..8f74793
--- /dev/null
+++ b/_music_releases/2015-17-27-xvra-svartfeber.md
@@ -0,0 +1,9 @@
+---
+author: xvra
+title: svartfeber
+type: demo
+date: 27-07-2015
+style: black&nbsp;metal raw&nbsp;black
+---
+
+debut demo with vocals recorded in nearby forest.
diff --git a/_music_releases/2016-08-22-xvra-save-me-from-the-life.md b/_music_releases/2016-08-22-xvra-save-me-from-the-life.md
new file mode 100644
index 0000000..a22aa96
--- /dev/null
+++ b/_music_releases/2016-08-22-xvra-save-me-from-the-life.md
@@ -0,0 +1,10 @@
+---
+author: xvra
+title: save me from the life
+type: demo
+date: 22-08-2016
+style: black&nbsp;metal raw&nbsp;black
+bandcamp: https://haelsorisk.bandcamp.com/album/save-me-from-the-life
+---
+
+second demo.
diff --git a/_music_releases/2016-16-18-aaock-morth-aateh-tgh-saaghth.md b/_music_releases/2016-16-18-aaock-morth-aateh-tgh-saaghth.md
new file mode 100644
index 0000000..f29b855
--- /dev/null
+++ b/_music_releases/2016-16-18-aaock-morth-aateh-tgh-saaghth.md
@@ -0,0 +1,10 @@
+---
+author: aaock-morth
+title: aate'h tgh'saaghth
+type: album
+date: 18-06-2016
+style: ambient abstract
+bandcamp: https://haelsorisk.bandcamp.com/album/aateh-tghsaaghth
+---
+
+it will be better if you don't know that.
diff --git a/_music_releases/2017-01-06-xvra-doedstad.md b/_music_releases/2017-01-06-xvra-doedstad.md
new file mode 100644
index 0000000..32ac445
--- /dev/null
+++ b/_music_releases/2017-01-06-xvra-doedstad.md
@@ -0,0 +1,10 @@
+---
+author: xvra
+title: doedstad
+type: demo
+date: 06-01-2017
+style: black&nbsp;metal raw&nbsp;black
+bandcamp: https://haelsorisk.bandcamp.com/album/doedstad
+---
+
+behold the silence.
diff --git a/_music_releases/2018-06-30-xvra-absens.md b/_music_releases/2018-06-30-xvra-absens.md
new file mode 100644
index 0000000..8a5db65
--- /dev/null
+++ b/_music_releases/2018-06-30-xvra-absens.md
@@ -0,0 +1,11 @@
+---
+author: xvra
+title: absens
+type: album
+date: 30-06-2018
+style: black&nbsp;metal raw&nbsp;black
+bandcamp: https://haelsorisk.bandcamp.com/album/absens
+---
+
+dedicated to the ultimate void that was the beginning
+and will be the end of out futile existence.
diff --git a/_music_releases/2018-11-04-secauloruxsehi-fungi-noise.md b/_music_releases/2018-11-04-secauloruxsehi-fungi-noise.md
new file mode 100644
index 0000000..de5f210
--- /dev/null
+++ b/_music_releases/2018-11-04-secauloruxsehi-fungi-noise.md
@@ -0,0 +1,10 @@
+---
+author: secauloruxse'i
+title: fungi-noise
+type: album
+date: 04-11-2018
+style: chiptune lo-fi synth
+bandcamp: https://aaoth.bandcamp.com/album/fungi-noise
+---
+
+fungi-related chiptune made with sunvox.
diff --git a/_music_releases/2018-11-08-secauloruxsehi-rot.md b/_music_releases/2018-11-08-secauloruxsehi-rot.md
new file mode 100644
index 0000000..15accce
--- /dev/null
+++ b/_music_releases/2018-11-08-secauloruxsehi-rot.md
@@ -0,0 +1,10 @@
+---
+author: secauloruxse'i
+title: rot
+type: album
+date: 08-11-2018
+style: synthwave
+bandcamp: https://aaoth.bandcamp.com/album/rot
+---
+
+electronic variations on riffs created by my friend.
diff --git a/_music_releases/2018-11-09-secauloruxsehi-aetheria.md b/_music_releases/2018-11-09-secauloruxsehi-aetheria.md
new file mode 100644
index 0000000..6919e0a
--- /dev/null
+++ b/_music_releases/2018-11-09-secauloruxsehi-aetheria.md
@@ -0,0 +1,10 @@
+---
+author: secauloruxse'i
+title: aetheria
+type: album
+date: 09-11-2018
+style: minimal&nbsp;synth
+bandcamp: https://aaoth.bandcamp.com/album/aetheria
+---
+
+trilogy about mysterious land of pure art.
diff --git a/_music_releases/2018-12-30-aaoth-forwards.md b/_music_releases/2018-12-30-aaoth-forwards.md
new file mode 100644
index 0000000..c0a9f9c
--- /dev/null
+++ b/_music_releases/2018-12-30-aaoth-forwards.md
@@ -0,0 +1,13 @@
+---
+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
+---
+
+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-07-spiral-materivm-through-woods-and-despair.md b/_music_releases/2019-01-07-spiral-materivm-through-woods-and-despair.md
new file mode 100644
index 0000000..d679b42
--- /dev/null
+++ b/_music_releases/2019-01-07-spiral-materivm-through-woods-and-despair.md
@@ -0,0 +1,14 @@
+---
+author: spiral materivm
+title: through woods and despair
+type: album
+date: 07-01-2019
+style: post-rock
+bandcamp: https://sprial-materivm.bandcamp.com/album/through-woods-and-despair
+---
+
+a story about mind (or mad) journeys.
+an alternative continuation of past works.
+
+written in may-july 2018.
+recorded in august-december 2018.
diff --git a/_music_releases/2019-01-12-aaoth-that-cant-be.md b/_music_releases/2019-01-12-aaoth-that-cant-be.md
new file mode 100644
index 0000000..2bfd71e
--- /dev/null
+++ b/_music_releases/2019-01-12-aaoth-that-cant-be.md
@@ -0,0 +1,10 @@
+---
+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
+---
+
+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
new file mode 100644
index 0000000..c760c2a
--- /dev/null
+++ b/_music_releases/2019-02-08-secauloruxsehi-complex-neon-chamber.md
@@ -0,0 +1,34 @@
+---
+author: secauloruxse'i
+title: complex neon chamber
+type: track
+date: 08-02-2019
+style: idm no&nbsp;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_releases/2019-02-28-aaoth-lookthrough.md b/_music_releases/2019-02-28-aaoth-lookthrough.md
new file mode 100644
index 0000000..33d757d
--- /dev/null
+++ b/_music_releases/2019-02-28-aaoth-lookthrough.md
@@ -0,0 +1,10 @@
+---
+author: aaoth
+title: lookthrough
+type: track
+date: 28-02-2019
+style: eai abstract
+bandcamp: https://aaoth.bandcamp.com/track/lookthrough
+---
+
+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
new file mode 100644
index 0000000..8a33f9c
--- /dev/null
+++ b/_music_releases/2019-03-31-aaoth-mind-collapse.md
@@ -0,0 +1,10 @@
+---
+author: aaoth
+title: massive void
+type: track
+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_releases/2019-04-22-aaoth-madnight.md b/_music_releases/2019-04-22-aaoth-madnight.md
new file mode 100644
index 0000000..5861be2
--- /dev/null
+++ b/_music_releases/2019-04-22-aaoth-madnight.md
@@ -0,0 +1,12 @@
+---
+author: aaoth
+title: madnight
+type: track
+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_releases/2019-04-23-aaoth-sgti.md b/_music_releases/2019-04-23-aaoth-sgti.md
new file mode 100644
index 0000000..ecae971
--- /dev/null
+++ b/_music_releases/2019-04-23-aaoth-sgti.md
@@ -0,0 +1,10 @@
+---
+author: aaoth
+title: mind collapse
+type: track
+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_releases/2019-05-10-aaoth-vortex-machines.md b/_music_releases/2019-05-10-aaoth-vortex-machines.md
new file mode 100644
index 0000000..4099a77
--- /dev/null
+++ b/_music_releases/2019-05-10-aaoth-vortex-machines.md
@@ -0,0 +1,10 @@
+---
+author: aaoth
+title: sgti
+type: track
+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_releases/2019-05-20-aaoth-the-past.md b/_music_releases/2019-05-20-aaoth-the-past.md
new file mode 100644
index 0000000..10898dc
--- /dev/null
+++ b/_music_releases/2019-05-20-aaoth-the-past.md
@@ -0,0 +1,10 @@
+---
+author: aaoth
+title: vortex machines
+type: track
+date: 10-05-2019
+style: electronic improvisation
+bandcamp: https://aaoth.bandcamp.com/track/vortex-machines
+---
+
+apocalyptic electronic improvisation using sunvox.
diff --git a/_music_releases/2020-04-13-aaoth-massive-void.md b/_music_releases/2020-04-13-aaoth-massive-void.md
new file mode 100644
index 0000000..55600b4
--- /dev/null
+++ b/_music_releases/2020-04-13-aaoth-massive-void.md
@@ -0,0 +1,10 @@
+---
+author: aaoth
+title: the past
+type: track
+date: 20-05-2019
+style: eai lo-fi
+bandcamp: https://aaoth.bandcamp.com/track/the-past
+---
+
+atmospheric lo-fi improvisation.
diff --git a/_sass/main.scss b/_sass/main.scss
index f72d3e3..8190378 100644
--- a/_sass/main.scss
+++ b/_sass/main.scss
@@ -44,6 +44,10 @@ a:hover {
font-weight: 500;
}
+.faint {
+ color: $color-main-grey;
+}
+
nav {
display: flex;
position: fixed;
@@ -93,14 +97,14 @@ ul {
.about {
display: flex;
flex-direction: row;
- img#avatar {
+ #avatar {
border-radius: 100%;
height: 128px;
}
- .about-sidebar {
+ &-sidebar {
flex: 23%;
}
- .about-links {
+ &-links {
margin-top: 1em;
.link-icon {
width: 32px;
@@ -111,7 +115,7 @@ ul {
bottom: 0.75em;
}
}
- .about-info {
+ &-info {
width: 100%;
p:first-child {
margin-top: 0;
@@ -142,11 +146,14 @@ ul {
border-radius: 1em;
}
}
-}
-.post-page {
- margin-bottom: 10px;
- .post-header {
+ &-page {
+ margin-bottom: 10px;
+ ul {
+ padding-left: 10px;
+ }
+ }
+ &-header {
margin-bottom: 2em;
ul {
display: flex;
@@ -162,10 +169,6 @@ ul {
}
}
}
-
- ul {
- padding-left: 10px;
- }
}
.art-menu {
@@ -232,6 +235,21 @@ ul {
}
}
+.music-project {
+ display: flex;
+
+ &-sidebar {
+ flex: 25%;
+ #logo {
+ width: 100%;
+ }
+ }
+
+ &-info {
+ width: 100%;
+ }
+}
+
blockquote {
margin: 0.5em;
@@ -341,6 +359,9 @@ footer {
code {
background: $color-darker-grey;
}
+ .faint {
+ color: $color-dark-grey;
+ }
.art-menu .art-category .link-mask {
background: $color-dark-bg;
color: $color-main-bg;
diff --git a/haelsorisk.md b/haelsorisk.md
new file mode 100644
index 0000000..5197a97
--- /dev/null
+++ b/haelsorisk.md
@@ -0,0 +1,10 @@
+---
+title: hälsorisk
+---
+
+# hälsorisk
+
+this is <span class="faint">non</span>community
+of truely free <span class="faint">anti</span>art.
+
+vi väntar inte dig tillbaka.
diff --git a/music.md b/music.md
index 4b66683..b87cc88 100644
--- a/music.md
+++ b/music.md
@@ -1,6 +1,26 @@
---
title: music
-permalink: /music/
+layout: default
---
-here will be an overview of my musical projects.
+## [hälsorisk][1]
+
+**hälsorisk** (swedish for *health hazard*) is small web-label focused on dark
+underground music. here's a list of projects in which i took part:
+
+{%- assign haelsorisk_projects = site.music_projects | where: "other", nil -%}
+
+{% for h_project in haelsorisk_projects %}
+* [{{ h_project.title }}]({{ h_project.url }})
+-- {{ h_project.description }} ({{ h_project.roles | split: " " | join: ", " }})
+{% endfor %}
+
+[1]:/haelsorisk
+
+## other projects
+
+{%- assign other_projects = site.music_projects | where: "other", true -%}
+
+{% for project in other_projects %}
+* [{{ project.title }}]({{ project.url }}) -- {{ project.description }}
+{% endfor %}