emmett-framework / renoir

A templating engine designed with simplicity in mind
BSD 3-Clause "New" or "Revised" License
37 stars 3 forks source link
python renoir template-engine templates

Renoir

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

In a nutshell

{{ extend "layout.html" }}
{{ block title }}Members{{ end }}
{{ block content }}
<ul>
  {{ for user in users: }}
  <li><a href="https://github.com/emmett-framework/renoir/blob/master/{{ =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.