Metadata-Version: 1.0
Name: Hamlish-Jinja
Version: 0.1.0
Summary: Haml-ish syntax for jinja2 templates
Home-page: http://github.com/Pitmairen/hamlish-jinja
Author: Per Myren
Author-email: progrper@gmail.com
License: UNKNOWN
Description: 
        This extension to jinja make it possible to use a
        `haml <http://haml-lang.com/>`_-ish syntax for your jinja2 templates.
        
        Example template::
        
            -extends 'base.html'
            -block title << Memberlist
            -block content:
               %ul id="memberlist"
                  -for user in users:
                     %li
                        %a href="{{ user.url }}" << {{ user.username }}
        
        For more information read the
        `documentation <http://github.com/Pitmairen/hamlish-jinja>`_
        
Keywords: jinja2 templates haml
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: GNU General Public License (GPL)
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: HTML
