1
0
mirror of https://github.com/typemill/typemill.git synced 2025-10-22 10:06:07 +02:00

Version 1.0.0

This commit is contained in:
Sebastian
2017-04-14 21:45:15 +02:00
commit f39d60b60b
1064 changed files with 79822 additions and 0 deletions

23
system/settings.php Normal file
View File

@@ -0,0 +1,23 @@
<?php
DEFINE('DS', DIRECTORY_SEPARATOR);
return [
'settings' => [
'title' => 'TYPEMILL',
'author' => 'unknown',
'copyright' => 'copyright',
'startpage' => true,
'rootPath' => __DIR__ . DS . '..' . DS,
'theme' => ($theme = 'typemill'),
'themeFolder' => ($themeFolder = 'themes'),
'themePath' => __DIR__ . DS . '..' . DS . $themeFolder . DS . $theme,
'settingsPath' => __DIR__ . DS . '..' . DS . 'settings',
'authorPath' => __DIR__ . DS . 'author' . DS,
'contentFolder' => 'content',
'displayErrorDetails' => false,
'version' => '1.0.0'
],
];
?>