140 lines
4.5 KiB
HTML
140 lines
4.5 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
|
|
<head>
|
|
<meta charset="utf-8">
|
|
|
|
<title>reveal.js - The HTML Presentation Framework</title>
|
|
|
|
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
|
|
<meta name="author" content="Hakim El Hattab">
|
|
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
|
|
|
<link rel="stylesheet" href="css/reveal.min.css">
|
|
<link rel="stylesheet" href="css/theme/simple.css" id="theme">
|
|
|
|
<!-- For syntax highlighting -->
|
|
<link rel="stylesheet" href="lib/css/zenburn.css">
|
|
|
|
<style type="text/css" media="screen">
|
|
.reveal pre code { max-height: 500px; }
|
|
@font-face {
|
|
font-family: "DINBold";
|
|
src: url(fonts/DINBda.ttf) format("truetype");
|
|
}
|
|
@font-face {
|
|
font-family: "Univers";
|
|
src: url(fonts/Univers.ttf) format("truetype");
|
|
}
|
|
.reveal {
|
|
font-family: "Univers", "Lato", sans-serif !important;
|
|
}
|
|
html body {
|
|
background:url("img/bg_white.png") no-repeat center center fixed;
|
|
background-size: auto 100%;
|
|
background-color:#fff;
|
|
}
|
|
html.intro body {
|
|
background:url("img/bg_blue.png") no-repeat center center fixed;
|
|
background-size: auto 100%;
|
|
background-color:#2c3c60;
|
|
}
|
|
html.intro h1 {
|
|
font-size: 1.5em;
|
|
color: #e56b20;
|
|
}
|
|
html.intro h2 {
|
|
font-size: 1em;
|
|
color: #e56b20;
|
|
}
|
|
html.intro p {
|
|
color: #fff;
|
|
}
|
|
html.intro section img {
|
|
border: none;
|
|
box-shadow: none;
|
|
background: none;
|
|
transition: none;
|
|
}
|
|
html.intro a.email {
|
|
color: #fff;
|
|
}
|
|
.reveal h1, .reveal h2, .reveal h3 {
|
|
color: #001d4b;
|
|
font-family: "DINBold", "News Cycle", Impact, sans-serif !important;
|
|
}
|
|
.reveal h2 { font-size: 1.5em; }
|
|
.reveal .slide-number {
|
|
font-size: 0.8em;
|
|
}
|
|
</style>
|
|
|
|
<!-- If the query includes 'print-pdf', use the PDF print sheet -->
|
|
<script>
|
|
document.write( '<link rel="stylesheet" href="css/print/' + ( window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper' ) + '.css" type="text/css" media="print">' );
|
|
</script>
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="lib/js/html5shiv.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<div class="reveal">
|
|
|
|
<!-- Any section element inside of this container is displayed as a slide -->
|
|
<div class="slides">
|
|
<section data-markdown="presentation.md"
|
|
data-separator="^\n\n\n"
|
|
data-vertical="^\n\n"
|
|
data-notes="^Note:"
|
|
data-charset="utf-8"
|
|
>
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
<script src="lib/js/head.min.js"></script>
|
|
<script src="js/reveal.min.js"></script>
|
|
|
|
<script>
|
|
// Full list of configuration options available here:
|
|
// https://github.com/hakimel/reveal.js#configuration
|
|
Reveal.initialize({
|
|
controls: true,
|
|
progress: true,
|
|
history: true,
|
|
center: true,
|
|
transitionSpeed: 'fast',
|
|
backgroundTransition: 'fade',
|
|
slideNumber: true,
|
|
|
|
theme: Reveal.getQueryHash().theme, // available themes are in /css/theme
|
|
transition: Reveal.getQueryHash().transition || 'none', // default/cube/page/concave/zoom/linear/fade/none
|
|
|
|
// Parallax scrolling
|
|
// parallaxBackgroundImage: 'https://s3.amazonaws.com/hakim-static/reveal-js/reveal-parallax-1.jpg',
|
|
// parallaxBackgroundSize: '2100px 900px',
|
|
|
|
// Optional libraries used to extend on reveal.js
|
|
dependencies: [
|
|
{ src: 'lib/js/classList.js', condition: function() { return !document.body.classList; } },
|
|
{ src: 'plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
|
{ src: 'plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
|
{ src: 'plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
|
|
{ src: 'plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
|
|
{ src: 'plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
|
|
]
|
|
});
|
|
|
|
</script>
|
|
</body>
|
|
</html>
|