-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathreadOnlyTwitterOptions.html
59 lines (51 loc) · 1.57 KB
/
readOnlyTwitterOptions.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
<!DOCTYPE html>
<html>
<head>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=G-C2V3XJC14E"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag() { dataLayer.push(arguments); }
gtag('js', new Date());
gtag('config', 'G-C2V3XJC14E');
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mustache.js/4.0.1/mustache.min.js"
integrity="sha512-6AXIWogbKpsHvoZJrJtHpIYES4wP8czSj0zk7ZfwOYS8GWYFNSykwdfapt7yQc4ikZytemBu+QyVObzBHJMwYg=="
crossorigin="anonymous">
</script>
<link rel="stylesheet" href="https://fonts.googleapis.com/icon?family=Material+Icons">
<style>
body {
min-width: 300px;
}
#options {
width: 100%;
margin-top: 15px;
}
#options>div {
width: 100%;
margin-bottom: 25px;
margin-left: 15px;
}
#options label {
margin-left: 25px;
}
.template {
display: none;
}
</style>
</head>
<body>
<div id="options">
</div>
<hr />
<div style="font-size: x-small;">
Icon made with icons from <a href="https://icons8.com/">icons8.com</a>
</div>
<div id="switch-options-template" class="template">
<input type="checkbox" id="{{id}}" aria-checked="{{value}}" {{checked}} />
<label for="{{id}}">{{label}}</label>
</div>
<script src="readOnlyTwitterOptions.js"></script>
</body>
</html>