55 lines
2.2 KiB
Cheetah
55 lines
2.2 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="An awesome presentation">
|
|
<meta name="author" content="">
|
|
|
|
<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/reveal.js/css/reveal.css">
|
|
<link rel="stylesheet" href="/static/reveal.js/css/theme/black.css" id="theme">
|
|
|
|
<!-- Code syntax highlighting -->
|
|
<link rel="stylesheet" href="/static/reveal.js/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/reveal.js/css/print/pdf.css' : '/static/reveal.js/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>
|
|
<select id="themes" hidden="true" style="float:right;">
|
|
</select>
|
|
<div class="reveal">
|
|
<div class="slides"></div>
|
|
</div>
|
|
|
|
<script src="/static/jquery/jquery-3.3.1.min.js"></script>
|
|
<script src="/static/reveal.js/js/reveal.js"></script>
|
|
<script src="/static/reveal.js/lib/js/head.min.js"></script>
|
|
<script type="text/javascript" src="/static/reveal.js/plugin/highlight/highlight.js"></script>
|
|
<script type="text/javascript" src="/static/reveal.js/plugin/notes/notes.js"></script>
|
|
<script type="text/javascript" src="/static/reveal.js/plugin/markdown/marked.js"></script>
|
|
<script type="text/javascript" src="/static/reveal.js/plugin/markdown/markdown.js"></script>
|
|
<script src="/static/js/slides.js"></script>
|
|
</body>
|
|
</html>
|
|
{{ end }}
|