A small Flask extension adds suppot to Jade2Underscore templates compiler (used in Backbone) to Flask.
Project description
flask-jade2underscore
===============
A small Flask extension that makes it easy to use Jade to Underscore templates compiler (used in Backbone) with your Flask application.
Usage
-----
You can activate it by calling the ``jade2underscore`` function with your Flask app as a parameter:
from flaskext.jade2underscore import jade2underscore
jade2underscore(app, underscore_folder='underscore', jade_folder='src/jade')
This will intercept the request to ``underscore_folder`` and compile de file if is necesary using the files from ``jade_folder``.
When you deploy your app you might not want to accept the overhead of checking the modification time of your ``.jade`` and ``.tpl`` files on each request. A simple way to avoid this is wrapping the jade2underscore call in an if statement:
if app.debug:
from flaskext.jade2underscore import jade2underscore
jade2underscore(app)
If you do this you'll be responsible for rendering the ``.jade`` files into ``.tpl`` when you deploy in non-debug mode to your production server.
- documentation_
- development_
.. _documentation: https://github.com/weapp/flask-jade2underscore
.. _development: https://github.com/weapp/flask-jade2underscore
===============
A small Flask extension that makes it easy to use Jade to Underscore templates compiler (used in Backbone) with your Flask application.
Usage
-----
You can activate it by calling the ``jade2underscore`` function with your Flask app as a parameter:
from flaskext.jade2underscore import jade2underscore
jade2underscore(app, underscore_folder='underscore', jade_folder='src/jade')
This will intercept the request to ``underscore_folder`` and compile de file if is necesary using the files from ``jade_folder``.
When you deploy your app you might not want to accept the overhead of checking the modification time of your ``.jade`` and ``.tpl`` files on each request. A simple way to avoid this is wrapping the jade2underscore call in an if statement:
if app.debug:
from flaskext.jade2underscore import jade2underscore
jade2underscore(app)
If you do this you'll be responsible for rendering the ``.jade`` files into ``.tpl`` when you deploy in non-debug mode to your production server.
- documentation_
- development_
.. _documentation: https://github.com/weapp/flask-jade2underscore
.. _development: https://github.com/weapp/flask-jade2underscore
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file flask-jade2underscore-0.1.zip
.
File metadata
- Download URL: flask-jade2underscore-0.1.zip
- Upload date:
- Size: 6.1 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 7dcadb57eb1f91b1ce45d16726b957b226942a7968f12bf3ad302dbe7b738b3b |
|
MD5 | dbe5a75f9c93c3eb10b591cd0a7fc59b |
|
BLAKE2b-256 | 81a8c8d0acd1e1fc0436b65282d3bb90e6f039e9b0e0a36672ffbaa82b23d732 |