From 9dcaf807a98362a708136284534ee343dd3f2742 Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Thu, 19 Aug 2021 00:22:00 +0300 Subject: add info about music projects much of stuff included here is subject to change. --- music.md | 24 ++++++++++++++++++++++-- 1 file changed, 22 insertions(+), 2 deletions(-) (limited to 'music.md') 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 %} -- cgit v1.2.3 From a7a43fa5e99ebda7905604306ec2cf0b03c425f7 Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Fri, 20 Aug 2021 22:39:54 +0300 Subject: make music project list page look like art menu also snippet that makes art menu is now separated as mixin (very powerful thing, btw). --- music.md | 34 ++++++++++++++++++++-------------- 1 file changed, 20 insertions(+), 14 deletions(-) (limited to 'music.md') diff --git a/music.md b/music.md index b87cc88..b8d3408 100644 --- a/music.md +++ b/music.md @@ -1,26 +1,32 @@ --- title: music -layout: default +permalink: /music/ --- -## [hälsorisk][1] +# [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: +**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 -%} +{% comment %} + haelsorisk projects +{% endcomment %} +{% assign 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 %} +
+{% include music-projects-list.html %} +
[1]:/haelsorisk -## other projects +# other projects -{%- assign other_projects = site.music_projects | where: "other", true -%} +{% comment %} + other projects +{% endcomment %} +{% assign projects = site.music_projects | where: "other", true %} -{% for project in other_projects %} -* [{{ project.title }}]({{ project.url }}) -- {{ project.description }} -{% endfor %} +
+{% include music-projects-list.html %} +
-- cgit v1.2.3 From ea060499471c26155d4b7a16a4c670dc74503f4d Mon Sep 17 00:00:00 2001 From: la-ninpre Date: Mon, 23 Aug 2021 20:03:19 +0300 Subject: make use of include.variable to make project list --- music.md | 14 ++++---------- 1 file changed, 4 insertions(+), 10 deletions(-) (limited to 'music.md') diff --git a/music.md b/music.md index b8d3408..42ea855 100644 --- a/music.md +++ b/music.md @@ -9,24 +9,18 @@ permalink: /music/ underground music. here's a list of projects in which i took part: -{% comment %} - haelsorisk projects -{% endcomment %} -{% assign projects = site.music_projects | where: "other", nil %} +{% assign haelsorisk_projects = site.music_projects | where: "other", nil %}
-{% include music-projects-list.html %} +{% include music-projects-list.html projects=haelsorisk_projects%}
[1]:/haelsorisk # other projects -{% comment %} - other projects -{% endcomment %} -{% assign projects = site.music_projects | where: "other", true %} +{% assign other_projects = site.music_projects | where: "other", true %}
-{% include music-projects-list.html %} +{% include music-projects-list.html projects=other_projects %}
-- cgit v1.2.3 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. --- music.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'music.md') 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