-
Notifications
You must be signed in to change notification settings - Fork 0
/
header.php
38 lines (34 loc) · 1.1 KB
/
header.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
34
35
36
37
38
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title><?php echo site_name(). ' - ' . article_title()?></title>
<meta name="description" content="<?php echo site_description(); ?>">
<link rel="stylesheet" href="<?php echo theme_url('/css/stylesheet.css'); ?>">
<meta name="viewport" content="width=device-width"/>
<?php if(customised()): ?>
<!-- Custom CSS -->
<style><?php echo article_css(); ?></style>
<!-- Custom Javascript -->
<script><?php echo article_js(); ?></script>
<?php endif; ?>
</head>
<body>
<header id="top">
<div id="nav_wrap">
<a href="<?php echo base_url();?>"><p id="heading"><?php echo site_name(); ?></p></a>
<?php if(has_menu_items()): ?>
<nav id="main" role="navigation">
<ul>
<?php while(menu_items()): ?>
<li <?php echo (menu_active() ? 'class="active"' : ''); ?>>
<a href="<?php echo menu_url(); ?>" title="<?php echo menu_title(); ?>">
<?php echo menu_name(); ?>
</a>
</li>
<?php endwhile; ?>
</ul>
</nav>
<?php endif; ?>
</div>
</header>