feat: album releases calendar
This commit is contained in:
parent
07c7bdec24
commit
c9156f2346
4 changed files with 27 additions and 3 deletions
6
_headers
6
_headers
|
@ -27,6 +27,12 @@
|
|||
/blogroll.opml
|
||||
Content-Disposition: attachment; filename=cory-dransfeldt-blogroll.opml
|
||||
|
||||
/music/releases.ics
|
||||
Content-Type: text/calendar
|
||||
Cache-Control: public, max-age=0, must-revalidate
|
||||
Access-Control-Allow-Origin: *
|
||||
Content-Disposition: inline; filename="releases.ics"
|
||||
|
||||
/*
|
||||
Content-Security-Policy: upgrade-insecure-requests; block-all-mixed-content;
|
||||
X-Frame-Options: DENY
|
||||
|
|
4
package-lock.json
generated
4
package-lock.json
generated
|
@ -1,12 +1,12 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "21.4.12",
|
||||
"version": "21.5.0",
|
||||
"lockfileVersion": 3,
|
||||
"requires": true,
|
||||
"packages": {
|
||||
"": {
|
||||
"name": "coryd.dev",
|
||||
"version": "21.4.12",
|
||||
"version": "21.5.0",
|
||||
"license": "MIT",
|
||||
"dependencies": {
|
||||
"@cdransf/api-text": "^1.4.0",
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "coryd.dev",
|
||||
"version": "21.4.12",
|
||||
"version": "21.5.0",
|
||||
"description": "The source for my personal site. Built using 11ty (and other tools).",
|
||||
"type": "module",
|
||||
"scripts": {
|
||||
|
|
18
src/pages/feeds/releases.liquid
Normal file
18
src/pages/feeds/releases.liquid
Normal file
|
@ -0,0 +1,18 @@
|
|||
---
|
||||
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
|
Reference in a new issue