trying out the events calendar plugin

This commit is contained in:
rscmbbng 2017-10-06 11:57:31 +02:00
parent e0ee0a5b28
commit 387fd79de9
3 changed files with 8 additions and 15 deletions

View File

@ -3,11 +3,10 @@ Date: 2017-10-01
Category: curriculum
Slug: sounduncloud
lang: nl
curriculum: True
event-start: 2017-11-15 12:00
event-duration: 4h
location: Gouwstraat 3, Rotterdam
summary: Soundcloud is onlangs op het nippertje gered van fallisement. Dit online platform waar allerhande mixes en genres zoals 'soundcloud rap' zijn ontstaan is nog echter niet buiten gevaar. In deze korte workshop gericht op informele en doe-het-zelf archivering helpen we je al je mixes en collecties te downloaden m.b.h vrije software. De gearchiveerde resultaten publiceren vervolgens als een micro-SD mixtape.
![Offline listening for days!](/images/offline_listening.png)

View File

@ -20,24 +20,14 @@ TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
AUTHOR_FEED_RSS = None
# Blogroll
#LINKS = (('Pelican', 'http://getpelican.com/'),
# ('Python.org', 'http://python.org/'),
# ('Jinja2', 'http://jinja.pocoo.org/'),
# ('You can modify those links in your config file', '#'),)
# Social widget
#SOCIAL = (('You can add links in your config file', '#'),
# ('Another social link', '#'),)
DEFAULT_PAGINATION = 25
# Uncomment following line if you want document-relative URLs when developing
#RELATIVE_URLS = True
PLUGIN_PATHS = ['./plugins']
PLUGINS = ['extract_toc', 'i18n_subsites', 'summary']
MD_EXTENSIONS = ['codehilite','extra','smarty', 'toc']
PLUGINS = ['extract_toc', 'i18n_subsites', 'events', 'summary']
MD_EXTENSIONS = ['codehilite','extra','toc']
STATIC_PATHS = ['extra', 'images', 'pdfs']
EXTRA_PATH_METADATA = {
@ -48,6 +38,8 @@ EXTRA_PATH_METADATA = {
THEME = 'themes/cetcat'
#SUMMARY_USE_FIRST_PARAGRAPH = True
# ARTICLE_LANG_URL = '{slug}-{lang}.html'
I18N_SUBSITES = {
@ -64,4 +56,6 @@ lang_siteurls = {
'nl': '/',
'en': '/en/'
}
PLUGIN_EVENTS={
'ics_fname':'calendar.ics'
}