Add support for the neighbors plugin (#98)

This commit is contained in:
Oliver Pratt 2017-04-22 07:54:50 +01:00 committed by Alexandre Vicenzi
parent 212f106a55
commit a6f12ec781
5 changed files with 27 additions and 4 deletions

View file

@ -3,10 +3,13 @@
from __future__ import unicode_literals
# Optional 'neighbors' plugin adds previous/next post buttons to articles.
PLUGIN_PATHS = ['../plugins']
PLUGINS = ['i18n_subsites']
PLUGINS = ['i18n_subsites', 'neighbors']
JINJA_ENVIRONMENT = {'extensions': ['jinja2.ext.i18n', 'jinja2.ext.autoescape', 'jinja2.ext.with_']}
JINJA_ENVIRONMENT = {'extensions': ['jinja2.ext.i18n',
'jinja2.ext.autoescape',
'jinja2.ext.with_']}
AUTHOR = u'Test'
SITEURL = u'http://localhost:8000'
@ -54,8 +57,6 @@ CC_LICENSE = {
COPYRIGHT_YEAR = 2016
DEFAULT_PAGINATION = 10
STATUSCAKE = {
'trackid': 'test-test',
'days': 7,