prez/index.html

80 lines
2.5 KiB
HTML
Raw Permalink Normal View History

2013-09-11 20:40:58 +02:00
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
2015-04-21 11:02:32 +02:00
<title>Yunohost</title>
2013-09-11 20:40:58 +02:00
2015-04-21 11:02:32 +02:00
<meta name="author" content="beudbeud">
2013-09-11 20:40:58 +02:00
<meta name="apple-mobile-web-app-capable" content="yes" />
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
2015-04-21 11:02:32 +02:00
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
2013-09-11 20:40:58 +02:00
2015-04-21 11:02:32 +02:00
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/theme/black.css" id="theme">
2013-09-11 20:40:58 +02:00
2015-04-21 11:02:32 +02:00
<!-- Code syntax highlighting -->
2013-09-11 20:40:58 +02:00
<link rel="stylesheet" href="lib/css/zenburn.css">
2015-04-21 11:02:32 +02:00
<!-- Printing and PDF exports -->
2013-09-11 20:40:58 +02:00
<script>
2015-04-21 11:02:32 +02:00
var link = document.createElement( 'link' );
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match( /print-pdf/gi ) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName( 'head' )[0].appendChild( link );
2013-09-11 20:40:58 +02:00
</script>
<!--[if lt IE 9]>
<script src="lib/js/html5shiv.js"></script>
<![endif]-->
</head>
<body>
<div class="reveal">
2015-04-21 11:02:32 +02:00
<!-- Any section element inside of this container is displayed as a slide -->
<div class="slides">
2016-01-06 16:44:43 +01:00
<section data-markdown="thsf2015.md"
2015-04-21 11:02:32 +02:00
data-separator="^\n\n\n"
data-separator-vertical="^\n\n"
data-separator-notes="^Note:"
data-charset="UTF-8">
</section>
</div>
2013-09-11 20:40:58 +02:00
</div>
<script src="lib/js/head.min.js"></script>
2015-04-21 11:02:32 +02:00
<script src="js/reveal.js"></script>
2013-09-11 20:40:58 +02:00
<script>
2015-04-21 11:02:32 +02:00
// Full list of configuration options available at:
2013-09-11 20:40:58 +02:00
// https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
controls: true,
progress: true,
history: true,
center: true,
2015-04-21 11:02:32 +02:00
transition: 'slide', // none/fade/slide/convex/concave/zoom
2013-09-11 20:40:58 +02:00
2015-04-21 11:02:32 +02:00
// Optional reveal.js plugins
2013-09-11 20:40:58 +02:00
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]' ); } },
2015-04-21 11:02:32 +02:00
{ src: 'plugin/highlight/highlight.js', async: true, condition: function() { return !!document.querySelector( 'pre code' ); }, callback: function() { hljs.initHighlightingOnLoad(); } },
{ src: 'plugin/zoom-js/zoom.js', async: true },
{ src: 'plugin/notes/notes.js', async: true }
2013-09-11 20:40:58 +02:00
]
});
</script>
</body>
</html>