From 6f0bf9631eefae278fb00a841bb970f50c02449a Mon Sep 17 00:00:00 2001 From: Dominik George <dominik.george@teckids.org> Date: Mon, 16 Aug 2021 22:47:15 +0200 Subject: [PATCH] Fix theme config import --- pelicanconf.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/pelicanconf.py b/pelicanconf.py index 983a7a9..d380e1d 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -2,9 +2,7 @@ # -*- coding: utf-8 -*- # from __future__ import unicode_literals -import sys -sys.path.append("./themes") -from teckids.pelicanconf import * +from peican_theme_teckids.pelicanconf import * AUTHOR = 'Teckids e.V.' SITENAME = "LEOPARD" @@ -21,8 +19,6 @@ TIMEZONE = 'Europe/Paris' DEFAULT_LANG = 'de' -THEME = 'themes/teckids' - # Feed generation is usually not desired when developing FEED_ALL_ATOM = None CATEGORY_FEED_ATOM = None -- GitLab