This repository was archived by the owner on Nov 19, 2019. It is now read-only.
-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
102 lines (82 loc) · 2.96 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
<!DOCTYPE HTML>
<html lang="en">
<head>
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta charset="UTF-8">
<!-- Chrome, Firefox OS and Opera -->
<meta name="theme-color" content="#57D5E3"/>
<!-- Windows Phone -->
<meta name="msapplication-navbutton-color" content="#57D5E3"/>
<!-- iOS Safari -->
<meta name="apple-mobile-web-app-status-bar-style" content="#57D5E3"/>
<!-- SEO Stuff -->
<meta name="audience" lang="en" content="all"/>
<meta name="expires" content="7 days"/>
<meta name="robots" content="follow"/>
<meta name="revisit-after" content="7 days"/>
<meta name="page-topic" content=""/>
<meta name="copyright" content="Simon Reinisch"/>
<meta name="author" content="Simon Reinisch"/>
<meta name="description" content=""/>
<meta name="keywords" content=""/>
<!-- Open Graph / Facebook -->
<meta property="og:image" content="st/favicon.png"/>
<meta property="og:type" content="website"/>
<meta property="og:url" content="https://simonwep.github.io/widgetify/"/>
<meta property="og:site_name" content=""/>
<meta property="og:title" content=""/>
<meta property="og:description"
content=""/>
<!-- Twitter -->
<meta property="twitter:url" content="https://simonwep.github.io/widgetify/">
<meta property="twitter:title" content="">
<meta property="twitter:description"
content="">
<meta property="twitter:image" content="st/favicon.png">
<title>Widgetify</title>
<!-- Icons -->
<link rel="icon" href="st/favicon.png"/>
<link rel="fluid-icon" href="st/favicon.png"/>
<link rel="apple-touch-icon" href="st/favicon.png"/>
<!-- ICONS -->
<link href="st/favicon.png" rel="icon"/>
<link href="st/favicon.png" rel="apple-touch-icon"/>
<!-- CSS STYLESHEETS -->
<link href="https://fonts.googleapis.com/css?family=Noto+Sans:400,700&display=swap" rel="stylesheet">
<link href="st/styles.css" rel="stylesheet"/>
</head>
<body>
<header>
<h1>Widgetify</h1>
<a href="https://github.com/Simonwep/widgetify">VIEW ON GITHUB</a>
</header>
<main>
<section>
<h3>Normal</h3>
<button>Activator</button>
<div>Content</div>
</section>
<section data-inline="1">
<h3>Inline</h3>
<code>{inline: true}</code>
<button>Activator</button>
<div>Content</div>
</section>
<section data-disabled="1">
<h3>Disabled</h3>
<code>{disabled: true}</code>
<button>Activator</button>
<div>Content</div>
</section>
<section data-show-always="1">
<h3>Always Visible</h3>
<code>{showAlways: true}</code>
<button>Activator</button>
<div>Content</div>
</section>
</main>
<script src="dist/widgetify.min.js"></script>
<script src="st/code.js"></script>
</body>
</html>