aboutsummaryrefslogtreecommitdiff
path: root/pelicanconf.py
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@chimrod.com>2021-01-03 20:10:08 +0100
committerSébastien Dailly <sebastien@chimrod.com>2021-01-04 10:50:59 +0100
commit0c09a00a0b298cbd3bbd0082cc1026e22db9b1c5 (patch)
tree90a346ea34bffbd882a727c5dfd25f6c2ab54841 /pelicanconf.py
parent536bb26052fa4ada16d9d09a6cc140a4d3293af8 (diff)
New article, and blog application
Diffstat (limited to 'pelicanconf.py')
-rwxr-xr-xpelicanconf.py17
1 files changed, 8 insertions, 9 deletions
diff --git a/pelicanconf.py b/pelicanconf.py
index e81d9ea..a572382 100755
--- a/pelicanconf.py
+++ b/pelicanconf.py
@@ -53,20 +53,18 @@ TYPOGRIFY = False
TEMPLATE_PAGES = {'../extras/404.html': '404.html'}
STATIC_PATHS = \
- ( 'images/profile.png'
+ ( 'images'
, '../extras/robots.txt'
, '../extras/htaccess'
, '../extras/custom.css'
+ , 'pages/script.it'
)
EXTRA_PATH_METADATA = \
- { '../extras/robots.txt': \
- {'path': 'robots.txt'}
- , '../extras/htaccess': \
- {'path': '.htaccess'}
- , '../extras/custom.css': \
- {'path': 'custom.css'}}
-
+ { '../extras/robots.txt': {'path': 'robots.txt'}
+ , '../extras/htaccess': {'path': '.htaccess'}
+ , '../extras/custom.css': {'path': 'custom.css'}
+ }
PLUGIN_PATHS = ['plugins']
@@ -74,7 +72,8 @@ PLUGIN_PATHS = ['plugins']
PLUGINS = \
( 'related_posts'
, 'typogrify'
- , 'i18n_subsites' )
+ , 'i18n_subsites'
+ , 'render_math' )
RELATED_POSTS_IGNORE_TAGS = ["Libre"]