-
Notifications
You must be signed in to change notification settings - Fork 0
/
loader.html
120 lines (120 loc) · 3.69 KB
/
loader.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
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<link rel="shortcut icon" type="application/svg+xml" href="/favicon.svg" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta
name="apple-mobile-web-app-status-bar-style"
content="black-translucent"
/>
<link rel="canonical" href="https://slidesdown.github.io/loader.html" />
<!-- <link -->
<!-- rel="stylesheet" -->
<!-- href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css" -->
<!-- /> -->
<link rel="stylesheet" href="/css/pico.min.css" />
<!-- TODO: replace search icon -->
<!-- <link rel="stylesheet" href="/custom.css" /> -->
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
/>
<title>Slidesdown Loader</title>
</head>
<body>
<header class="container">
<hgroup>
<h1>
<i
style="
background-color: var(--color);
mask-image: url(/logo.svg);
-webkit-mask-image: url(/logo.svg);
height: 0.8em;
width: 1em;
display: inline-block;
"
></i>
Slidesdown Loader
</h1>
<h2>Slideshows as fast as you can type.</h2>
</hgroup>
<nav class="container" style="align-items: center">
<ul>
<li><u>Open</u></li>
<li><a href="/learn.html">Learn</a></li>
</ul>
<ul>
<li>
<a
data-theme-switcher
class="contrast"
href="#"
title="Switch Theme"
style="
height: 1.5rem;
width: 1.5rem;
margin-right: 0.5rem;
background-color: var(--color);
mask-image: var(--icon-theme);
-webkit-mask-image: var(--icon-theme);
"
></a>
</li>
<li>
<a
title="GitHub"
class="contrast"
href="https://github.com/slidesdown/slidesdown"
style="
height: 1.5rem;
width: 1.5rem;
background-color: var(--color);
mask-image: url('/icons/github.svg');
-webkit-mask-image: url('/icons/github.svg');
"
></a>
</li>
</ul>
</nav>
<main class="container">
<h1>Open your Slideshow</h1>
<form action="/" method="get">
<label class="label" for="slides"
>Slideshow URL, e.g.
<a href="/?slides=github.com/slidesdown/slidesdown"
>github.com/slidesdown/slidesdown</a
>
<input
id="slides"
type="search"
class="input"
type="text"
name="slides"
placeholder="github.com/slidesdown/slidesdown"
/>
</label>
<button type="submit">Open</button>
</form>
</main>
</header>
<!-- <s lript -->
<!-- src="https://kit.fontawesome.com/fec85b2437.js" -->
<!-- crossorigin="anonymous" -->
<!-- ></script> -->
<script src="/js/minimal-theme-switcher.js"></script>
<!-- <script -->
<!-- async -->
<!-- src="https://www.googletagmanager.com/gtag/js?id=G-5277P6Q3RP" -->
<!-- ></script> -->
<!-- <script> -->
<!-- window.dataLayer = window.dataLayer || [] -->
<!-- function gtag() { -->
<!-- dataLayer.push(arguments) -->
<!-- } -->
<!-- gtag("js", new Date()) -->
<!-- gtag("config", "G-5277P6Q3RP") -->
<!-- </script> -->
</body>
</html>