sarga/config/themes.php

20 lines
494 B
PHP
Raw Normal View History

2018-08-17 05:48:21 +00:00
<?php
return [
2018-10-17 10:30:31 +00:00
'default' => 'default',
2018-08-17 05:48:21 +00:00
'themes' => [
'default' => [
'views_path' => 'resources/themes/default/views',
'assets_path' => 'public/themes/default/assets',
'name' => 'Dafault'
],
2018-10-17 10:30:31 +00:00
// 'bliss' => [
// 'views_path' => 'resources/themes/bliss/views',
// 'assets_path' => 'public/themes/bliss/assets',
// 'name' => 'Bliss',
// 'parent' => 'default'
// ]
2018-08-17 05:48:21 +00:00
]
];