diff options
| author | la-ninpre <leobrekalini@gmail.com> | 2021-08-20 22:39:54 +0300 |
|---|---|---|
| committer | la-ninpre <leobrekalini@gmail.com> | 2021-08-20 22:39:54 +0300 |
| commit | a7a43fa5e99ebda7905604306ec2cf0b03c425f7 (patch) | |
| tree | b64934abbfe55d8a177fbda0987329d0b395d6f5 /music.md | |
| parent | 5dade15bc9063352cd711bec0b7220924d2fd13d (diff) | |
| download | aaoth.xyz-a7a43fa5e99ebda7905604306ec2cf0b03c425f7.tar.gz aaoth.xyz-a7a43fa5e99ebda7905604306ec2cf0b03c425f7.zip | |
make music project list page look like art menu
also snippet that makes art menu is now separated as mixin (very
powerful thing, btw).
Diffstat (limited to 'music.md')
| -rw-r--r-- | music.md | 34 |
1 files changed, 20 insertions, 14 deletions
@@ -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 %} +<div class="haelsorisk-projects-list"> +{% include music-projects-list.html %} +</div> [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 %} +<div class="other-projects-list"> +{% include music-projects-list.html %} +</div> |
