sleeker page URLs
[Ultimately_Untrue_Thought.git] / pelicanconf.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*- #
3 from __future__ import unicode_literals
4
5 AUTHOR = 'M. Taylor Saotome-Westlake'
6 SITENAME = 'The Scintillating But Ultimately Untrue Thought'
7 SITEURL = 'http://unremediatedgender.space'
8
9 PATH = 'content'
10
11 TIMEZONE = 'America/New_York'
12
13 DEFAULT_LANG = 'en'
14
15 # Feed generation is usually not desired when developing
16 FEED_ALL_ATOM = None
17 CATEGORY_FEED_ATOM = None
18 TRANSLATION_FEED_ATOM = None
19 AUTHOR_FEED_ATOM = None
20 AUTHOR_FEED_RSS = None
21
22 # Blogroll
23 LINKS = (
24     ('On the Science of Changing Sex', "https://sillyolme.wordpress.com/"),
25     ('Third Way Trans', "https://thirdwaytrans.com/"),
26 )
27
28 DEFAULT_PAGINATION = 12
29
30 WITH_FUTURE_DATES = False
31
32 FILENAME_METADATA = '(?P<slug>.*)'
33 ARTICLE_URL = '{date:%Y}/{date:%b}/{slug}/'
34 ARTICLE_SAVE_AS = '{date:%Y}/{date:%b}/{slug}/index.html'
35 PAGE_URL = '{slug}/'
36 PAGE_SAVE_AS = '{slug}/index.html'
37
38 THEME = 'theme'
39
40 # Uncomment following line if you want document-relative URLs when developing
41 RELATIVE_URLS = True