X-Git-Url: http://unremediatedgender.space/source?p=Ultimately_Untrue_Thought.git;a=blobdiff_plain;f=pelicanconf.py;h=871598f80075188f9635d25f4863c6357e62327b;hp=1daca704940bbde184d1502008aac723ace0f1b1;hb=HEAD;hpb=9fbf68ddb3aa9120fe2e3e12f676202f687c575d diff --git a/pelicanconf.py b/pelicanconf.py index 1daca70..871598f 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -2,7 +2,7 @@ # -*- coding: utf-8 -*- # from __future__ import unicode_literals -AUTHOR = 'M. Taylor Saotome-Westlake' +AUTHOR = 'Zack M. Davis' SITENAME = 'The Scintillating But Ultimately Untrue Thought' SITEURL = 'http://unremediatedgender.space' @@ -21,27 +21,64 @@ AUTHOR_FEED_RSS = None # Blogroll LINKS = ( + ('Survey Anon\'s Gender Blog', "https://surveyanon.wordpress.com/"), ('On the Science of Changing Sex', "https://sillyolme.wordpress.com/"), ('Crossdreamers', "http://www.crossdreamers.com/"), - ('Third Way Trans', "https://thirdwaytrans.com/"), ('Trans Blog', "http://transblog.grieve-smith.com/"), - ('Thing of Things', "http://thingofthings.wordpress.com/"), - ('Words by Maria Catt', "https://mariacatt.com/"), + ('The New Thoughtcrime', "https://newthoughtcrime.com/"), ('Culturally Bound Gender', "https://culturallyboundgender.wordpress.com/"), - ('My Only Path to Power', "https://transwidow.wordpress.com/"), + ('The Trans Widow', "http://thetranswidow.com/"), + ('Sex and Gender: A Beginner\'s Guide', "https://sexandgenderintro.com/"), + ('Kathleen Stock', "https://kathleenstock.substack.com/"), + ('Pasha\'s Office ', "https://pashasoffice.blogspot.com/"), + ('Ținând de Mâinii Strigoii-lor', "https://strigoi.substack.com/"), + ('Some Nuance, Please', "https://somenuanceplease.substack.com/"), ) -DEFAULT_PAGINATION = 12 +DEFAULT_PAGINATION = 20 WITH_FUTURE_DATES = False FILENAME_METADATA = '(?P.*)' ARTICLE_URL = '{date:%Y}/{date:%b}/{slug}/' ARTICLE_SAVE_AS = '{date:%Y}/{date:%b}/{slug}/index.html' +CATEGORY_URL = 'category/{slug}/' +CATEGORY_SAVE_AS = 'category/{slug}/index.html' +TAG_URL = 'tag/{slug}/' +TAG_SAVE_AS = 'tag/{slug}/index.html' PAGE_URL = '{slug}/' PAGE_SAVE_AS = '{slug}/index.html' +AUTHOR_URL = 'author/{slug}/' +AUTHOR_SAVE_AS = 'author/{slug}/index.html' +ARCHIVES_URL = 'archives' +ARCHIVES_SAVE_AS = 'archives/index.html' +YEAR_ARCHIVE_SAVE_AS = '{date:%Y}/index.html' +MONTH_ARCHIVE_SAVE_AS = '{date:%Y}/{date:%b}/index.html' + +PAGINATION_PATTERNS = ( + (1, '{base_name}/', '{base_name}/index.html'), + (2, '{base_name}/page/{number}/', '{base_name}/page/{number}/index.html'), +) THEME = 'theme' +PLUGIN_PATHS = ["plugins"] +PLUGINS = ["tag_cloud", "simple_footnotes", "page_hierarchy"] + +TAG_CLOUD_STEPS = 6 +TAG_CLOUD_SORTING = "alphabetically" + # Uncomment following line if you want document-relative URLs when developing RELATIVE_URLS = True + +MARKDOWN = { + 'extension_configs': { + 'markdown.extensions.codehilite': {'css_class': 'highlight'}, + 'markdown.extensions.extra': {}, + 'markdown.extensions.meta': {}, + 'markdown.extensions.toc': { + 'title': 'Table of Contents', + }, + }, + 'output_format': 'html5' +}