-
Notifications
You must be signed in to change notification settings - Fork 6
/
header.php
32 lines (29 loc) · 1.25 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
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8">
<meta name="author" content="icylogic">
<meta name="desciption" content="Lorem ipsum dolor sit amet, consectetur adipiscing elit. Phasellus ante.">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>
<?php $this->archiveTitle('','',' - '); ?>
<?php $this->options->title(); ?>
</title>
<link rel="stylesheet" type="text/css" href="<?php $this->options->themeUrl('css/normalize.min.css') ?>">
<link rel="stylesheet" type="text/css" href="<?php $this->options->themeUrl('css/carbon.css') ?>">
<?php $this->header(); ?>
</head>
<body>
<div id="container">
<div id="banner">
<h1 id="site-title"><a href="<?php $this->options->siteUrl() ?>"><?php $this->options->title(); ?></a></h1>
<span id="site-subtitle">
<?php $this->options->slogan() ?>
</span>
<span id="search">
<form method="post" action="#" class="panel-body" id="search-form">
<input type="text" name="s" id="search-input" placeholder="What're you looking for?" />
</span>
</form>
</span>
</div>