7 releases

0.2.4 Feb 3, 2021
0.2.3 Dec 11, 2020
0.2.2 Nov 2, 2020
0.2.1 Oct 19, 2020
0.1.1 Jul 12, 2020

#30 in #tera

Download history 47/week @ 2024-01-05 100/week @ 2024-01-12 74/week @ 2024-01-19 15/week @ 2024-01-26 68/week @ 2024-02-02 54/week @ 2024-02-09 74/week @ 2024-02-16 51/week @ 2024-02-23 48/week @ 2024-03-01 101/week @ 2024-03-08 48/week @ 2024-03-15 45/week @ 2024-03-22 57/week @ 2024-03-29 33/week @ 2024-04-05 59/week @ 2024-04-12 82/week @ 2024-04-19

234 downloads per month
Used in tide-admin

MIT/Apache

21KB
99 lines

Tide-Tera Integration

This crate exposes an extension trait that adds two functions to tera::Tera: render_response and render_body. It also adds a convenience context macro for creating ad-hoc tera Contexts.


Crates.io version docs.rs docs
use tera::Tera;
use tide_tera::prelude::*;

#[async_std::main]
async fn main() -> tide::Result<()> {
    tide::log::start();

    let mut tera = Tera::new("examples/templates/**/*")?;
    tera.autoescape_on(vec!["html"]);

    let mut app = tide::with_state(tera);

    app.at("/:name").get(|req: tide::Request<Tera>| async move {
        let tera = req.state();
        let name: String = req.param("name")?;
        tera.render_response("hello.html", &context! { "name" => name })
    });

    app.listen("127.0.0.1:8080").await?;

    Ok(())
}

Dependencies

~16–28MB
~448K SLoC