Skip to content

Commit 3be06da

Browse files
committed
feat: absolute path
1 parent 574a020 commit 3be06da

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pelicanconf.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
#!/usr/bin/env python
22

3+
import os
34
import sys
45
sys.path.append(".")
56
from integrantes import INTEGRANTES
@@ -12,13 +13,12 @@
1213
"a lo largo del país, fortaleciendo a los miembros de la comunidad para generar un impacto "
1314
"positivo en el desarrollo de Python a nivel nacional y mundial."
1415
)
15-
SITEURL = ""
1616

17+
SITEURL = ""
1718
PATH = "content"
18-
1919
TIMEZONE = "America/Santiago"
20-
2120
DEFAULT_LANG = "es"
21+
THEME = os.path.join(os.path.dirname(__file__), "pycltheme")
2222

2323
# Feed generation is usually not desired when developing
2424
FEED_ALL_ATOM = None
@@ -133,4 +133,4 @@
133133
# Uncomment following line if you want document-relative URLs when developing
134134
# RELATIVE_URLS = True
135135

136-
THEME = "pycltheme"
136+
print(f"✅ Path var THEME: {THEME}")

0 commit comments

Comments
 (0)