bottle-jade 0.2.1

Last updated:

0 purchases

bottle-jade 0.2.1 Image
bottle-jade 0.2.1 Images
Add to Cart

Description:

bottlejade 0.2.1

Bottle Jade – Short description.






Contents

Requirements
Installation
Usage

Configuration


Bug tracker
Contributing
Contributors
License



Requirements

python >= 2.6



Installation
Bottle Jade should be installed using pip:
pip install bottle-jade


Usage
from bottle import Bottle
from bottle_jade import JadePlugin
from os import path as op

app = Bottle()
templates = op.dirname(op.abspath(__file__))
jade = app.install(JadePlugin(template_folder=templates))

@app.route('/')
def index():
context = {'var': 'value'}
return jade.render('index.jade', **context)

@app.route('/simple')
@jade.view('simple.jade')
def simple():
context = {}
return context

Configuration
JADE_CACHE_SIZE – Number of templates which will be cached (200)
JADE_PRETTY – Enable pretty output (True)
JADE_TEMPLATE_FOLDER – Set path to templates folder (templates)
JADE_ENCODING – Set templates’ encoding (UTF-8)



Bug tracker
If you have any suggestions, bug reports or
annoyances please report them to the issue tracker
at https://github.com/klen/bottle-jade/issues


Contributing
Development of Bottle Jade happens at: https://github.com/klen/bottle-jade


Contributors

klen (Kirill Klenov)



License
Licensed under a BSD license.

License:

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.