krik 0.1.23

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
11
12
//! Template rendering submodules

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

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