-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (64 loc) · 1.99 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
<html>
<head>
<meta
property="og:image"
content="https://innovativedesign.github.io/gatsby-workshop/assets/coverphoto.png"
/>
<meta
property="og:title"
content="InnoD Web Team: Gatsby Workshop"
/>
<meta
property="og:description"
content="A re-introduction to React basics and an overview of Gatsby, a
static site generator tool that we'll be using for the rest of the semester!"
/>
<meta
property="og:type"
content="website" />
<meta
property="og:url"
content="https://innovativedesign.github.io/gatsby-workshop"
/>
<link rel="stylesheet" href="reveal.js/css/reveal.css">
<link rel="stylesheet" href="reveal.js/css/theme/simple.css">
<link rel="stylesheet" href="innod-web-style.css">
<link rel="stylesheet" href="reveal.js/lib/css/zenburn.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-markdown="slides.md"
data-separator="---\n\n"
data-separator-vertical="\*\*\*\n\n"
data-separator-notes="^Note:"
data-charset="utf-8">
</section>
</div>
<div class="logo">
<img src="assets/logo__icon.svg" />
</div>
</div>
<script src="reveal.js/lib/js/head.min.js"></script>
<script src="reveal.js/js/reveal.js"></script>
<script>
Reveal.initialize({
dependencies: [
{
src: 'reveal.js/plugin/markdown/marked.js',
condition: function() { return !!document.querySelector( '[data-markdown]' ); }
},
{
src: 'reveal.js/plugin/markdown/markdown.js',
condition: function() { return !!document.querySelector( '[data-markdown]' );}
},
{
src: 'reveal.js/plugin/highlight/highlight.js',
async: true,
callback: function() { hljs.initHighlightingOnLoad(); }
},
]
});
</script>
</body>
</html>