filters.py 202 B

1234567
  1. # coding: utf8
  2. import jinja2
  3. @jinja2.contextfilter
  4. def is_active(ctx, page):
  5. return (ctx.get('output_file') == page.save_as or
  6. 'blog' in ctx.get('output_file') and page.slug == 'blog')