A templating engine designed with simplicity in mind


Keywords
templates, html, web, python, renoir, template-engine
License
BSD-3-Clause
Install
pip install renoir==1.7.1

Documentation

Renoir

Renoir – /ˈrɛnwɑːr/ – is a Python templating engine designed with simplicity in mind.

pip version tests status

In a nutshell

{{ extend "layout.html" }}
{{ block title }}Members{{ end }}
{{ block content }}
<ul>
  {{ for user in users: }}
  <li><a href="{{ =user['url'] }}">{{ =user['name'] }}</a></li>
  {{ pass }}
</ul>
{{ end }}

Documentation

The documentation is available under the docs folder.

License

Renoir is released under the BSD License.