help
Content
Program
To add an event create a content/program/<event-name>/index.md
markdown file.
---
title: "gala#123"
date: 2001-09-11
artists: [
roland panzer,
archibald düsenberg
]
collabs: [
roy cohen + artist-c + someone,
aa + bb
]
location: "echoraum"
tags: [gala]
photos: Bon Alog
---
Some extra text for this event.
Open doors 19:00
Start 19:30
title
: Event titledate
: Event dateartists
: List of (solo) artistscollabs
: List of artist collaborations (separated by+
)location
: Either id of a location stored indata/locations.json
data file or the full addresstags
: List of tags used to generate taxonomy lists (fe:[gala]
or[export]
)photos
: Name of this events photographeronline
: Set this to true if it is an online event
Image files
Image files (jpg) placed into a program directory will automatically resized and shown in the gallery of an event.
Audio files
Audio files (wav, mp3, ogg, flac) placed into a program directory will automatically get listed as links on a event pages.
Artists
To add an artist create a content/artist/<artist-name>/index.md
markdown file.
---
title: "archibald düsenberg"
links: [https://düsenberg.at, https://soundcloud.com/duesenberg]
email: [archibald@düsenberg.at]
aliases: [düsenberg]
---
Some extra text for this artist.
title
: Full name of the artistlinks
: List of links to artists website(s)aliases
: List of aliases this artists will aslo be availableemail
: Email address of the artist
Be aware that changing an artists name removes the relationship to events.
Locations
List of locations reside in a json data file data/locations.json. With an locations entry you can just use the id of the location for the program/location field which inserts the address and url automatically.
"echoraum": {
"name": "Echoraum",
"address": "Sechshauser Straße 66, 1150 Wien",
"url": "https://echoraum.at"
},
Deploy
Updates to the master branch of the repository gets automatically build and deployed once a day (00:00). To manually deploy go to the actions tab and hit the Run workflow button. Visit velak.klingt.org/version to check the currently deployed version.