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 ('Trans Blog', "http://transblog.grieve-smith.com/"),
28 ('The New Thoughtcrime', "https://newthoughtcrime.com/"),
29 ('Culturally Bound Gender', "https://culturallyboundgender.wordpress.com/"),
30 ('The Trans Widow', "http://thetranswidow.com/"),
31 ('Sex and Gender: A Beginner\'s Guide', "https://sexandgenderintro.com/"),
32 ('Female Sexual Inversion', "https://femalesexualinversion.blogspot.com/"),
33 ('Kathleen Stock', "https://kathleenstock.substack.com/"),
34 ('Pasha\'s Office ', "https://pashasoffice.blogspot.com/"),
37 DEFAULT_PAGINATION = 20
39 WITH_FUTURE_DATES = False
41 FILENAME_METADATA = '(?P<slug>.*)'
42 ARTICLE_URL = '{date:%Y}/{date:%b}/{slug}/'
43 ARTICLE_SAVE_AS = '{date:%Y}/{date:%b}/{slug}/index.html'
44 CATEGORY_URL = 'category/{slug}/'
45 CATEGORY_SAVE_AS = 'category/{slug}/index.html'
46 TAG_URL = 'tag/{slug}/'
47 TAG_SAVE_AS = 'tag/{slug}/index.html'
49 PAGE_SAVE_AS = '{slug}/index.html'
50 AUTHOR_URL = 'author/{slug}/'
51 AUTHOR_SAVE_AS = 'author/{slug}/index.html'
52 ARCHIVES_URL = 'archives'
53 ARCHIVES_SAVE_AS = 'archives/index.html'
54 YEAR_ARCHIVE_SAVE_AS = '{date:%Y}/index.html'
55 MONTH_ARCHIVE_SAVE_AS = '{date:%Y}/{date:%b}/index.html'
57 PAGINATION_PATTERNS = (
58 (1, '{base_name}/', '{base_name}/index.html'),
59 (2, '{base_name}/page/{number}/', '{base_name}/page/{number}/index.html'),
64 PLUGIN_PATHS = ["plugins"]
65 PLUGINS = ["tag_cloud", "simple_footnotes", "page_hierarchy"]
68 TAG_CLOUD_SORTING = "alphabetically"
70 # Uncomment following line if you want document-relative URLs when developing