-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
98 lines (69 loc) · 2.33 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
<!DOCTYPE html>
<html>
<head>
<title>Slidle</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1">
<!-- Facilitate "Save to Homescreen" feature on iOS devices -->
<!-- TODO similar for Android? -->
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="apple-mobile-web-app-title" content="Slidle">
<link rel="apple-touch-icon" href="png/icon-60.png">
<link rel="apple-touch-icon" sizes="76x76" href="png/icon-76.png">
<link rel="apple-touch-icon" sizes="120x120" href="png/icon-120.png">
<link rel="apple-touch-icon" sizes="152x152" href="png/icon-152.png">
<!-- Own assets -->
<link rel="icon" type="image/png" href="png/favicon.png" />
<script src="js/slidle.min.js"></script>
<link rel="stylesheet" href="css/slidle.css" media="all" />
<link rel="stylesheet" href="css/theme/default.css" media="screen" />
<link rel="stylesheet" href="css/font/flux_architect.css" media="all" />
<!-- Embed style and script that is specific to the markup in this file -->
<style>
html, body {
height: 100%;
margin: 0;
padding: 0;
}
noscript {
text-align: center;
color: #a00;
}
div#slidle-container {
width: 100%;
height: 100%;
min-width: 320px;
min-height: 240px;
}
</style>
<script>
document.addEventListener( 'DOMContentLoaded', function() {
var options = {
show: 'json/welcome.json'
, showDelay: 618
, theme: 'default'
, panel: true
, noedit: false
, editTheme: 'solarized_light'
, nofull: false
, autoHideDelay: 1618
, autoPlayDelay: 6180
, loop: false
}
, slidle = window.slidle( '#slidle-container', options );
}, false );
</script>
</head>
<body>
<!-- This div will be (re)populated by the slidle constructor -->
<div id="slidle-container" class="flux">
<noscript>
<p>JavaScript is not supported, or it is disabled for this domain!</p>
</noscript>
</div>
<!-- 3rd party assets -->
<script src="3rd/ace/ace.js"></script>
<script src="3rd/markdown/markdown.min.js"></script>
</body>
</html>