plf 0.1.2

A template engine for Rust inspired by Tera/Jinja2/Django
Documentation
1
2
3
4
5
6
7
8
$$ components.html
{% component card(title) %}
<div class="card">{{ title }}{{ body | safe }}</div>
{% endcomponent card %}
$$ test.html
{% include "components.html" %}
{% <card title="Hello"> %}
content without closing tag