elephantry-extras 0.11.0

A collection of additional components for elephantry.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#![warn(warnings)]
#![cfg_attr(feature = "yew", recursion_limit = "1024")]

#[cfg(feature = "askama")]
pub mod askama;
pub mod html;
#[cfg(feature = "tera")]
pub mod tera;
#[cfg(feature = "yew")]
pub mod yew;

mod pager;
mod pagination;

pub use pagination::Pagination;

pub use pager::Pager;