-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
executable file
·137 lines (103 loc) · 4.79 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
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Chadev - Lunch Slides</title>
<!-- Reveal CSS -->
<link rel="stylesheet" href="assets/css/vendor/reveal.css">
<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="assets/css/vendor/zenburn.css">
<!-- Custom Chadev Theme -->
<link rel="stylesheet" href="assets/css/chadev-theme.css">
<!-- Printing and PDF exports -->
<script>
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'assets/css/vendor/print/pdf.css' : 'assets/css/vendor/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
</script>
</head>
<body>
<div class="reveal">
<div class="slides">
<!-- Slide Markup -->
<section class="intro">
<div class="intro-sidebar">
<ul class="date-list">
<li class="date-list__item date-list__item--past">
<h3 class="date-list__date muted"><span>11‑14</span></h3>
<h3 class="date-list__title">Developer Pint Night</h3>
<h4 class="date-list__subhead muted">Oddstory Brewing Co.</h4>
</li>
<li class="date-list__item date-list__item--current">
<h3 class="date-list__date muted"><span>2‑6</span></h3>
<h3 class="date-list__title">Coworking + <br />Lunch Talk</h3>
<h4 class="date-list__subhead muted">Noel Weichbrodt</h4>
</li>
<li class="date-list__item">
<h3 class="date-list__date muted"><span></span>2‑20</h3>
<h3 class="date-list__title">Coworking Day</h3>
<h4 class="date-list__subhead muted">Let's work together!</h4>
</li>
<!-- <li class="date-list__item">
<h3 class="date-list__date muted"><span></span>12‑5</h3>
<h3 class="date-list__title">Coworking Day</h3>
<h4 class="date-list__subhead muted">Let's work together!</h4>
</li> -->
</ul>
<img class="intro-sidebar__logo" src="assets/images/logo.svg" alt="Chadev Logo">
</div>
<main class="intro-body">
<h1>Voice is Just Another Interface</h1>
<h2 class="muted">Noel Weichbrodt</h2>
</main>
<footer class="sponsor-footer">
<h3 class="sponsor-footer__title m-0">Sponsored by</h3>
<img class="sponsor-footer__logo sponsor-footer__logo sponsor-footer__logo--wide" src="assets/images/sponsor_logos/sponsor_spokestack.svg" alt="Spokestack Logo">
</footer>
</section>
<!-- End -->
</div>
</div>
<script src="assets/js/head.min.js"></script>
<script src="assets/js/reveal.js"></script>
<script>
Reveal.initialize({
dependencies: [
// Cross-browser shim that fully implements classList - https://github.com/eligrey/classList.js/
{ src: 'assets/js/classList.js', condition: function() { return !document.body.classList; } },
// Interpret Markdown in <section> elements
{ src: 'assets/js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
{ src: 'assets/js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
// Syntax highlight for <code> elements
{ src: 'assets/js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
// Zoom in and out with Alt+click
{ src: 'assets/js/plugin/zoom-js/zoom.js', async: true },
// Speaker notes
{ src: 'assets/js/plugin/notes/notes.js', async: true },
// MathJax
{ src: 'assets/js/plugin/math/math.js', async: true }
],
// The "normal" size of the presentation, aspect ratio will be preserved
// when the presentation is scaled to fit different resolutions. Can be
// specified using percentage units.
width: 1920,
height: 1080,
// Factor of the display size that should remain empty around the content
margin: 0,
// Vertical centering of slides
// center: false,
// Display presentation control arrows
controls: false,
// Display a presentation progress bar
progress: false,
// Push each slide change to the browser history
history: true,
// Transition style
transition: 'slide', // none/fade/slide/convex/concave/zoom
});
</script>
</body>
</html>