-
Notifications
You must be signed in to change notification settings - Fork 4
/
apps.html
84 lines (79 loc) · 3.65 KB
/
apps.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
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title data-i18n="page_title_apps" >Apps | Syncloud</title>
<meta name="author" content="syncloud.org">
<meta name="description" content="Your Personal Server">
<meta name="keywords" content="Your Personal Server">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0, user-scalable=no">
<meta name="HandheldFriendly" content="true" />
<meta name="MobileOptimized" content="width" />
<meta content="yes" name="apple-mobile-web-app-capable" />
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32">
<link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16">
<link rel="manifest" href="/manifest.json">
<link rel="mask-icon" href="/safari-pinned-tab.svg" color="#64bc46">
<meta name="theme-color" content="#ffffff">
<link rel="stylesheet" href="css/landing_links.css" type="text/css">
<link rel="stylesheet" href="css/bootstrap.min.css">
<link rel="stylesheet" href="css/flags.css">
</head>
<body style="display: none">
<!--HEADER-->
<div id="header"></div>
<!--headerbg-->
<div class="headerbg">
<div class="block1 wd12" id="block1">
<h1 data-i18n="apps" >Apps</h1>
</div>
</div>
<!--link_block2-->
<div class="link_block wd12" id="block2">
<div class="rowthree" id="apps">
</div>
</div>
<!--footer-->
<div id="footer"></div>
<script type="text/html" id='app-template'>
<% _.each(apps, function (app) { %>
<div class="threeblock" style="padding: 0px 0px 15px 0px">
<div style="margin-left: 0;; width: 30%; display:inline-block;vertical-align:top;text-align:left">
<img style="margin-left: 0; border-radius:20%;" src="images/apps/<%= app.id %>-128.png">
</div>
<div style="width: 60%; display:inline-block;vertical-align:top;text-align:left" >
<div style="font-size: 20px"><%= app.name %></div>
<div ><%= app.description %></div>
</div>
</div>
<% }); %>
</script>
<!-- Scripts-->
<script src="js/jquery-1.11.3.min.js"></script>
<script src="js/jquery.scrollTo.min.js"></script>
<script src="js/google-analytics.js"></script>
<script src="js/i18next.min.js" ></script>
<script src="js/i18nextXHRBackend.min.js" ></script>
<script src="js/jquery-i18next.min.js" ></script>
<script src="js/i18nextBrowserLanguageDetector.min.js" ></script>
<script src="js/translation.js" ></script>
<script src="js/landing.js"></script>
<script src="js/bootstrap.min.js"></script>
<script src="js/jquery.flagstrap.js"></script>
<script src="js/underscore-min.js"></script>
<script>
$(document).ready(function() {
$.getJSON("apps.json").done(function (data) {
$("#apps").html(_.template($("#app-template").html())(data));
});
init_page("apps");
});
</script>
<!--[if lt IE 9]>
<script src="js/html5.js"></script>
<script src="js/IE9.js"></script>
<![endif]-->
<!-- END SCRIPTS -->
</body>
</html>