From 71517e7c195d6d5ecc5f8b0d3291d8b5314f98cd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cl=C3=A9ment?= Date: Thu, 1 Aug 2024 17:57:54 +0200 Subject: [PATCH] Set content path setting to new repo for algoo.fr content --- jssg/settings.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jssg/settings.py b/jssg/settings.py index 01ffe1c..000d97e 100644 --- a/jssg/settings.py +++ b/jssg/settings.py @@ -47,7 +47,7 @@ # JSSG JFME_DOMAIN = "www.galae.net" -JFME_CONTENT_DIRS = [Path("/home/clement/algoofr-jfme/content")] + [BASE_DIR / "content"] + [BASE_DIR / "common-content"] +JFME_CONTENT_DIRS = [Path("/home/clement/websites/algoofr-jfme/content")] + [BASE_DIR / "content"] JFME_PAGES_DIRS = [path / "pages" for path in JFME_CONTENT_DIRS] JFME_POSTS_DIRS = [path / "posts" for path in JFME_CONTENT_DIRS] JFME_TEMPLATES_DIRS = [path / "templates" for path in JFME_CONTENT_DIRS]