diff options
author | Jesús <heckyel@hyperbola.info> | 2019-11-18 12:16:28 -0500 |
---|---|---|
committer | Jesús <heckyel@hyperbola.info> | 2019-11-18 12:16:28 -0500 |
commit | 1bad59aa45532c503e3114e3ba8bc6ba9aead8dc (patch) | |
tree | b0f981ba254b40c5216aae3518557e8727ccbe24 /pelicanconf.py | |
parent | f1407c44634f3fb005b3bfc6dc2d3cfa36de96c5 (diff) | |
download | cl-1bad59aa45532c503e3114e3ba8bc6ba9aead8dc.tar.lz cl-1bad59aa45532c503e3114e3ba8bc6ba9aead8dc.tar.xz cl-1bad59aa45532c503e3114e3ba8bc6ba9aead8dc.zip |
[pelican_comments] Add support comment_system
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' |