Skip to content
A template engine for Rust based on Jinja2/Django
Branch: master
Clone or download
Keats Merge pull request #392 from JordanShurmer/patch-1
Fix a few quirks in the templates documentation
Latest commit 5495105 Feb 28, 2019
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
benches
docs Fix a few quirks in the templates documentation Feb 27, 2019
examples modify gitignore to allow example static files Jul 24, 2018
src v0.11.20 Nov 14, 2018
tests v0.11.20 Nov 14, 2018
.editorconfig
.gitignore
.travis.yml
CHANGELOG.md
Cargo.toml v0.11.20 Nov 14, 2018
LICENSE
README.md
appveyor.yml
netlify.toml Update docs for gutenberg 0.4.0 Aug 3, 2018
rustfmt.toml

README.md

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.

You can’t perform that action at this time.