aboutsummaryrefslogtreecommitdiff
path: root/src/pages/mod.rs
blob: f838eeef2229d16c45e0c3c37003af420c85bf97 (plain)
1
2
3
4
5
6
7
8
9
//! All the pages in webgit
//!
//! A page is defined by it's template type as well as it's route,
//! which is exported from the module and then called by the router

pub mod repo;

mod p404;
pub use p404::render as p404;