-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathheader.php
executable file
·69 lines (67 loc) · 2.15 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
65
66
67
68
69
<!doctype html>
<html class="theme-next use-motion theme-next-mist">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge, chrome=1">
<link rel="shortcut icon" href="<?php wexweb('favicon','');?>">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url');?>/css/font-css/current.css" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url');?>/css/font.css" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url');?>/css/jquery.fancybox.css" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url');?>/css/font-awesome.min.css" />
<link rel="stylesheet" type="text/css" href="<?php bloginfo('stylesheet_url');?>" />
<script type="text/javascript" id="hexo.configuration">
var CONFIG = {
scheme: 'Mist',
motion: true,
sidebar: 'post'
};
</script>
<?php
include ('seo.php');
wp_head();
?>
</head>
<body>
<div class="container one-column page-home">
<div class="headband"></div>
<header id="header" class="header">
<div class="header-inner">
<div class="site-meta">
<?php
if (cs_get_option('logo_switcher')==true){
include ('element/header-img-logo.php');
}
else{
include ('element/header-text-logo.php');
}
?>
</div>
<div class="site-nav-toggle">
<button>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
<span class="btn-bar"></span>
</button>
</div>
<nav class="site-nav">
<?php
$main = array(
'theme_location' =>'main-menu',
'container' => 'false',
'menu_class' => 'menu menu-left',
'menu_id' => 'menu',
'fallback_cb' => 'wp_page_menu',
'depth' => 1,
);
wp_nav_menu( $main );
?>
<div class="site-search">
<form class="site-search-form">
<input type="text" id="st-search-input" name="s" class="st-search-input st-default-search-input"
autocomplete="off" autocorrect="off" autocapitalize="off" value="" />
</form>
</div>
</nav>
</div>
</header>