The making of a publication for the 2020 edition of the AMRO festival organised by Servus. (Alice & Manetta are working on this.)
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

42 lines
929 B

4 years ago
#!/usr/bin/env python
# -*- coding: utf-8 -*- #
# Pelican's documentation page on the pelicanconf.py
# https://docs.getpelican.com/en/stable/settings.html
4 years ago
AUTHOR = 'Alice & Manetta'
SITENAME = 'AMRO 2020 Publication'
SITEURL = 'https://vvvvvvaria.org/amro/'
4 years ago
TIMEZONE = 'Europe/Amsterdam'
DEFAULT_DATE = 'fs'
4 years ago
DEFAULT_LANG = 'en'
# Feed settings
FEED_DOMAIN = SITEURL
RSS_FEED_SUMMARY_ONLY = False
# RSS feeds
FEED_RSS = 'feeds/feed.rss.xml'
# FEED_ALL_RSS = 'feeds/all.rss.xml' # same as above?
CATEGORY_FEED_RSS = 'feeds/category/{slug}'
AUTHOR_FEED_RSS = None
# Atom feed (disabled)
4 years ago
FEED_ALL_ATOM = None
CATEGORY_FEED_ATOM = None
TRANSLATION_FEED_ATOM = None
AUTHOR_FEED_ATOM = None
PATH = 'content'
STATIC_PATHS = [ 'images', 'favicon.ico' ]
4 years ago
THEME = 'themes/basic'
THEME_STATIC_DIR = 'theme'
4 years ago
DEFAULT_PAGINATION = 10
4 years ago
# Uncomment following line if you want document-relative URLs when developing
RELATIVE_URLS = True