-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhome.php
33 lines (33 loc) · 913 Bytes
/
home.php
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
<?php namespace Habari; ?>
<?php $theme->display('header'); ?>
<body class="homepage">
<div id="header-wrapper">
<section id="header">
<?php if( $loggedin ) { ?>
<nav id="nav" class="rearranger">
<ul>
<li><a id="reorder" href="<?php Site::out_url('habari'); ?>">Reorder</a></li>
<li class="current_page_item"><a href="<?php Site::out_url('habari'); ?>">Add Block</a></li>
<li>
<select>
<option>Featured Post</option>
<option>Dribble Shots</option>
<option>Excerpts from Blog</option>
</select>
</li>
</ul>
</nav>
<?php } ?>
</section>
<div class="container">
<?php $theme->display('latest'); ?>
<?php $theme->display('nav'); ?>
</div>
</div>
<div id="main-wrapper">
<div class="container">
<?php $theme->display('portfolio'); ?>
<?php $theme->display('blog'); ?>
</div>
</div>
<?php $theme->display('footer'); ?>