aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--_includes/music-projects-list.html2
-rw-r--r--music.md14
2 files changed, 5 insertions, 11 deletions
diff --git a/_includes/music-projects-list.html b/_includes/music-projects-list.html
index d9a8595..2e713fe 100644
--- a/_includes/music-projects-list.html
+++ b/_includes/music-projects-list.html
@@ -1,5 +1,5 @@
<ul class="music-project-list">
-{% for project in projects %}
+{% for project in include.projects %}
<li class="music-project-list-item">
<a class="music-project-list-item-mask"
href="{{ project.url }}">
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 %}
<div class="haelsorisk-projects-list">
-{% include music-projects-list.html %}
+{% include music-projects-list.html projects=haelsorisk_projects%}
</div>
[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 %}
<div class="other-projects-list">
-{% include music-projects-list.html %}
+{% include music-projects-list.html projects=other_projects %}
</div>