__init__.py 330 B

12345678910111213141516
  1. #!/usr/bin/env python
  2. # -*- coding: utf-8 -*-
  3. from flask_themes2 import render_theme_template
  4. __author__ = 'James Iter'
  5. __date__ = '2017/5/30'
  6. __contact__ = 'james.iter.cn@gmail.com'
  7. __copyright__ = '(c) 2017 by James Iter.'
  8. def render(template, **context):
  9. return render_theme_template('default', template, **context)