2018-04-26 18:20:41 -05:00
|
|
|
<!doctype html>
|
2018-04-30 17:21:33 -05:00
|
|
|
{{- $reveal_cdn := "https://cdnjs.cloudflare.com/ajax/libs/reveal.js/3.6.0" -}}
|
|
|
|
{{- $highlight_cdn := "https://cdnjs.cloudflare.com/ajax/libs/highlight.js/9.12.0" -}}
|
2018-04-26 18:20:41 -05:00
|
|
|
<html lang="en">
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
2018-04-26 18:34:29 -05:00
|
|
|
<title>{{ or .Page.Title .Site.Title }}</title>
|
2018-04-26 18:20:41 -05:00
|
|
|
<meta name="description" content="{{ .Site.Params.Description }}">
|
|
|
|
<meta name="author" content="{{ .Site.Author.name }}">
|
|
|
|
<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">
|
2018-04-30 17:21:33 -05:00
|
|
|
<link rel="stylesheet" href="{{ $reveal_cdn }}/css/reveal.min.css">
|
|
|
|
<!-- Theme used for presentation -->
|
|
|
|
{{ $theme := or .Page.Params.reveal_hugo.theme .Site.Params.reveal_hugo.theme .Site.Data.reveal_hugo.defaults.theme "black" }}
|
|
|
|
<link rel="stylesheet" href="{{ $reveal_cdn }}/css/theme/{{ $theme }}.css" id="theme">
|
2018-04-26 18:20:41 -05:00
|
|
|
<!-- Theme used for syntax highlighting of code -->
|
2018-04-30 17:21:33 -05:00
|
|
|
{{ $highlight_theme := or .Page.Params.reveal_hugo.highlight_theme .Site.Params.reveal_hugo.highlight_theme .Site.Data.reveal_hugo.defaults.highlight_theme "default" }}
|
|
|
|
<link rel="stylesheet" href="{{ $highlight_cdn }}/styles/{{ $highlight_theme }}.min.css">
|
2018-04-26 18:20:41 -05:00
|
|
|
<!-- Printing and PDF exports -->
|
|
|
|
<script>
|
|
|
|
var link = document.createElement( 'link' );
|
|
|
|
link.rel = 'stylesheet';
|
|
|
|
link.type = 'text/css';
|
2018-04-30 17:21:33 -05:00
|
|
|
link.href = window.location.search.match( /print-pdf/gi ) ? '{{ $reveal_cdn}}/css/print/pdf.css' : '{{ $reveal_cdn }}/css/print/paper.css';
|
2018-04-26 18:20:41 -05:00
|
|
|
document.getElementsByTagName( 'head' )[0].appendChild( link );
|
|
|
|
</script>
|
|
|
|
<!--[if lt IE 9]>
|
2018-04-30 17:21:33 -05:00
|
|
|
<script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
|
2018-04-26 18:20:41 -05:00
|
|
|
<![endif]-->
|
2018-04-30 15:19:22 -05:00
|
|
|
{{ partial "reveal-hugo/head" . }}
|
2018-04-26 18:20:41 -05:00
|
|
|
</head>
|
|
|
|
<body>
|
2018-04-28 00:56:09 -05:00
|
|
|
{{ block "main" . }}{{ end }}
|
2018-04-30 15:19:22 -05:00
|
|
|
<script type="application/json" id="reveal-hugo-page-params">{{ jsonify .Page.Params.reveal_hugo | safeJS }}</script>
|
|
|
|
<script type="application/json" id="reveal-hugo-site-params">{{ jsonify .Site.Params.reveal_hugo | safeJS }}</script>
|
2018-04-30 14:58:55 -05:00
|
|
|
<script type="application/json" id="reveal-hugo-defaults">{{ jsonify .Site.Data.reveal_hugo.defaults | safeJS }}</script>
|
|
|
|
<script type="text/javascript">
|
2018-04-30 15:19:22 -05:00
|
|
|
window.revealHugoDependencies = {
|
2018-04-26 18:20:41 -05:00
|
|
|
dependencies: [
|
2018-04-30 17:21:33 -05:00
|
|
|
{ src: '{{ $reveal_cdn }}/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
|
|
|
|
{ src: '{{ $reveal_cdn }}/plugin/zoom-js/zoom.js', async: true },
|
|
|
|
// the notes plugin can't run off the CDN b/c the HTML file isn't there
|
|
|
|
{ src: '{{ "reveal-hugo/plugin/notes/notes.js" | relURL }}', async: true }
|
2018-04-30 14:58:55 -05:00
|
|
|
]};
|
2018-04-26 18:20:41 -05:00
|
|
|
</script>
|
2018-04-30 17:21:33 -05:00
|
|
|
<script src="{{ $reveal_cdn }}/lib/js/head.min.js"></script>
|
|
|
|
<script src="{{ $reveal_cdn }}/js/reveal.js"></script>
|
|
|
|
<script type="text/javascript">
|
|
|
|
// pattern inspired by https://github.com/RealOrangeOne/hugo-theme-revealjs
|
|
|
|
var revealHugoPageParams = JSON.parse(document.getElementById('reveal-hugo-page-params').innerHTML);
|
|
|
|
var revealHugoSiteParams = JSON.parse(document.getElementById('reveal-hugo-site-params').innerHTML);
|
|
|
|
var revealHugoDefaults = JSON.parse(document.getElementById('reveal-hugo-defaults').innerHTML);
|
|
|
|
// See all options - https://github.com/hakimel/reveal.js#configuration
|
|
|
|
Reveal.initialize(Object.assign(
|
|
|
|
revealHugoDefaults,
|
|
|
|
revealHugoSiteParams,
|
|
|
|
revealHugoPageParams,
|
|
|
|
revealHugoDependencies));
|
|
|
|
</script>
|
2018-04-30 14:58:55 -05:00
|
|
|
{{ partial "reveal-hugo/body" . }}
|
2018-04-26 18:20:41 -05:00
|
|
|
</body>
|
|
|
|
</html>
|