Julio Biason
11 years ago
1 changed files with 82 additions and 0 deletions
@ -0,0 +1,82 @@
|
||||
<!doctype html> |
||||
<html lang="en"> |
||||
|
||||
<head> |
||||
<meta charset="utf-8"> |
||||
|
||||
<title>PyPoa</title> |
||||
|
||||
<meta name="author" content="Julio Biason"> |
||||
|
||||
<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="http://cdn.jsdelivr.net/reveal.js/2.6.2/css/reveal.min.css"> |
||||
<link rel="stylesheet" href="http://cdn.jsdelivr.net/reveal.js/2.6.2/css/theme/default.css" id="theme"> |
||||
|
||||
<!-- For syntax highlighting --> |
||||
<link rel="stylesheet" href="http://cdn.jsdelivr.net/reveal.js/2.6.2/lib/css/zenburn.css"> |
||||
|
||||
<!-- If the query includes 'print-pdf', include the PDF print sheet --> |
||||
<script> |
||||
if( window.location.search.match( /print-pdf/gi ) ) { |
||||
var link = document.createElement( 'link' ); |
||||
link.rel = 'stylesheet'; |
||||
link.type = 'text/css'; |
||||
link.href = 'http://cdn.jsdelivr.net/reveal.js/2.6.2/css/print/pdf.css'; |
||||
document.getElementsByTagName( 'head' )[0].appendChild( link ); |
||||
} |
||||
</script> |
||||
|
||||
<!--[if lt IE 9]> |
||||
<script src="reveal.js/lib/js/html5shiv.js"></script> |
||||
<![endif]--> |
||||
|
||||
<style> |
||||
</style> |
||||
|
||||
</head> |
||||
|
||||
<body> |
||||
|
||||
<div class="reveal"> |
||||
<!-- Any section element inside of this container is displayed as a slide --> |
||||
<div class="slides"> |
||||
<section data-background='_images/poa.jpg'> |
||||
</section> |
||||
</div> |
||||
</div> |
||||
|
||||
<script src="http://cdn.jsdelivr.net/reveal.js/2.6.2/lib/js/head.min.js"></script> |
||||
<script src="http://cdn.jsdelivr.net/reveal.js/2.6.2/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, |
||||
|
||||
theme: 'default', |
||||
transition: 'linear', |
||||
|
||||
// Optional libraries used to extend on reveal.js |
||||
dependencies: [ |
||||
{ src: 'http://cdn.jsdelivr.net/reveal.js/2.6.2/lib/js/classList.js', condition: function() { return !document.body.classList; } }, |
||||
{ src: 'http://cdn.jsdelivr.net/reveal.js/2.6.2/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, |
||||
{ src: 'http://cdn.jsdelivr.net/reveal.js/2.6.2/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } }, |
||||
{ src: 'http://cdn.jsdelivr.net/reveal.js/2.6.2/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } }, |
||||
{ src: 'http://cdn.jsdelivr.net/reveal.js/2.6.2/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } }, |
||||
{ src: 'http://cdn.jsdelivr.net/reveal.js/2.6.2/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } } |
||||
] |
||||
}); |
||||
|
||||
</script> |
||||
|
||||
</body> |
||||
</html> |
Loading…
Reference in new issue