-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.php
executable file
·43 lines (26 loc) · 1.22 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title><?php echo page_title('Page can’t be found'); ?> - <?php echo site_name(); ?></title>
<meta name="description" content="<?php echo site_description(); ?>">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!--[if lt IE 9]>
<script src="//html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<link rel="stylesheet" href="<?php echo theme_url('/css/i.css'); ?>">
<link rel="shortcut icon" href="<?php echo theme_url('/css/favicon.png'); ?>">
<meta name="generator" content="Anchor CMS">
<?php if(customised()): ?>
<!-- Custom CSS -->
<style><?php echo article_css(); ?></style>
<!-- Custom Javascript -->
<script><?php echo article_js(); ?></script>
<?php endif; ?>
</head>
<body>
<header class="top">
<h1 class="h1 site-title no-margin site-logo mega center lh-1 padding-top"><?php echo site_name(); ?></h1>
<h2 class="sans-serif caps title-spacing tagline center"><?php echo site_description(); ?></h2>
</header>