-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.html
More file actions
107 lines (90 loc) · 2.76 KB
/
header.html
File metadata and controls
107 lines (90 loc) · 2.76 KB
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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<!DOCTYPE HTML>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, minimum-scale=1.0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta http-equiv="cache-control" content="no-siteapp">
<title>{$toptitle}</title>
<meta name="keywords" content="{$keywords}"/>
<meta name="description" content="{$description}"/>
<link type="text/css" rel="stylesheet" href="{$theme_path}/static/css/movie.css">
<style>
@media (max-width: 768px) {
.lists-content .thumb {
height: 110px;
}
}
</style>
</head>
<body class="searchon m-nav-full index">
<script>
function sou() {
$("body").addClass("searchform-active");
}
function souoff() {
$("body").removeClass("searchform-active");
}
</script>
<header class="header">
<div class="container">
<h1 class="logo">
<a href="/" title="{$toptitle}">
<img src="{$theme_path}/static/picture/logo.png" alt="{$toptitle}">
<span>{$toptitle}</span>
</a>
</h1>
<span class="searchstart-on" onclick="sou()">
<i class="fa">
</i>
</span>
<span class="searchstart-off" onclick="souoff()">
<i class="fa">
</i>
</span>
<form method="get" action="javascript:;" class="searchform">
<button tabindex="3" class="sbtn" type="submit">
<i class="fa">
</i>
</button>
<input tabindex="2" name="wd" class="sinput" type="text" placeholder="搜索电影、电视剧、综艺、动漫" value="">
</form>
<div class="nav">
<ul>
<li class='current-menu-item'>
<a href="/">
首页
</a>
</li>
<li>
<a href="{随机栏目URL}">
电影 </a>
</li>
<li>
<a href="{随机栏目URL}">
连续剧 </a>
</li>
<li>
<a href="{随机栏目URL}">
综艺 </a>
</li>
<li>
<a href="{随机栏目URL}">
动漫 </a>
</li>
</ul>
</div>
<span class="nav-on">
<i class="fa">
</i>
</span>
<span class="nav-mask">
</span>
</div>
</header>