-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
44 lines (41 loc) · 2.38 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
<!DOCTYPE html>
<html>
<head>
<title>Image Sync</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0;" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.css" />
<link rel="stylesheet" href="css/style.css" />
<link rel="stylesheet" href="css/photoswipe.css" />
<script type="text/javascript" src="http://code.jquery.com/jquery-1.6.4.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0/jquery.mobile-1.0.min.js"></script>
<script type="text/javascript" src="js/klass.min.js"></script>
<script type="text/javascript" src="js/code.photoswipe.jquery-3.0.4.min.js"></script>
<script type="text/javascript" src="js/custom.js"></script>
</head>
<body>
<div data-role="page" data-add-back-btn="true">
<div data-role="header" id="header">
<h1>Image Sync</h1>
</div><!-- /header -->
<div data-role="content">
<fieldset class="ui-grid-a">
<div class="ui-block-a"><a href="CreateMoment.html" data-role="button" data-icon="plus" data-theme="b" id="NewMoment"> Moment </a></div>
<div class="ui-block-b"><a href="Memories.html" data-role="button" data-icon="star" data-theme="b" id="OldMemories"> Memory </a></div>
</fieldset>
<fieldset class="ui-grid-a">
<div class="ui-block-a"><a href="GetAlbum.html" data-role="button" data-icon="check" data-theme="b" id="GetAlbum">Get Album</a></div>
<div class="ui-block-b"><a href="StopSync.html" data-role="button" data-icon="delete" data-theme="b" id="StopSync">Stop Sync</a></div>
</fieldset>
<p class="copyright">Copyright © ImageSync. Designed by <a href="https://github.com/SanchitAggarwal/ImageSync.git" class="ui-link">AimLess</a></p>
</div><!-- /content -->
<div data-role="footer" data-theme="a">
<div class="ui-bar">
<a href="" data-role="button" data-icon="arrow-u" data-theme="a" style="float:right;" class="returnTopAction">Return top</a>
</div>
</div>
<!-- /Footer -->
</div><!-- /page -->
</body>
</html>