From 740df2706934231a91c5e2d5061198ea962c357c Mon Sep 17 00:00:00 2001 From: Freya Murphy Date: Wed, 3 Apr 2024 11:25:57 -0400 Subject: profile page --- src/web/config/aesthetic.php | 10 +++++++++- src/web/config/routes.php | 1 + 2 files changed, 10 insertions(+), 1 deletion(-) (limited to 'src/web/config') diff --git a/src/web/config/aesthetic.php b/src/web/config/aesthetic.php index e528b09..99a1959 100644 --- a/src/web/config/aesthetic.php +++ b/src/web/config/aesthetic.php @@ -22,7 +22,6 @@ class Aesthetic { ), 'home' => array( 'js' => [ - 'js/routes/home.js', 'js/post.js', ], 'css' => [ @@ -40,6 +39,15 @@ class Aesthetic { 'css/people.css' ], ), + 'profile' => array( + 'js' => [ + 'js/post.js', + ], + 'css' => [ + 'css/profile.css', + 'css/post.css' + ], + ), ); } /** diff --git a/src/web/config/routes.php b/src/web/config/routes.php index 5bb9a1b..1275bfe 100644 --- a/src/web/config/routes.php +++ b/src/web/config/routes.php @@ -5,5 +5,6 @@ $routes['home'] = 'apps/home'; $routes['error'] = 'apps/error'; $routes['auth'] = 'apps/auth'; $routes['people'] = 'apps/people'; +$routes['profile'] = 'apps/profile'; $routes[''] = '_index'; -- cgit v1.2.3-freya