-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlearn.html
159 lines (148 loc) · 4.82 KB
/
learn.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
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
<!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/learn.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 Learn</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><a href="/loader.html">Open</a></li>
<li><u>Learn</u></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">
<hgroup>
<h1>Make your first Slideshow</h1>
<h2>Get your first slideshow up and running in less than 5 minutes.</h2>
</hgroup>
<section>
<ol>
<li>Create an empty repository at <a href="https://github.com/new">GitHub</a>.</li>
<li>Add a new file called <code>SLIDES.md</code>.</li>
<li>Copy the following content into the file:<br>
<pre>
---
# Metadata about the presentation:
title: Presentation Title
author: Your Name
date: 2023-01-20
keywords: some useful keywords
# Presentation settings:
# Show progress bar
progress: true
# Show controls
controls: true
# Center presentation
center: true
# Create separate pages for fragments
pdfSeparateFragments: false
# Full list of supported settings: https://revealjs.com/config/ or
# https://github.com/hakimel/reveal.js/blob/master/js/config.js
---
# My first markdown slideshow
Author: Your Name
## Agenda
1. Markdown is easy to read
2. Markdown is easy to write
3. Let's use it for presentations
## A horizontal Slide
### A veritical Slide
## More Examples
https://github.com/slidesdown/slidesdown/blob/main/SLIDES.md
## The End
Thank you for your time.</pre>
</li>
<li>Go to the <a href="/loader.html">Slidesdown Loader</a> and enter the URL to your repository, e.g. <code>github.com/slidesdown/slidesdown</code>.</li>
<li>Copy the link to your presentation and share it with family, friends and business partners.</li>
<li>Learn more about <a href="https://www.markdownguide.org/basic-syntax/">Markdown's syntax</a> and take a look at the <a href="https://slidesdown.github.io/">example presentation</a>.</li>
</ol>
</section>
</main>
</div>
<!-- <script -->
<!-- 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>