Metadata-Version: 1.1
Name: Flask-Quik
Version: 0.1.1
Summary: Quik for Flask
Home-page: http://github.com/avelino/Flask-Quik
Author: Thiago Avelino
Author-email: thiago@avelino.xxx
License: MIT
Description: ==========
        Flask-Quik
        ==========
        
        .. image:: https://travis-ci.org/avelino/Flask-Quik.png?branch=master
            :target: https://travis-ci.org/avelino/Flask-Quik
            :alt: Build Status - Travis CI
        
        Provides support for Quik Templates in Flask - https://github.com/avelino/quik
        
        
        
        Registration
        ============
        
        Applications can be registered directly in the extension constructor::
        
            from flask import Flask
            from flask.ext.quik import FlaskQuik
        
            app = Flask(__name__)
            quik = FlaskQuik(app)
        
        
        
        Rendering
        =========
        
        Rendering Quik templates sends the same :data:`~flask.template_rendered` signal
        as Jinja2 templates. Additionally, Quik templates receive the same context as
        Jinja2 templates. This allows you to use the same variables as you normally
        would (``g``, ``session``, ``url_for``, etc)::
        
            from flask.ext.quik import render_template
        
            @app.route('/')
            def hello_quik():
                return render_template('hello.html', name='quik')
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
