-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathindex.html
More file actions
49 lines (46 loc) · 2.27 KB
/
index.html
File metadata and controls
49 lines (46 loc) · 2.27 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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<title>Search Hamlet</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="format-detection" content="telephone=no">
<meta name="renderer" content="webkit">
<meta http-equiv="Cache-Control" content="no-siteapp" />
<link rel="icon" type="image/png" href="assets/i/favicon.png">
<link rel="apple-touch-icon-precomposed" href="assets/i/app-icon72x72@2x.png">
<meta name="apple-mobile-web-app-title" content="Hamlet" />
<link rel="stylesheet" href="assets/css/amazeui.min.css">
<link rel="stylesheet" href="assets/css/app.css">
</head>
<body>
<!--[if lte IE 9]>
<p class="browsehappy">你正在使用<strong>过时</strong>的浏览器,Amaze UI 暂不支持。 请 <a href="http://browsehappy.com/" target="_blank">升级浏览器</a>
以获得更好的体验!</p>
<![endif]-->
<header>
<div class="am-g">
<h1>Searching for Hamlet</h1>
<p>Want to know if specific text exists in Hamlet?</p>
</div>
</header>
<div class="am-g">
<div class="col-lg-6 col-md-8 col-sm-centered">
<form id="query" class="am-form" role="search">
<input type="search" name="" id="q" value="" placeHolder="Try enterprise, tragedy, etc...">
</form>
<ul id="result" class="am-list am-list-static">
</ul>
</div>
</div>
<footer class="am-g">
<hr>
<p class="am-text-center">© 2014 <a href="http://zhouyiyan.cn">YI YAN ZHOU</a> / Powered by <a href="http://amazeui.org/">AMUI</a> and <a href="https://github.com/balzaczyy/golucene">GoLucene</a>.</p>
</footer>
<script src="assets/js/zepto.promise.min.js?1.1.4"></script>
<script src="assets/js/amazeui.min.js"></script>
<script src="assets/js/app.js"></script>
<a href="https://github.com/balzaczyy/hamlet"><img style="position: absolute; top: 0; right: 0; border: 0;" src="https://camo.githubusercontent.com/365986a132ccd6a44c23a9169022c0b5c890c387/68747470733a2f2f73332e616d617a6f6e6177732e636f6d2f6769746875622f726962626f6e732f666f726b6d655f72696768745f7265645f6161303030302e706e67" alt="Fork me on GitHub" data-canonical-src="https://s3.amazonaws.com/github/ribbons/forkme_right_red_aa0000.png"></a>
</body>
</html>