aboutsummaryrefslogtreecommitdiff
path: root/pelicanconf.py
diff options
context:
space:
mode:
authorRob Austein <sra@hactrn.net>2021-10-08 16:14:24 -0400
committerRob Austein <sra@hactrn.net>2021-10-08 16:14:24 -0400
commit26a0483f0043e8dcc903a9c12703462b203c3abe (patch)
tree276e7ebe04b6a0182e7ad4429d3e9943d4a37214 /pelicanconf.py
parent32914fd7b2467eb41ad5a8e7b24758d44933c294 (diff)
Fix URLs for production location
Diffstat (limited to 'pelicanconf.py')
-rw-r--r--pelicanconf.py10
1 files changed, 3 insertions, 7 deletions
diff --git a/pelicanconf.py b/pelicanconf.py
index cb72a1a..ab8e8af 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -15,7 +15,7 @@ if CRYPTECH_DEV_MODE:
RELATIVE_URLS = True
else:
- SITEURL = "https://wiki.cryptech.is/pelican/"
+ SITEURL = "https://wiki.cryptech.is/"
RELATIVE_URLS = False
# Feed generation is usually not desired when developing
@@ -40,12 +40,8 @@ M_LINKS_NAVBAR1 = [
]
M_CSS_FILES = [
- ("https://fonts.googleapis.com/css"
- "?family=Source+Sans+Pro:400,400i,600,600i%7CSource+Code+Pro:400,400i,600"),
-
- ("/static/m-dark.css"
- if CRYPTECH_DEV_MODE else
- "/pelican/static/m-dark.css")
+ "https://fonts.googleapis.com/css?family=Source+Sans+Pro:400,400i,600,600i%7CSource+Code+Pro:400,400i,600",
+ "/static/m-dark.css"
]
M_HIDE_ARTICLE_SUMMARY = True