diff options
Diffstat (limited to '')
-rw-r--r-- | src/web/config/aesthetic.php | 5 | ||||
-rw-r--r-- | src/web/config/routes.php | 1 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/web/config/aesthetic.php b/src/web/config/aesthetic.php index 304baec..e528b09 100644 --- a/src/web/config/aesthetic.php +++ b/src/web/config/aesthetic.php @@ -35,6 +35,11 @@ class Aesthetic { 'css/auth.css' ], ), + 'people' => array( + 'css' => [ + 'css/people.css' + ], + ), ); } /** diff --git a/src/web/config/routes.php b/src/web/config/routes.php index 33c871b..5bb9a1b 100644 --- a/src/web/config/routes.php +++ b/src/web/config/routes.php @@ -4,5 +4,6 @@ $routes = array(); $routes['home'] = 'apps/home'; $routes['error'] = 'apps/error'; $routes['auth'] = 'apps/auth'; +$routes['people'] = 'apps/people'; $routes[''] = '_index'; |