Metadata-Version: 1.1
Name: ibis
Version: 1.2.0
Summary: A lightweight template engine.
Home-page: https://github.com/dmulholland/ibis
Author: Darren Mulholland
Author-email: UNKNOWN
License: Public Domain
Description: 
        Ibis
        ====
        
        Features:
        
        * Django/Jinja-style syntax.
        * Supports looping, conditionals, filters, template inheritance.
        * Extensible. Easily add custom template tags and filters.
        * Self-contained, no dependencies. Use as a drop-in component in any project.
        * Public domain code. No license compatibility issues.
        
        Sample syntax::
        
            <ul>
                {% for post in posts %}
                    <li><a href="{{ post.url }}">{{ post.title }}</a></li>
                {% endfor %}
            </ul>
        
        See the package documentation (http://pythonhosted.org/ibis) or the project's
        Github homepage (https://github.com/dmulholland/ibis) for further details.
        
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: Development Status :: 5 - Production/Stable
Classifier: Operating System :: OS Independent
Classifier: License :: Public Domain
Classifier: Intended Audience :: Developers
Classifier: Topic :: Text Processing :: General
Classifier: Topic :: Text Processing :: Markup :: HTML
