2019-04-19 21:56:39 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
<title>goveal</title>
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="/reveal/css/reveal.css">
|
|
|
|
<link rel="stylesheet" href="/reveal/css/theme/{{ .Reveal.Theme }}.css" id="theme">
|
|
|
|
|
|
|
|
<link rel="stylesheet" href="/reveal/lib/css/{{ .Reveal.CodeTheme }}.css">
|
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="reveal">
|
|
|
|
<div class="slides">
|
2019-04-20 00:28:27 +00:00
|
|
|
<section data-markdown="/markdown/content.md"
|
|
|
|
data-separator="^\n{{ .Reveal.HorizontalSeparator }}\n"
|
|
|
|
data-separator-vertical="^\n{{ .Reveal.VerticalSeparator }}\n"
|
|
|
|
data-separator-notes="^Note:"
|
|
|
|
data-charset="iso-8859-15">
|
2019-04-19 21:56:39 +00:00
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
|
|
|
<script src="/reveal/js/reveal.js"></script>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
|
|
|
|
Reveal.initialize({
|
|
|
|
controls: true,
|
|
|
|
progress: true,
|
|
|
|
history: true,
|
|
|
|
center: true,
|
2019-04-20 00:28:27 +00:00
|
|
|
slideNumber: true,
|
|
|
|
hash: true,
|
|
|
|
transition: 'slide', // none/fade/slide/convex/concave/zoom
|
|
|
|
markdown:{
|
|
|
|
smartypants: true,
|
|
|
|
smartLists: true,
|
|
|
|
},
|
2019-04-19 21:56:39 +00:00
|
|
|
|
|
|
|
// Optional libraries used to extend on reveal.js
|
|
|
|
dependencies: [
|
|
|
|
{ src: '/reveal/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
|
|
|
{ src: '/reveal/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
|
|
|
|
{ src: '/reveal/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
|
|
|
|
{ src: '/reveal/plugin/notes/notes.js' }
|
|
|
|
]
|
|
|
|
});
|
|
|
|
|
|
|
|
|
2019-04-20 00:28:27 +00:00
|
|
|
|
2019-04-19 21:56:39 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
2019-04-20 00:28:27 +00:00
|
|
|
</html>
|