summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-20 13:34:27 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-20 13:34:27 -0400
commit8e81943c2c6588be7e4c695172e757243b7a0d74 (patch)
tree86e737913ba607fef2adf9b9857781372131a523 /lib
parent31c7a0056e049f567127a58b8b3bd455d5f630f7 (diff)
make the code use the default style
darcs-hash:20080520173427-84dde-890b794c42ab3c29c23aa542fee3232fd41463a3.gz
Diffstat (limited to 'lib')
-rw-r--r--lib/util.php25
1 files changed, 24 insertions, 1 deletions
diff --git a/lib/util.php b/lib/util.php
index f05c47e68..24f0e5dd8 100644
--- a/lib/util.php
+++ b/lib/util.php
@@ -85,16 +85,39 @@ function common_show_header($pagetitle) {
common_element_start('head');
common_element('title', NULL,
$pagetitle . " - " . $config['site']['name']);
+ common_element('link', array('rel' => 'stylesheet',
+ 'type' => 'text/css',
+ 'href' => $config['site']['path'] . 'theme/default/style/html.css',
+ 'media' => 'screen, projection, tv'));
+ common_element('link', array('rel' => 'stylesheet',
+ 'type' => 'text/css',
+ 'href' => $config['site']['path'] . 'theme/default/style/layout.css',
+ 'media' => 'screen, projection, tv'));
+ common_element('link', array('rel' => 'stylesheet',
+ 'type' => 'text/css',
+ 'href' => $config['site']['path'] . 'theme/default/style/print.css',
+ 'media' => 'print'));
common_element_end('head');
common_element_start('body');
+ common_element_start('div', array('id' => 'wrapper'));
+ common_element_start('div', array('id' => 'content'));
+ common_element_start('div', array('id' => 'header'));
common_element('h1', 'title', $pagetitle);
+ common_element('h2', 'subtitle', $config['site']['name']);
+ common_element_end('div');
common_head_menu();
+ common_element_start('div', array('id' => 'page'));
}
function common_show_footer() {
global $xw, $config;
+ common_element_start('p', 'footer');
common_foot_menu();
common_license_block();
+ common_element_end('p');
+ common_element_end('div');
+ common_element_end('div');
+ common_element_end('div');
common_element_end('body');
common_element_end('html');
$xw->endDocument();
@@ -127,7 +150,7 @@ function common_license_block() {
function common_head_menu() {
$user = common_current_user();
- common_element_start('ul', 'headmenu');
+ common_element_start('ul', array('id' => 'menu', 'class' => ($user) ? 'five' : 'three'));
common_menu_item(common_local_url('doc', array('title' => 'help')),
_t('Help'));
if ($user) {