Skip to content

dmulholl/ibis

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Ibis

Ibis is a lightweight template engine for Python.

Sample syntax:

<ul>
    {% for post in posts %}
        <li><a href="{{ post.url }}">{{ post.title }}</a></li>
    {% endfor %}
</ul>

Features:

  • Django/Jinja-style syntax.
  • Supports looping, conditionals, filters, template inheritance.
  • Extensible. Easily add custom template tags and filters.
  • Self-contained, no dependencies.
  • Public domain code.

See the documentation for details.