From 5fa81500dcc07a853a01b0b0d813069467995807 Mon Sep 17 00:00:00 2001 From: Daniel Hader Date: Sat, 29 Aug 2026 13:06:16 -0500 Subject: work in progress css --- pelicanconf.py | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 pelicanconf.py (limited to 'pelicanconf.py') diff --git a/pelicanconf.py b/pelicanconf.py new file mode 100644 index 0000000..df49286 --- /dev/null +++ b/pelicanconf.py @@ -0,0 +1,30 @@ +AUTHOR = 'Daniel Hader' +SITENAME = 'DanielHader.net' +SITESUBTITLE = "Where the dandelions once bloomed" +SITEURL = "" + +PATH = "content" + +TIMEZONE = 'America/Chicago' + +DEFAULT_LANG = 'en' + +# Theme and style settings +THEME = "themes/simple" + +# Feed generation is usually not desired when developing +FEED_ALL_ATOM = None +CATEGORY_FEED_ATOM = None +TRANSLATION_FEED_ATOM = None +AUTHOR_FEED_ATOM = None +AUTHOR_FEED_RSS = None + +# Blogroll +LINKS = [ + ("Aprilwalker.io", "http://aprilwalker.io/"), +] + +DEFAULT_PAGINATION = 20 + +# Uncomment following line if you want document-relative URLs when developing +# RELATIVE_URLS = True -- cgit v1.2.3