Metadata-Version: 2.1
Name: ibis
Version: 2.1.1
Summary: A template engine for people who enjoy the simpler things in life.
Home-page: https://github.com/dmulholl/ibis
Author: Darren Mulholland
License: Public Domain
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
Requires-Python: >=3.6


Ibis
====

A template engine for people who enjoy the simpler things in life.

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.



