Browse Source

Categories theme v0.2

pull/40/head
Michael D. Reiley 13 years ago
parent
commit
c210cdbfea
  1. 4
      templates/themes/categories/info.php
  2. 12
      templates/themes/categories/theme.php
  3. BIN
      templates/themes/categories/thumb.png

4
templates/themes/categories/info.php

@ -5,10 +5,10 @@
$theme['name'] = 'Categories';
// Description (you can use Tinyboard markup here)
$theme['description'] =
'Group-ordered, category-aware modification of the Frameset theme.
'Group-ordered, category-aware modification of the Frameset theme, with removable sidebar frame.
Requires $config[\'boards\'] and $config[\'categories\'].';
$theme['version'] = 'v0.1';
$theme['version'] = 'v0.2';
// Theme configuration
$theme['config'] = Array();

12
templates/themes/categories/theme.php

@ -59,7 +59,11 @@
. '<title>News</title>'
. '</head><body>';
$body .= '<h1>' . $settings['title'] . '</h1>'
$boardlist = createBoardlist();
$body .= $boardlist['top']
. '<h1>' . $settings['title'] . '</h1>'
. '<div class="title">' . ($settings['subtitle'] ? utf8tohtml($settings['subtitle']) : '') . '</div>';
$query = query("SELECT * FROM `news` ORDER BY `time` DESC") or error(db_error());
@ -105,10 +109,16 @@
. '</style>'
. '<base target="main" />'
. '<title>' . $settings['title'] . '</title>'
. '<script type="text/javascript">'
. 'function removeFrames() {'
. 'parent.window.location = "' . $config['root'] . 'news.html"'
. '}'
. '</script>'
. '</head><body>';
$body .= '<fieldset><legend>' . $settings['title'] . '</legend><ul>' .
'<li><a class="system" href="news.html">[News]</a></li>' .
'<li><a class="system" href="javascript:removeFrames()">[Remove Frames]</a></li>' .
'</ul></fieldset>';
for($cat = 0; $cat < count($config['categories']); $cat++) {

BIN
templates/themes/categories/thumb.png

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.2 KiB

After

Width:  |  Height:  |  Size: 9.7 KiB

Loading…
Cancel
Save