frameset theme: transition to twig, plus more configurable

This commit is contained in:
Michael Save
2012-02-14 21:02:06 +11:00
parent bac326a365
commit cdfd67c87a
5 changed files with 134 additions and 88 deletions

View File

@@ -2,19 +2,19 @@
$theme = Array();
// Theme name
$theme['name'] = 'Frameset (alpha)';
$theme['name'] = 'Frameset';
// 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.';
$theme['version'] = 'v0.0.1';
$theme['version'] = 'v0.1';
// Theme configuration
$theme['config'] = Array();
$theme['config'][] = Array(
'title' => 'Title',
'title' => 'Site title',
'name' => 'title',
'type' => 'text'
);
@@ -22,9 +22,34 @@ Users never have to leave the homepage; they can do all their browsing from the
$theme['config'][] = Array(
'title' => 'Slogan',
'name' => 'subtitle',
'type' => 'text'
'type' => 'text',
'comment' => '(optional)'
);
$theme['config'][] = Array(
'title' => 'Main HTML file',
'name' => 'file_main',
'type' => 'text',
'default' => $config['file_index'],
'comment' => '(eg. "index.html")'
);
$theme['config'][] = Array(
'title' => 'Sidebar file',
'name' => 'file_sidebar',
'type' => 'text',
'default' => 'sidebar.html',
'comment' => '(eg. "sidebar.html")'
);
$theme['config'][] = Array(
'title' => 'News file',
'name' => 'file_news',
'type' => 'text',
'default' => 'news.html',
'comment' => '(eg. "news.html")'
);
// Unique function name for building everything
$theme['build_function'] = 'frameset_build';
?>
?>