-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
57 lines (45 loc) · 1.86 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
<!DOCTYPE html>
<!--
Copyright (c) 2011-2013 Brian Cavalier
This is a basic HTML template for creating slide presentations using
the slide framework.
-->
<!-- Parts from HTML5 Boilerplate: http://html5boilerplate.com -->
<!-- paulirish.com/2008/conditional-stylesheets-vs-css-hacks-answer-neither/ -->
<!--[if lt IE 7 ]> <html lang="en" class="ie6"> <![endif]-->
<!--[if IE 7 ]> <html lang="en" class="ie7"> <![endif]-->
<!--[if IE 8 ]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9 ]> <html lang="en" class="ie9"> <![endif]-->
<!--[if (gt IE 9)|!(IE)]><!--> <html lang="en"> <!--<![endif]-->
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>HTML Slide Presentation Framework</title>
<meta name="description" content="HTML Slide Presentation framework">
<meta name="author" content="Brian Cavalier">
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=0, maximum-scale=1.0">
<meta name="apple-mobile-web-app-capable" content="yes"/>
<link href='https://fonts.googleapis.com/css?family=Sue+Ellen+Francisco' rel='stylesheet' type='text/css'>
<link href='https://fonts.googleapis.com/css?family=Amatic+SC' rel='stylesheet' type='text/css'>
<!-- Ensure no FUOC in the slides -->
<style type="text/css">
.presentation-loading * {
visibility: hidden;
}
</style>
<script data-curl-run="app/run.js" src="bower_components/curl/src/curl.js"></script>
</head>
<!-- Avoid any FUOC by adding presentation-loading, which the framework
will remove later once the first slide is ready -->
<body class="presentation-loading">
<div id="root">
<header>
<h2>Dr DevOps ou: comment j'ai arrêté de m'en faire et j'ai appris à aimer la prod</h2>
</header>
<section id="slide-container"></section>
<footer>
<h2>Pierre Chaussalet</h2>
</footer>
</div>
</body>
</html>