Add rules page

This commit is contained in:
Michael Walker 2014-09-28 19:43:24 +00:00
parent 3cd0a6093c
commit 63efe1e0db
4 changed files with 131 additions and 0 deletions

View file

@ -0,0 +1,23 @@
<?php
$theme = array(
'name' => 'Rules',
'description' => 'Display the lainchan rules',
'version' => 'v1',
'config' => array(
array('title' => 'Page title',
'name' => 'title',
'type' => 'text'),
array('title' => 'Slogan',
'name' => 'subtitle',
'type' => 'text',
'comment' => '(optional)'),
array('title' => 'File',
'name' => 'file',
'type' => 'text',
'default' => 'rules.html')),
'build_function' => 'rules_build');
?>