2 # -*- coding: utf-8 -*- #
3 from __future__ import unicode_literals
5 AUTHOR = 'Zack M. Davis'
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 ('Survey Anon\'s Gender Blog', "https://surveyanon.wordpress.com/"),
25 ('On the Science of Changing Sex', "https://sillyolme.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 ('Kathleen Stock', "https://kathleenstock.substack.com/"),
33 ('Pasha\'s Office ', "https://pashasoffice.blogspot.com/"),
34 ('Ținând de Mâinii Strigoii-lor', "https://strigoi.substack.com/"),
35 ('Some Nuance, Please', "https://somenuanceplease.substack.com/"),
38 DEFAULT_PAGINATION = 20
40 WITH_FUTURE_DATES = False
42 FILENAME_METADATA = '(?P<slug>.*)'
43 ARTICLE_URL = '{date:%Y}/{date:%b}/{slug}/'
44 ARTICLE_SAVE_AS = '{date:%Y}/{date:%b}/{slug}/index.html'
45 CATEGORY_URL = 'category/{slug}/'
46 CATEGORY_SAVE_AS = 'category/{slug}/index.html'
47 TAG_URL = 'tag/{slug}/'
48 TAG_SAVE_AS = 'tag/{slug}/index.html'
50 PAGE_SAVE_AS = '{slug}/index.html'
51 AUTHOR_URL = 'author/{slug}/'
52 AUTHOR_SAVE_AS = 'author/{slug}/index.html'
53 ARCHIVES_URL = 'archives'
54 ARCHIVES_SAVE_AS = 'archives/index.html'
55 YEAR_ARCHIVE_SAVE_AS = '{date:%Y}/index.html'
56 MONTH_ARCHIVE_SAVE_AS = '{date:%Y}/{date:%b}/index.html'
58 PAGINATION_PATTERNS = (
59 (1, '{base_name}/', '{base_name}/index.html'),
60 (2, '{base_name}/page/{number}/', '{base_name}/page/{number}/index.html'),
65 PLUGIN_PATHS = ["plugins"]
66 PLUGINS = ["tag_cloud", "simple_footnotes", "page_hierarchy"]
69 TAG_CLOUD_SORTING = "alphabetically"
71 # Uncomment following line if you want document-relative URLs when developing
75 'extension_configs': {
76 'markdown.extensions.codehilite': {'css_class': 'highlight'},
77 'markdown.extensions.extra': {},
78 'markdown.extensions.meta': {},
79 'markdown.extensions.toc': {
80 'title': 'Table of Contents',
83 'output_format': 'html5'