aboutsummaryrefslogtreecommitdiff
path: root/views/default/page_elements/header.php
blob: fdf2e7ecaf8572467f1b38784ef91a4f44c78621 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
<?php

	/**
	 * Elgg pageshell when logged out
	 * The standard HTML header that displays across the site
	 * 
	 * @package Elgg
	 * @subpackage Core
	 * @license http://www.gnu.org/licenses/old-licenses/gpl-2.0.html GNU Public License version 2
	 * @author Curverider Ltd
	 * @copyright Curverider Ltd 2008
	 * @link http://elgg.org/
	 * 
	 * @uses $vars['config'] The site configuration settings, imported
	 * @uses $vars['title'] The page title
	 * @uses $vars['body'] The main content of the page
	 * @uses $vars['messages'] A 2d array of various message registers, passed from system_messages()
	 */
	 
	 // Set title
		if (empty($vars['title'])) {
			$title = $vars['sitename'];
		} else if (empty($vars['sitename'])) {
			$title = $vars['title'];
		} else {
			$title = $vars['sitename'] . ": " . $vars['title'];
		}
		
?>

<html>
	<head>
		<title><?php echo $title; ?></title>
		<!-- include links to jQuery here? -->
		<!-- include the default css file -->
		<link rel="stylesheet" href="<?php echo $vars['url']; ?>css/css.php" type="text/css" />
	</head>
	<body>
	<div id="container">
	<div id="header">
	    <!-- display the page title -->
        <h1><a href="<?php echo $vars['url']; ?>"><?php echo $vars['sitename']; ?></a></h1>
        <h2><?php echo $vars['title']; ?></h2>
        <!-- display top level navigation -->
        <?php echo elgg_view('navigation/topmenu'); ?>
    </div><!-- close the header div -->