add additional pages and set base styles

This commit is contained in:
Nate
2021-09-15 18:28:38 -04:00
parent 51f0250466
commit fc7dc73f57
16 changed files with 187 additions and 283 deletions
+10 -2
View File
@@ -9,7 +9,11 @@ mod github;
mod home;
mod rpc;
mod team;
mod about_app;
mod story;
mod tech;
mod updates;
mod releases;
mod community;
use self::errors::TideResultExt as _;
use anyhow::Result;
@@ -174,7 +178,11 @@ pub async fn run_server(
web.with(errors::Middleware);
home::add_routes(&mut web);
team::add_routes(&mut web);
about_app::add_routes(&mut web);
story::add_routes(&mut web);
releases::add_routes(&mut web);
updates::add_routes(&mut web);
community::add_routes(&mut web);
tech::add_routes(&mut web);
admin::add_routes(&mut web);
auth::add_routes(&mut web);
assets::add_routes(&mut web);