summaryrefslogtreecommitdiff
path: root/src/web/config
diff options
context:
space:
mode:
Diffstat (limited to 'src/web/config')
-rw-r--r--src/web/config/aesthetic.php10
-rw-r--r--src/web/config/routes.php1
2 files changed, 10 insertions, 1 deletions
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';