diff options
Diffstat (limited to 'pelicanconf.py')
-rw-r--r-- | pelicanconf.py | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/pelicanconf.py b/pelicanconf.py index 2f6e758..013c65c 100644 --- a/pelicanconf.py +++ b/pelicanconf.py @@ -40,9 +40,13 @@ PLUGINS = [ 'pelican-js', 'sitemap', 'tag-cloud', - 'tipue-search' + 'tipue-search', + 'pelican_comments' ] +# Optional: 'comments' is the default +COMMENTS_DIR = ['comments'] + SITENAME = 'Conocimientos Libres' SITENAME_SINGLE = 'CL' SITEURL = 'https://conocimientoslibres.tuxfamily.org' @@ -84,6 +88,7 @@ PAGE_EXCLUDES = [ ARTICLE_PATHS = ['articles'] ARTICLE_EXCLUDES = [ + 'comments', 'pages', 'vendor', 'wp-content' |