This repository has been archived by the owner on Jan 24, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsearch.html
66 lines (65 loc) · 1.91 KB
/
search.html
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
<!DOCTYPE html>
<html lang="ja">
<head>
<meta charset="utf-8">
<title>ゆいゆい検索!!</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link href="css/bootstrap.css" rel="stylesheet">
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
<style>
.snippet {
font-size: smaller;
color: gray;
}
.keyword {
font-weight: bold;
color: red;
}
.title {
font-weight: bold;
}
.site_info {
font-size: smaller;
color: gray;
}
#count {
font-size: smaller;
color: gray;
}
</style>
</head>
<body>
<div class="container">
<div class="page-header">
<div class="row">
<div class="col-md-2">
<a href="./"><img src="images/logo-small.png" /></a>
</div>
<div class="col-md-6">
<form action="" method="get" class="form-search">
<div class="input-group input-group-sm">
<input type="text" name="q" class="form-control">
<span class="input-group-btn">
<button class="btn btn-default" type="submit"><span class="glyphicon glyphicon-search"></span></button>
</span>
</div>
</form>
</div>
<div class="col-sm-2">
<div id="tweet"></div>
</div>
</div>
</div>
<div id="count"></div>
<div id="contents"></div>
</div>
<script src="https://code.jquery.com/jquery.js"></script>
<script src="js/bootstrap.js"></script>
<script src="js/purl.js"></script>
<script src="js/jquery.socialbutton.js"></script>
<script src="js/search.js?0"></script>
</body>
</html>