diff options
Diffstat (limited to 'src/web/config')
-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 d37f4a9..5a66660 100644 --- a/src/web/config/aesthetic.php +++ b/src/web/config/aesthetic.php @@ -49,6 +49,11 @@ class Aesthetic { 'css/post.css' ], ), + 'settings' => array( + 'css' => [ + 'css/settings.css' + ] + ), ); } /** diff --git a/src/web/config/routes.php b/src/web/config/routes.php index 1275bfe..a2a71c0 100644 --- a/src/web/config/routes.php +++ b/src/web/config/routes.php @@ -6,5 +6,6 @@ $routes['error'] = 'apps/error'; $routes['auth'] = 'apps/auth'; $routes['people'] = 'apps/people'; $routes['profile'] = 'apps/profile'; +$routes['settings'] = 'apps/settings'; $routes[''] = '_index'; |