diff options
author | Rob Austein <sra@hactrn.net> | 2021-10-08 00:30:08 -0400 |
---|---|---|
committer | Rob Austein <sra@hactrn.net> | 2021-10-08 00:30:08 -0400 |
commit | 71487660812754e5f26f26595b6c3d456f9f6db8 (patch) | |
tree | e960190262edcbb0164edbac1e52915c5a339442 /pelicanconf.py | |
parent | b11298b250f63daf091591d1638608325f766d9a (diff) |
Get rid of conversion stuff, just build content -> website
Diffstat (limited to 'pelicanconf.py')
-rw-r--r-- | pelicanconf.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 45c7e53..c6814d5 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -13,7 +13,7 @@ CRYPTECH_DEV_MODE = True if CRYPTECH_DEV_MODE: SITEURL = "" RELATIVE_URLS = True - + else: SITEURL = "https://trac.cryptech.is/pelican/" RELATIVE_URLS = False @@ -27,7 +27,7 @@ else: DEFAULT_PAGINATION = 10 -THEME = "../m.css/pelican-theme" +THEME = "m.css/pelican-theme" THEME_STATIC_DIR = "static" @@ -55,7 +55,7 @@ M_HIDE_ARTICLE_SUMMARY = True M_THEME_COLOR = "#22272e" -PLUGIN_PATHS = ["../m.css/plugins"] +PLUGIN_PATHS = ["m.css/plugins"] PLUGINS = ["m.htmlsanity"] # Per https://docs.getpelican.com/en/latest/faq.html#how-can-i-use-a-static-page-as-my-home-page |