We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 574a020 commit 3be06daCopy full SHA for 3be06da
1 file changed
pelicanconf.py
@@ -1,5 +1,6 @@
1
#!/usr/bin/env python
2
3
+import os
4
import sys
5
sys.path.append(".")
6
from integrantes import INTEGRANTES
@@ -12,13 +13,12 @@
12
13
"a lo largo del país, fortaleciendo a los miembros de la comunidad para generar un impacto "
14
"positivo en el desarrollo de Python a nivel nacional y mundial."
15
)
-SITEURL = ""
16
17
+SITEURL = ""
18
PATH = "content"
-
19
TIMEZONE = "America/Santiago"
20
21
DEFAULT_LANG = "es"
+THEME = os.path.join(os.path.dirname(__file__), "pycltheme")
22
23
# Feed generation is usually not desired when developing
24
FEED_ALL_ATOM = None
@@ -133,4 +133,4 @@
133
# Uncomment following line if you want document-relative URLs when developing
134
# RELATIVE_URLS = True
135
136
-THEME = "pycltheme"
+print(f"✅ Path var THEME: {THEME}")
0 commit comments