2011-04-14 08:13:39 -04:00
|
|
|
<?php
|
|
|
|
$theme = Array();
|
|
|
|
|
|
|
|
// Theme name
|
2011-05-25 06:18:19 -04:00
|
|
|
$theme['name'] = 'Frameset (alpha)';
|
2011-04-14 08:13:39 -04:00
|
|
|
// Description (you can use Tinyboard markup here)
|
|
|
|
$theme['description'] =
|
|
|
|
'Use a basic frameset layout, with a list of boards and pages on a sidebar to the left of the page.
|
|
|
|
|
|
|
|
Users never have to leave the homepage; they can do all their browsing from the one page.';
|
2011-05-25 06:18:19 -04:00
|
|
|
$theme['version'] = 'v0.0.1';
|
2011-04-14 08:13:39 -04:00
|
|
|
|
|
|
|
// Theme configuration
|
|
|
|
$theme['config'] = Array();
|
|
|
|
|
|
|
|
$theme['config'][] = Array(
|
|
|
|
'title' => 'Title',
|
|
|
|
'name' => 'title',
|
|
|
|
'type' => 'text'
|
|
|
|
);
|
|
|
|
|
|
|
|
$theme['config'][] = Array(
|
|
|
|
'title' => 'Slogan',
|
|
|
|
'name' => 'subtitle',
|
|
|
|
'type' => 'text'
|
|
|
|
);
|
|
|
|
|
|
|
|
// Unique function name for building everything
|
|
|
|
$theme['build_function'] = 'frameset_build';
|
|
|
|
?>
|