emmett-framework / renoir

A templating engine designed with simplicity in mind

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

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.

About

A templating engine designed with simplicity in mind

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Python 98.4%Language:HTML 1.6%