krik 0.1.27

A fast static site generator written in Rust with internationalization, theming, and modern web features
Documentation
1
2
3
4
5
6
7
8
9
10
//! Template rendering submodules

pub mod context;
pub mod paths;
pub mod render_index;
pub mod render_page;
pub mod select;

pub use render_index::generate_index;
pub use render_page::{generate_page, generate_pages};