15 lines
355 B
PHP
15 lines
355 B
PHP
<?php
|
|
$theme = Array();
|
|
|
|
// Theme name
|
|
$theme['name'] = '4chon';
|
|
// Description (you can use Tinyboard markup here)
|
|
$theme['description'] = 'Official 4chon.net theme.';
|
|
$theme['version'] = 'v0.9';
|
|
|
|
// Theme configuration
|
|
$theme['config'] = Array();
|
|
|
|
// Unique function name for building everything
|
|
$theme['build_function'] = 'chon_build';
|
|
?>
|