mirror of
https://github.com/typemill/typemill.git
synced 2025-10-16 15:16:14 +02:00
22 lines
624 B
PHP
22 lines
624 B
PHP
<?php
|
|
|
|
DEFINE('DS', DIRECTORY_SEPARATOR);
|
|
|
|
return [
|
|
'title' => 'TYPEMILL',
|
|
'author' => 'Unknown',
|
|
'copyright' => 'Copyright',
|
|
'startpage' => true,
|
|
'rootPath' => __DIR__ . DS . '..' . DS,
|
|
'theme' => ($theme = 'typemill'),
|
|
'themeFolder' => ($themeFolder = 'themes'),
|
|
'themeBasePath' => __DIR__ . DS . '..' . DS,
|
|
'themePath' => __DIR__ . DS . '..' . DS . $themeFolder . DS . $theme,
|
|
'settingsPath' => __DIR__ . DS . '..' . DS . 'settings',
|
|
'authorPath' => __DIR__ . DS . 'author' . DS,
|
|
'contentFolder' => 'content',
|
|
'displayErrorDetails' => true,
|
|
'version' => '1.0.2'
|
|
];
|
|
|
|
?>
|