66e8de4c35de43f523bdb1aba9ccced4ffc20658
[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/Los_Angeles'
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     ('Crossdreamers', "http://www.crossdreamers.com/"),
26     ('Third Way Trans', "https://thirdwaytrans.com/"),
27     ('Trans Blog', "http://transblog.grieve-smith.com/"),
28     ('Social Justice Wizard', "https://medium.com/@rftbk"),
29     ('Thing of Things', "http://thingofthings.wordpress.com/"),
30     ('Paula Wright', "https://porlawright.com/"),
31     ('Culturally Bound Gender', "https://culturallyboundgender.wordpress.com/"),
32     ('My Only Path to Power', "https://transwidow.wordpress.com/"),
33 )
34
35 DEFAULT_PAGINATION = 12
36
37 WITH_FUTURE_DATES = False
38
39 FILENAME_METADATA = '(?P<slug>.*)'
40 ARTICLE_URL = '{date:%Y}/{date:%b}/{slug}/'
41 ARTICLE_SAVE_AS = '{date:%Y}/{date:%b}/{slug}/index.html'
42 CATEGORY_URL = 'category/{slug}/'
43 CATEGORY_SAVE_AS = 'category/{slug}/index.html'
44 TAG_URL = 'tag/{slug}/'
45 TAG_SAVE_AS = 'tag/{slug}/index.html'
46 PAGE_URL = '{slug}/'
47 PAGE_SAVE_AS = '{slug}/index.html'
48 AUTHOR_URL = 'author/{slug}/'
49 AUTHOR_SAVE_AS = 'author/{slug}/index.html'
50 ARCHIVES_URL = 'archives'
51 ARCHIVES_SAVE_AS = 'archives/index.html'
52
53 PAGINATION_PATTERNS = (
54     (1, '{base_name}/', '{base_name}/index.html'),
55     (2, '{base_name}/page/{number}/', '{base_name}/page/{number}/index.html'),
56 )
57
58 THEME = 'theme'
59
60 # Uncomment following line if you want document-relative URLs when developing
61 RELATIVE_URLS = True