paulcmal / tera

A template engine for Rust based on Jinja2/Django

Home Page:https://tera.netlify.com/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Tera

Build Status Build status Crates.io Docs

Tera is a template engine inspired by Jinja2 and the Django template language.

<title>{% block title %}{% endblock title %}</title>
<ul>
{% for user in users %}
  <li><a href="{{ user.url }}">{{ user.username }}</a></li>
{% endfor %}
</ul>

Documentation

API documentation is available on docs.rs.

Tera documentation is available on its site.

SemVer

This project follows SemVer only for the public API, public API here meaning functions appearing in the docs. Some features, like accessing the AST, are also available but breaking changes in them can happen in minor versions.

About

A template engine for Rust based on Jinja2/Django

https://tera.netlify.com/

License:MIT License


Languages

Language:Rust 99.6%Language:HTML 0.4%