Metadata-Version: 2.3
Name: renoir
Version: 1.8.0
Summary: A templating engine designed with simplicity in mind
Project-URL: Homepage, https://github.com/emmett-framework/renoir
Project-URL: Documentation, https://github.com/emmett-framework/renoir/docs
Project-URL: Funding, https://github.com/sponsors/gi0baro
Project-URL: Source, https://github.com/emmett-framework/renoir
Project-URL: Issues, https://github.com/emmett-framework/renoir/issues
Author-email: Giovanni Barillari <g@baro.dev>
License-Expression: BSD-3-Clause
License-File: LICENSE
Keywords: html,templates,web
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.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: HTML
Requires-Python: >=3.8
Description-Content-Type: text/markdown

# Renoir

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

## 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.
