Metadata-Version: 1.1
Name: ibis
Version: 2.0.0a2
Summary: A lightweight template engine.
Home-page: https://github.com/dmulholl/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://www.dmulholl.com/docs/ibis/master/>`_ or the
        project's `Github homepage <https://github.com/dmulholl/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
