2 # -*- coding: utf-8 -*- #
3 from __future__ import unicode_literals
5 AUTHOR = 'M. Taylor Saotome-Westlake'
6 SITENAME = 'The Scintillating But Ultimately Untrue Thought'
7 SITEURL = 'http://unremediatedgender.space'
11 TIMEZONE = 'America/Los_Angeles'
15 # Feed generation is usually not desired when developing
17 CATEGORY_FEED_ATOM = None
18 TRANSLATION_FEED_ATOM = None
19 AUTHOR_FEED_ATOM = None
20 AUTHOR_FEED_RSS = None
24 ('On the Science of Changing Sex', "https://sillyolme.wordpress.com/"),
25 ('Survey Anon\'s Gender Blog', "https://surveyanon.wordpress.com/"),
26 ('Crossdreamers', "http://www.crossdreamers.com/"),
27 ('Third Way Trans', "https://thirdwaytrans.com/"),
28 ('Miranda Yardley', "http://mirandayardley.com/en/"),
29 ('Trans Blog', "http://transblog.grieve-smith.com/"),
30 ('Social Justice Wizard', "https://medium.com/@rftbk"),
31 ('Thing of Things', "http://thingofthings.wordpress.com/"),
32 ('Paula Wright', "https://porlawright.com/"),
33 ('Culturally Bound Gender', "https://culturallyboundgender.wordpress.com/"),
34 ('Gender Contrary', "http://neat-dyke.tumblr.com/"),
35 ('My Only Path to Power', "https://transwidow.wordpress.com/"),
36 ('Sex and Gender: A Beginner\'s Guide', "https://sexandgenderintro.com/"),
39 DEFAULT_PAGINATION = 20
41 WITH_FUTURE_DATES = False
43 FILENAME_METADATA = '(?P<slug>.*)'
44 ARTICLE_URL = '{date:%Y}/{date:%b}/{slug}/'
45 ARTICLE_SAVE_AS = '{date:%Y}/{date:%b}/{slug}/index.html'
46 CATEGORY_URL = 'category/{slug}/'
47 CATEGORY_SAVE_AS = 'category/{slug}/index.html'
48 TAG_URL = 'tag/{slug}/'
49 TAG_SAVE_AS = 'tag/{slug}/index.html'
51 PAGE_SAVE_AS = '{slug}/index.html'
52 AUTHOR_URL = 'author/{slug}/'
53 AUTHOR_SAVE_AS = 'author/{slug}/index.html'
54 ARCHIVES_URL = 'archives'
55 ARCHIVES_SAVE_AS = 'archives/index.html'
56 YEAR_ARCHIVE_SAVE_AS = '{date:%Y}/index.html'
57 MONTH_ARCHIVE_SAVE_AS = '{date:%Y}/{date:%b}/index.html'
59 PAGINATION_PATTERNS = (
60 (1, '{base_name}/', '{base_name}/index.html'),
61 (2, '{base_name}/page/{number}/', '{base_name}/page/{number}/index.html'),
66 PLUGIN_PATHS = ["plugins"]
67 PLUGINS = ["tag_cloud", "simple_footnotes", "page_hierarchy"]
70 TAG_CLOUD_SORTING = "alphabetically"
72 # Uncomment following line if you want document-relative URLs when developing