Initial commit: CodePress CMS with blog content from noorlander.info
- Complete PHP CMS with Bootstrap 5 - Multi-format content support (MD/PHP/HTML) - Dynamic navigation with collapsible folders - Search functionality with snippets - WCAG compliant design - Blog content imported from Edwin Noorlander's personal blog - README with project background and credits
This commit is contained in:
16
config.php
Normal file
16
config.php
Normal file
@@ -0,0 +1,16 @@
|
||||
<?php
|
||||
|
||||
return [
|
||||
'site_title' => 'CodePress',
|
||||
'site_description' => 'A simple PHP CMS',
|
||||
'base_url' => '/',
|
||||
'content_dir' => __DIR__ . '/content',
|
||||
'templates_dir' => __DIR__ . '/templates',
|
||||
'cache_dir' => __DIR__ . '/cache',
|
||||
'default_page' => 'home',
|
||||
'error_404' => '404',
|
||||
'markdown_enabled' => true,
|
||||
'php_enabled' => true,
|
||||
'bootstrap_version' => '5.3.0',
|
||||
'jquery_version' => '3.7.1'
|
||||
];
|
||||
Reference in New Issue
Block a user