diff options
Diffstat (limited to 'src/web/config')
-rw-r--r-- | src/web/config/routes.php | 10 | ||||
-rw-r--r-- | src/web/config/style.php | 7 |
2 files changed, 17 insertions, 0 deletions
diff --git a/src/web/config/routes.php b/src/web/config/routes.php new file mode 100644 index 0000000..cb78a72 --- /dev/null +++ b/src/web/config/routes.php @@ -0,0 +1,10 @@ +<?php /* Copyright (c) 2024 Freya Murphy */ + +$routes = array(); +$routes[''] = 'home'; + +$routes['robots.txt'] = '_meta/robots'; +$routes['sitemap.xml'] = '_meta/sitemap'; +$routes['manifest.json'] = '_meta/manifest'; + +$serviceable = array('bucket'); diff --git a/src/web/config/style.php b/src/web/config/style.php new file mode 100644 index 0000000..6b29fab --- /dev/null +++ b/src/web/config/style.php @@ -0,0 +1,7 @@ +<?php /* Copyright (c) 2024 Freya Murphy */ + +$style = array(); + +$style['home'] = 'css/home.css'; +$style['blog'] = 'css/blog.css'; +$style['error'] = 'css/error.css'; |