aboutsummaryrefslogtreecommitdiffstats
path: root/pelicanconf.py
diff options
context:
space:
mode:
authorJesús <heckyel@hyperbola.info>2019-11-16 19:01:59 -0500
committerJesús <heckyel@hyperbola.info>2019-11-16 19:01:59 -0500
commit73c4e0da85c71e0608a0531887edd344ad323c8b (patch)
tree87fbb30c6afa1ad881c6d8f7e6e06ff081b0a427 /pelicanconf.py
parentf0ca3ba55bb9515b1883b4cdaa1f23f8111eab19 (diff)
downloadcl-73c4e0da85c71e0608a0531887edd344ad323c8b.tar.lz
cl-73c4e0da85c71e0608a0531887edd344ad323c8b.tar.xz
cl-73c4e0da85c71e0608a0531887edd344ad323c8b.zip
reorganize article directories
Diffstat (limited to 'pelicanconf.py')
-rw-r--r--pelicanconf.py17
1 files changed, 13 insertions, 4 deletions
diff --git a/pelicanconf.py b/pelicanconf.py
index 14ad971..411e83c 100644
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -71,18 +71,27 @@ ARCHIVES_URL = 'archives/'
ARCHIVES_SAVE_AS = 'archives/index.html'
STATIC_PATHS = [
'.htaccess',
- 'asciicasts',
'heckyel_pub.asc',
'robots.txt',
'wp-content',
'vendor'
]
-PAGE_EXCLUDES = ['asciicasts', 'wp-content', 'vendor']
-ARTICLE_EXCLUDES = ['asciicasts', 'wp-content', 'vendor']
+PAGE_PATHS = ['pages']
+PAGE_EXCLUDES = [
+ 'vendor',
+ 'wp-content'
+]
+
+ARTICLE_PATHS = ['articles']
+ARTICLE_EXCLUDES = [
+ 'pages',
+ 'vendor',
+ 'wp-content'
+]
# Time and date
-# http://docs.getpelican.com/en/stable/settings.html#time-and-date
+# https://docs.getpelican.com/en/stable/settings.html#time-and-date
TIMEZONE = 'Europe/Madrid'
LOCALE = ('es_ES.UTF-8')