aboutsummaryrefslogtreecommitdiffstats
path: root/_includes/music-project-release-by-year.html
diff options
context:
space:
mode:
authorla-ninpre <leobrekalini@gmail.com>2021-08-26 19:07:45 +0300
committerla-ninpre <leobrekalini@gmail.com>2021-08-26 19:20:04 +0300
commitd548d4a900024352a033e2b4523bb7f272b26a6f (patch)
tree1d7bd088eeefef367cb5cac026d08a31c01716f7 /_includes/music-project-release-by-year.html
parent7ac5dbeb4f9329dbd75e42c800b8afc8b58d552d (diff)
parentaf529b0371bfe9fa2039fb6bce5deadbb7c0c76b (diff)
downloadaaoth.xyz-d548d4a900024352a033e2b4523bb7f272b26a6f.tar.gz
aaoth.xyz-d548d4a900024352a033e2b4523bb7f272b26a6f.zip
merge branch 'music-projects'
music info is messed up now, but kinda works
Diffstat (limited to '_includes/music-project-release-by-year.html')
-rw-r--r--_includes/music-project-release-by-year.html16
1 files changed, 16 insertions, 0 deletions
diff --git a/_includes/music-project-release-by-year.html b/_includes/music-project-release-by-year.html
new file mode 100644
index 0000000..cdc4675
--- /dev/null
+++ b/_includes/music-project-release-by-year.html
@@ -0,0 +1,16 @@
+{%- assign releases = include.releases %}
+{%- assign print_author = include.print_author %}
+<div class="music-project-release-list">
+ <h2>{{ include.title }}</h2>
+
+ {% for year_group in releases %}
+ <div class="music-project-release-by_year"
+ id="{{ year_group.name }}">
+ <h3 class="music-project-release-year"
+ id="{{ year_group.name }}">{{ year_group.name }}</h3>
+ {%- for release in year_group.items -%}
+ {% include music-project-release-info.html release=release print_author=print_author %}
+ {%- endfor -%}
+ </div>
+ {%- endfor -%}
+</div>