blob: ac47d8962235b03c70a667daac327ab5631e88f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?php
/**
* Elgg header contents
* This file holds the header output that a user will see
*
* @package Elgg
* @subpackage Core
* @author Curverider Ltd
* @link http://elgg.org/
**/
?>
<div id="page_container">
<div id="page_wrapper">
<div id="layout_header">
<div id="wrapper_header">
<!-- display the page title -->
<h1><a href="<?php echo $vars['url']; ?>"><?php echo $vars['config']->sitename; ?></a></h1>
</div><!-- /#wrapper_header -->
</div><!-- /#layout_header -->
|