Metadata-Version: 2.1
Name: renoir
Version: 1.5.3
Summary: A templating engine designed with simplicity in mind
Home-page: https://github.com/emmett-framework/renoir
License: BSD-3-Clause
Keywords: templates,html,web
Author: Giovanni Barillari
Author-email: gi0baro@d4net.org
Requires-Python: >=3.6,<4.0
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: HTML
Project-URL: Issue Tracker, https://github.com/emmett-framework/renoir/issues
Project-URL: Repository, https://github.com/emmett-framework/renoir
Description-Content-Type: text/markdown

# Renoir

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

[![pip version](https://img.shields.io/pypi/v/renoir.svg?style=flat)](https://pypi.python.org/pypi/Renoir)
![Tests Status](https://github.com/emmett-framework/renoir/workflows/Tests/badge.svg)

## In a nutshell

```html
{{ 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](https://github.com/emmett-framework/renoir/tree/master/docs).

## License

Renoir is released under the BSD License.

