elephantry_extras/lib.rs
1#![warn(warnings)]
2#![cfg_attr(feature = "yew", recursion_limit = "1024")]
3
4#[cfg(feature = "askama")]
5pub mod askama;
6pub mod html;
7#[cfg(feature = "tera")]
8pub mod tera;
9#[cfg(feature = "yew")]
10pub mod yew;
11
12mod pager;
13mod pagination;
14
15pub use pagination::Pagination;
16
17pub use pager::Pager;