doido-view 0.0.10

Default Tera engine, layouts, partials — Action View style templating for Doido.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub mod content_for;
pub mod engine;
pub mod fragment;
pub mod global;
pub mod helpers;
pub mod partials;
pub mod renderer;
pub mod response;
pub mod tera_engine;

pub use content_for::ContentFor;
pub use engine::TemplateEngine;
pub use global::{init, render, render_variant, set_engine, try_engine};
pub use partials::{render_collection, render_partial};
pub use renderer::Renderer;
pub use response::ViewResponse;
pub use tera_engine::TeraEngine;