aboutsummaryrefslogtreecommitdiff
path: root/src/pages/mod.rs
blob: 2f1ed579c9a9b2f51ed53b201a4996372f405005 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! 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 overview;
pub use overview::render as overview;

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

mod files;
pub use files::render as files;