2025-05-19 12:05:07 +00:00
|
|
|
<?php
|
|
|
|
|
|
2026-03-25 10:51:18 +00:00
|
|
|
global $config;
|
|
|
|
|
$siteName = (string)$config['site_name'];
|
|
|
|
|
|
2025-05-19 12:05:07 +00:00
|
|
|
return [
|
|
|
|
|
'name' => 'Modern theme',
|
2026-03-25 10:51:18 +00:00
|
|
|
'description' => sprintf('Example theme. A modern, clean theme for %s.', $siteName),
|
2025-05-19 12:05:07 +00:00
|
|
|
'version' => '1.0.0',
|
|
|
|
|
'author' => 'Lindeas Inc.',
|
|
|
|
|
'screenshot' => 'screenshot.png',
|
|
|
|
|
'options' => [
|
|
|
|
|
// Theme-specific options can be defined here
|
|
|
|
|
]
|
|
|
|
|
];
|