5 releases

0.1.0 Nov 17, 2023
0.1.0-rc.4 Nov 2, 2023
0.1.0-rc.3 Mar 24, 2023
0.1.0-rc.2 May 9, 2022
0.1.0-rc.1 Jun 9, 2021

#1062 in Web programming

Download history 3057/week @ 2024-01-22 2865/week @ 2024-01-29 3212/week @ 2024-02-05 3613/week @ 2024-02-12 3625/week @ 2024-02-19 3230/week @ 2024-02-26 3806/week @ 2024-03-04 3347/week @ 2024-03-11 3563/week @ 2024-03-18 3245/week @ 2024-03-25 3270/week @ 2024-04-01 2834/week @ 2024-04-08 3814/week @ 2024-04-15 3068/week @ 2024-04-22 3607/week @ 2024-04-29 3292/week @ 2024-05-06

14,063 downloads per month
Used in 19 crates (16 directly)

MIT/Apache

1MB
14K SLoC

dyn_templates ci.svg crates.io docs.svg

This crate adds support for dynamic template rendering to Rocket. It automatically discovers templates, provides a Responder to render templates, and automatically reloads templates when compiled in debug mode. At present, it supports Handlebars and Tera.

Usage

  1. Enable the rocket_dyn_templates feature corresponding to your templating engine(s) of choice:

    [dependencies.rocket_dyn_templates]
    version = "0.1.0"
    features = ["handlebars", "tera"]
    
  2. Write your template files in Handlebars (.hbs) and/or Tera (.tera) in the configurable template_dir directory (default: {rocket_root}/templates).

  3. Attach Template::fairing() and return a Template using Template::render(), supplying the name of the template file minus the last two extensions:

    use rocket_dyn_templates::{Template, context};
    
    #[get("/")]
    fn index() -> Template {
        Template::render("template-name", context! { field: "value" })
    }
    
    #[launch]
    fn rocket() -> _ {
        rocket::build().attach(Template::fairing())
    }
    

See the crate docs for full details.

Dependencies

~15–51MB
~829K SLoC