fix: ics formatting

This commit is contained in:
Cory Dransfeldt 2024-08-06 13:46:59 -07:00
parent c9156f2346
commit 82e2fa887a
No known key found for this signature in database
5 changed files with 111 additions and 17 deletions

View file

@ -3,16 +3,4 @@ layout: null
eleventyExcludeFromCollections: true
permalink: "/music/releases.ics"
---
BEGIN:VCALENDAR
VERSION:2.0
CALSCALE:GREGORIAN
PRODID:-//coryd.dev//Album Releases//EN
{%- for album in albumReleases %}
BEGIN:VEVENT
SUMMARY:Release: {{ album.artist }} / {{ album.title }}
DTSTART;VALUE=DATE:{{ album.date }}
DESCRIPTION:Check out this new album release: {{ album.url }}
URL;VALUE=URI:{{ album.url }}
END:VEVENT
{%- endfor -%}
END:VCALENDAR
{{ collections.albumReleasesCalendar }}