Renoir – /ˈrɛnwɑːr/ – is a Python templating engine designed with simplicity in mind.
{{ 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 }}
The documentation is available under the docs folder.
Renoir is released under the BSD License.