From e44ed9234dd8710d4adde6a852af53d6ccdcfe80 Mon Sep 17 00:00:00 2001 From: Dominik George <nik@naturalnet.de> Date: Mon, 16 Aug 2021 22:47:48 +0200 Subject: [PATCH] Fix theme import --- pelicanconf.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/pelicanconf.py b/pelicanconf.py index ca13176..6027301 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 pelican_theme_teckids.pelicanconf import * AUTHOR = 'Teckids e.V.' SITENAME = 'Schul-Frei' @@ -23,7 +21,6 @@ SLUGIFY_SOURCE = 'basename' TIMEZONE = 'Europe/Berlin' DEFAULT_LANG = 'de' -THEME = 'themes/teckids' PLUGIN_PATHS = ["plugins"] PLUGINS = ["i18n_subsites", "sitemap", "summary", "jinja2content"] -- GitLab