Metadata-Version: 1.1
Name: pyhaml-jinja
Version: 0.1-dev
Summary: Haml-style syntax for Jinja2 templates
Home-page: http://github.com/jgeewax/pyhaml-jinja
Author: JJ Geewax
Author-email: jj@geewax.org
License: UNKNOWN
Description: 
        This extension to jinja make it possible to use a
        `haml <http://haml-lang.com/>`_-style syntax for your Jinja2 templates.
        
        Example::
        
            -extends "base.haml"
        
            -block title: Page title
        
            -block content
              %ul.list#users
                -for user in users
                  %li
                    %a(href="#{user.url}") #{user.username}
        
        For more information read the
        `documentation <http://github.com/jgeewax/pyhaml-jinja>`_
        
Keywords: jinja2 templates haml html
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
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
