leftypol_vichan/templates/themes/basic/info.php

28 lines
629 B
PHP
Raw Normal View History

2011-04-14 12:13:39 +00:00
<?php
$theme = Array();
// Theme name
$theme['name'] = 'Basic';
// Description (you can use Tinyboard markup here)
2012-02-07 22:08:13 +00:00
$theme['description'] = 'Extremely basic news listing for the homepage. Enabling boardlinks is recommended for this theme.';
$theme['version'] = 'v0.9.1';
2011-04-14 12:13:39 +00: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'] = 'basic_build';
2012-02-07 22:08:13 +00:00
?>