forked from harvesthq/Sidetap
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
112 lines (96 loc) · 3.91 KB
/
index.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
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
108
109
110
111
112
<!DOCTYPE html>
<html>
<head>
<meta charset='utf-8' />
<title>Stonehenge</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
<link type="text/css" rel="stylesheet" media="screen" href="../../src/sidetap.css" />
<link type="text/css" rel="stylesheet" media="screen" href="../../src/theme/default/default.css" />
<link type="text/css" rel="stylesheet" media="screen" href="assets/css/stonehenge.css" />
</head>
<body>
<div class="sidetap">
<!-- Navigation -->
<div class="stp-nav">
<nav>
<a href="#" class="selected">On Stage</a>
<a href="#">Goes to 11</a>
<a href="#">Drum Sets</a>
<a href="#">Guitars</a>
</nav>
</div>
<div class="stp-content" id="content">
<header class="stp-fake-header"> </header>
<div class="stp-overlay nav-toggle"> </div>
<!-- Gallery -->
<div class="stp-content-panel" id="gallery">
<header>
<a href="javascript:void(0)" class="header-button icon menu"><span>Menu</span></a>
<a href="javascript:void(0)" class="header-button icon info right"><span>Info</span></a>
<h1></h1>
</header>
<div class="stp-content-frame">
<div class="stp-content-body">
<div class="container">
<ul class="thumbnails"></ul>
</div>
</div>
</div>
</div>
<!-- Detail page -->
<div class="stp-content-panel hidden" id="detail">
<header>
<a href="javascript:void(0)" class="header-button back">Back</a>
</header>
<div class="stp-content-frame">
<div class="stp-content-body">
<div class="container">
<figure>
<img src="" alt="" />
<figcaption>
<cite></cite>
<address class="author">by <a href="#" rel="author"></a></address>
</figcaption>
</figure>
</div>
</div>
</div>
</div>
<!-- About page -->
<div class="stp-content-panel hidden" id="about">
<header>
<a href="javascript:void(0)" class="header-button cancel right">Done</a>
<h1>What's This?</h1>
</header>
<div class="stp-content-frame">
<div class="stp-content-body">
<div class="container">
This is (a demo of)
<img src="../../docs/sidetap-logo.png" alt="Sidetap Demo" class="sidetap-logo" />
<a href="http://sidetap.it/" class="button">Click here for more info</a>
<small>Built by <a href="http://www.getharvest.com">Harvest</a></small>
</div>
</div>
</div>
</div>
</div>
</div>
<script type="text/javascript" src="../../lib/jquery.1.7.2.js"></script>
<script type="text/javascript" src="../../src/sidetap.js"></script>
<script type="text/javascript" src="../../lib/harvey.js"></script>
<script type="text/javascript" src="assets/js/images.js"></script>
<script type="text/javascript" src="assets/js/stonehenge.js"></script>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-103886-25']);
_gaq.push(['_trackPageview']);
(function() {
var ga = document.createElement('script'); ga.type = 'text/javascript'; ga.async = true;
ga.src = ('https:' == document.location.protocol ? 'https://ssl' : 'http://www') '.google-analytics.com/ga.js';
var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(ga, s);
})();
</script>
</body>
</html>