-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patharchive.html
More file actions
58 lines (51 loc) · 1.54 KB
/
archive.html
File metadata and controls
58 lines (51 loc) · 1.54 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<title>ReadLog App Tutorial</title>
<!-- mobile meta -->
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<!-- css -->
<link rel="stylesheet" href="bower_components/ratchet/dist/css/ratchet.min.css">
<link rel="stylesheet" href="bower_components/ratchet/dist/css/ratchet-theme-ios.min.css">
<!-- js -->
<script src="bower_components/ratchet/dist/js/ratchet.min.js"></script>
</head>
<body>
<header class="bar bar-nav">
<a class="icon icon-plus pull-right" href="#"></a>
<h1 class="title">ReadLog Archive</h1>
</header>
<nav class="bar bar-tab">
<ul class="tab-inner">
<li class="tab-item">
<a href="index.html">
<span class="icon icon-bars"></span>
<span class="tab-label">Stack</span>
</a>
</li>
<li class="tab-item active">
<a href="archive.html">
<span class="icon icon-pages"></span>
<span class="tab-label">Archive</span>
</a>
</li>
<li class="tab-item">
<a href="options.html">
<span class="icon icon-gear"></span>
<span class="tab-label">Options</span>
</a>
</li>
</ul>
</nav>
<div class="content">
<ul>
<li>Books</li>
<li>Books</li>
<li>Books</li>
</ul>
</div>
</body>
</html>