-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathheader.php
32 lines (27 loc) · 1.62 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
<?php namespace Habari; ?>
<!DOCTYPE HTML>
<head>
<title><?php Options::out('title'); ?> — <?php if( $request->display_entry ) { echo $post->title; } else { Options::out('tagline'); } ?></title>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<meta name="description" content="Personal Website of developer, designer and author Chris J. Davis">
<meta name="author" content="Chris J. Davis">
<meta name="ISSN" content="1544-4104">
<link href="http://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,700,900,300italic" rel="stylesheet">
<link href="http://weloveiconfonts.com/api/?family=fontawesome" rel="stylesheet">
<noscript>
<link rel="stylesheet" href="<?php Site::out_url('theme'); ?>/css/skel-noscript.css">
<link rel="stylesheet" href="<?php Site::out_url('theme'); ?>/css/style.css">
<link rel="stylesheet" href="<?php Site::out_url('theme'); ?>/css/style-desktop.css">
</noscript>
<!--[if lte IE 8]><script src="<?php Site::out_url('theme'); ?>/js/html5shiv.js"></script><link rel="stylesheet" href="<?php Site::out_url('theme'); ?>/css/ie8.css" /><![endif]-->
<script type="text/javascript">
if ( typeof(DPT) == "undefined" ) { DPT = {}; }
DPT.url = "<?php Site::out_url('habari'); ?>";
DPT.theme = "<?php Site::out_url('theme'); ?>";
</script>
<script src="<?php Site::out_url('theme'); ?>/js/jquery.min.js"></script>
<script src="<?php Site::out_url('theme'); ?>/js/config.js"></script>
<script src="<?php Site::out_url('theme'); ?>/js/skel.min.js"></script>
<script src="<?php Site::out_url('theme'); ?>/js/skel-panels.min.js"></script>
<?php echo $theme->header(); ?>
</head>