2019-04-19 21:56:39 +00:00
|
|
|
<!doctype html>
|
|
|
|
<html lang="en">
|
|
|
|
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
|
|
|
|
<title>goveal</title>
|
|
|
|
|
2020-12-02 12:33:47 +00:00
|
|
|
<link rel="stylesheet" href="/dist/reveal.css">
|
|
|
|
<link rel="stylesheet" href="/dist/reset.css">
|
|
|
|
<link rel="stylesheet" href="/dist/theme/{{ .Reveal.Theme }}.css" id="theme">
|
2019-04-19 21:56:39 +00:00
|
|
|
|
2020-12-02 12:33:47 +00:00
|
|
|
<link rel="stylesheet" href="/plugin/highlight/{{ .Reveal.CodeTheme }}.css">
|
2019-04-19 21:56:39 +00:00
|
|
|
</head>
|
|
|
|
|
|
|
|
<body>
|
|
|
|
|
|
|
|
<div class="reveal">
|
|
|
|
<div class="slides">
|
2020-12-02 12:33:47 +00:00
|
|
|
<section data-markdown="/content.md"
|
2021-11-15 14:23:10 +00:00
|
|
|
data-separator="^{{ .Reveal.LineEnding.Escaped -}}{{ .Reveal.HorizontalSeparator }}{{- .Reveal.LineEnding.Escaped }}"
|
|
|
|
data-separator-vertical="^{{ .Reveal.LineEnding.Escaped -}}{{ .Reveal.VerticalSeparator }}{{- .Reveal.LineEnding.Escaped }}"
|
2019-04-20 00:28:27 +00:00
|
|
|
data-separator-notes="^Note:"
|
|
|
|
data-charset="iso-8859-15">
|
2019-04-19 21:56:39 +00:00
|
|
|
</section>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
|
2020-12-02 12:33:47 +00:00
|
|
|
<script src="/dist/reveal.js"></script>
|
|
|
|
<script src="/plugin/markdown/markdown.js"></script>
|
|
|
|
<script src="/plugin/highlight/highlight.js"></script>
|
|
|
|
<script src="/plugin/notes/notes.js"></script>
|
|
|
|
<script src="/plugin/menu/menu.js"></script>
|
2020-12-04 15:28:02 +00:00
|
|
|
<script src="/js/reload.js"></script>
|
2019-04-19 21:56:39 +00:00
|
|
|
|
|
|
|
<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
|
2021-11-15 13:36:36 +00:00
|
|
|
navigationMode: {{ .Reveal.NavigationMode | trim | quote }},
|
|
|
|
showSlideNumber: {{ .Reveal.SlideNumberVisibility | trim | quote }},
|
2019-06-03 13:42:16 +00:00
|
|
|
slideNumber: '{{ .Reveal.SlideNumberFormat }}',
|
2019-05-16 01:18:02 +00:00
|
|
|
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: [
|
2020-12-02 12:33:47 +00:00
|
|
|
{name: 'Beige', theme: '/dist/theme/beige.css'},
|
|
|
|
{name: 'Black', theme: '/dist/theme/black.css'},
|
|
|
|
{name: 'Blood', theme: '/dist/theme/blood.css'},
|
|
|
|
{name: 'League', theme: '/dist/theme/league.css'},
|
|
|
|
{name: 'Moon', theme: '/dist/theme/moon.css'},
|
|
|
|
{name: 'Night', theme: '/dist/theme/night.css'},
|
|
|
|
{name: 'Serif', theme: '/dist/theme/serif.css'},
|
|
|
|
{name: 'Simple', theme: '/dist/theme/simple.css'},
|
|
|
|
{name: 'Sky', theme: '/dist/theme/sky.css'},
|
|
|
|
{name: 'Solarized', theme: '/dist/theme/solarized.css'},
|
|
|
|
{name: 'White', theme: '/dist/theme/white.css'}
|
2019-05-16 01:18:02 +00:00
|
|
|
],
|
|
|
|
transitions: true,
|
|
|
|
},
|
2020-08-13 07:01:26 +00:00
|
|
|
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes, RevealMenu ]
|
2019-05-16 01:18:02 +00:00
|
|
|
});
|
2019-04-19 21:56:39 +00:00
|
|
|
|
2020-08-13 07:01:26 +00:00
|
|
|
{{ if .Reveal.StyleSheets }}
|
2019-05-16 01:18:02 +00:00
|
|
|
{{ range $idx, $style := .Reveal.StyleSheets }}
|
|
|
|
var additionalStyleSheet = document.createElement('link');
|
|
|
|
additionalStyleSheet.rel = 'stylesheet';
|
|
|
|
additionalStyleSheet.type = 'text/css';
|
2020-12-02 12:33:47 +00:00
|
|
|
additionalStyleSheet.href = '/{{- $style }}';
|
2019-05-16 01:18:02 +00:00
|
|
|
document.getElementsByTagName('head')[0].appendChild(additionalStyleSheet);
|
|
|
|
{{ end }}
|
2020-12-04 15:28:02 +00:00
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
{{ if .Reveal.FilesToMonitor }}
|
|
|
|
{{ range $idx, $file := .Reveal.FilesToMonitor }}
|
2020-12-06 11:18:42 +00:00
|
|
|
subscribeForUpdates("/{{ $file }}")
|
2020-12-04 15:28:02 +00:00
|
|
|
{{ end }}
|
|
|
|
{{ end }}
|
|
|
|
|
|
|
|
subscribeForUpdates("/content.md")
|
2019-04-19 21:56:39 +00:00
|
|
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
</body>
|
2019-04-20 00:28:27 +00:00
|
|
|
</html>
|