Browse Source

correctly handle the active page in navbar

Maxime Vidori 9 years ago
parent
commit
d4c3906123
2 changed files with 13 additions and 1 deletions
  1. 7 0
      filters.py
  2. 6 1
      pelicanconf.py

+ 7 - 0
filters.py

@@ -0,0 +1,7 @@
+# coding: utf8
+import jinja2
+
+@jinja2.contextfilter
+def is_active(ctx, page):
+    return (ctx.get('output_file') == page.save_as or
+            'blog' in ctx.get('output_file') and page.slug == 'blog')

+ 6 - 1
pelicanconf.py

@@ -2,6 +2,10 @@
 # -*- coding: utf-8 -*- #
 from __future__ import unicode_literals
 
+import sys
+sys.path.append('.')
+import filters
+
 AUTHOR = u'gitoyen'
 SITENAME = u'Gitoyen'
 SITEURL = ''
@@ -19,6 +23,8 @@ TRANSLATION_FEED_ATOM = None
 AUTHOR_FEED_ATOM = None
 AUTHOR_FEED_RSS = None
 
+JINJA_FILTERS = {'is_active': filters.is_active}
+
 THEME = 'theme'
 
 DEFAULT_PAGINATION = 10
@@ -31,7 +37,6 @@ PAGE_URL = '{slug}.html'
 PAGE_SAVE_AS = '{slug}.html'
 
 INDEX_SAVE_AS = 'blog.html'
-
 PLUGIN_PATHS = ['plugins']
 PLUGINS = ['extract_toc']