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>
|
2019-05-16 01:18:02 +00:00
|
|
|
Reveal.initialize({
|
|
|
|
controls: true,
|
|
|
|
progress: true,
|
|
|
|
history: true,
|
|
|
|
center: true,
|
|
|
|
slideNumber: true,
|
|
|
|
hash: true,
|
|
|
|
transition: '{{ .Reveal.Transition }}', // none/fade/slide/convex/concave/zoom
|
|
|
|
navigationMode: '{{ .Reveal.NavigationMode }}',
|
|
|
|
markdown: {
|
|
|
|
smartypants: true,
|
|
|
|
smartLists: true
|
|
|
|
},
|
|
|
|
pdfSeparateFragments: false,
|
|
|
|
menu: {
|
|
|
|
numbers: true,
|
|
|
|
useTextContentForMissingTitles: true,
|
|
|
|
custom: [
|
|
|
|
{
|
|
|
|
title: 'Print',
|
|
|
|
icon: '<i class="fas fa-print"></i>',
|
|
|
|
content: '<a href="/?print-pdf">Go to print view<a/>'
|
|
|
|
}
|
|
|
|
],
|
|
|
|
themes: [
|
|
|
|
{name: 'Beige', theme: '/reveal/css/theme/beige.css'},
|
|
|
|
{name: 'Black', theme: '/reveal/css/theme/black.css'},
|
|
|
|
{name: 'Blood', theme: '/reveal/css/theme/blood.css'},
|
|
|
|
{name: 'League', theme: '/reveal/css/theme/league.css'},
|
|
|
|
{name: 'Moon', theme: '/reveal/css/theme/moon.css'},
|
|
|
|
{name: 'Night', theme: '/reveal/css/theme/night.css'},
|
|
|
|
{name: 'Serif', theme: '/reveal/css/theme/serif.css'},
|
|
|
|
{name: 'Simple', theme: '/reveal/css/theme/simple.css'},
|
|
|
|
{name: 'Sky', theme: '/reveal/css/theme/sky.css'},
|
|
|
|
{name: 'Solarized', theme: '/reveal/css/theme/solarized.css'},
|
|
|
|
{name: 'White', theme: '/reveal/css/theme/white.css'}
|
|
|
|
],
|
|
|
|
transitions: true,
|
|
|
|
},
|
|
|
|
// 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'},
|
|
|
|
{src: '/reveal/plugin/menu/menu.js'}
|
|
|
|
]
|
|
|
|
});
|
2019-04-19 21:56:39 +00:00
|
|
|
|
2019-05-16 01:18:02 +00:00
|
|
|
{{ if (len .Reveal.StyleSheets) gt 0 }}
|
|
|
|
{{ range $idx, $style := .Reveal.StyleSheets }}
|
|
|
|
var additionalStyleSheet = document.createElement('link');
|
|
|
|
additionalStyleSheet.rel = 'stylesheet';
|
|
|
|
additionalStyleSheet.type = 'text/css';
|
|
|
|
additionalStyleSheet.href = '/local/{{- $style }}';
|
|
|
|
document.getElementsByTagName('head')[0].appendChild(additionalStyleSheet);
|
|
|
|
{{ end}}
|
|
|
|
{{ end }}
|
2019-04-19 21:56:39 +00:00
|
|
|
|
2019-05-16 01:18:02 +00:00
|
|
|
var link = document.createElement('link');
|
|
|
|
link.rel = 'stylesheet';
|
|
|
|
link.type = 'text/css';
|
|
|
|
link.href = window.location.search.match(/print-pdf/gi) ? '/reveal/css/print/pdf.css' : '/reveal/css/print/paper.css';
|
|
|
|
document.getElementsByTagName('head')[0].appendChild(link);
|
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>
|