blob: 0b1cc3a39b7e09571835ed33119b204aaf8ed2ec (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?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';
$routes['rss.xml'] = 'blog/rss';
$serviceable = array('bucket');
|