blob: 33a0f8b96974f53cb1e8abf1f6d77e95be3258a3 (
plain)
1
2
3
4
5
6
7
8
9
|
<?php /* Copyright (c) 2024 Freya Murphy */
$style = array();
$style['home'] = 'css/home.css';
$style['blog'] = ['css/blog.css', 'css/prism.css'];
$style['error'] = 'css/error.css';
$style['prism'] = 'css/prism.css';
$js = array();
$js['blog'] = 'js/prism.js';
|