51 lines
1.8 KiB
Cheetah
51 lines
1.8 KiB
Cheetah
{{ define "slides.tmpl" }}
|
|
<!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, minimal-ui">
|
|
|
|
<link rel="stylesheet" href="/static/revealjs/css/reveal.css">
|
|
<link rel="stylesheet" href="/static/revealjs/css/theme/black.css" id="theme">
|
|
|
|
<!-- Code syntax highlighting -->
|
|
<link rel="stylesheet" href="/static/revealjs/lib/css/zenburn.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 )
|
|
? '/static/revealjs/css/print/pdf.css'
|
|
: '/static/revealjs/css/print/paper.css';
|
|
document.getElementsByTagName( 'head' )[0].appendChild( link );
|
|
</script>
|
|
|
|
<!--[if lt IE 9]>
|
|
<script src="lib/js/html5shiv.js"></script>
|
|
<![endif]-->
|
|
</head>
|
|
|
|
<body>
|
|
<div class="reveal">
|
|
<div class="slides"></div>
|
|
</div>
|
|
|
|
<script src="/static/revealjs/lib/js/head.min.js"></script>
|
|
<script src="/static/revealjs/js/reveal.js"></script>
|
|
<script src="/static/revealjs/js/jquery-2.1.3.min.js"></script>
|
|
<script src="/static/js/slides.js"></script>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|