-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
65 lines (56 loc) · 2.51 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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE HTML>
<!--
Spectral by HTML5 UP
html5up.net | @ajlkn
Free for personal and commercial use under the CCA 3.0 license (html5up.net/license)
Spectral Mod Theme for Anchor CMS by Unloft
https://github.com/unloft
-->
<html>
<head>
<title><?php echo page_title('Page can’t be found'); ?> - <?php echo site_name(); ?></title>
<meta charset="utf-8" name="description" content="<?php echo site_description(); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<!--[if lte IE 8]><script src="<?php echo theme_url('assets/js/ie/html5shiv.js'); ?>"></script><![endif]-->
<link rel="stylesheet" href="<?php echo theme_url('img/og_image.gif'); ?>" />
<link rel="stylesheet" href="<?php echo theme_url('assets/css/main.css'); ?>" />
<!--[if lte IE 8]><link rel="stylesheet" href="<?php echo theme_url('assets/css/ie8.css'); ?>" /><![endif]-->
<!--[if lte IE 9]><link rel="stylesheet" href="<?php echo theme_url('assets/css/ie9.css'); ?>" /><![endif]-->
<link rel="alternate" type="application/rss+xml" title="RSS" href="<?php echo rss_url(); ?>">
<link rel="alternate" type="application/rss+xml" title="RSS" href="<?php echo rss_url(); ?>">
<meta property="og:title" content="<?php echo site_name(); ?>">
<meta property="og:type" content="website">
<meta property="og:url" content="<?php echo e(current_url()); ?>">
<meta property="og:image" content="<?php echo theme_url('img/og_image.gif'); ?>">
<meta property="og:site_name" content="<?php echo site_name(); ?>">
<meta property="og:description" content="<?php echo site_description(); ?>">
<?php if(customised()): ?>
<!-- Custom CSS -->
<style><?php echo article_css(); ?></style>
<!-- Custom Javascript -->
<script><?php echo article_js(); ?></script>
<?php endif; ?>
</head>
<body class="landing">
<!-- Page Wrapper -->
<div id="page-wrapper">
<!-- Header -->
<header id="header" class="alt">
<h1><a href="index.html">Spectral</a></h1>
<nav id="nav">
<ul>
<li class="special">
<a href="#menu" class="menuToggle"><span>Menu</span></a>
<div id="menu">
<ul>
<?php if(has_menu_items()):
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;
endif; ?>
</ul>
</div>
</li>
</ul>
</nav>
</header>