64 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
			
		
		
	
	
			64 lines
		
	
	
		
			3.6 KiB
		
	
	
	
		
			HTML
		
	
	
	
<!doctype html>
 | 
						|
{{- $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" -}}
 | 
						|
<html lang="en">
 | 
						|
  <head>
 | 
						|
    <meta charset="utf-8">
 | 
						|
    <title>{{ or .Page.Title .Site.Title }}</title>
 | 
						|
    <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">
 | 
						|
    <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">
 | 
						|
    <!-- Theme used for syntax highlighting of code -->
 | 
						|
    {{ $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">
 | 
						|
    <!-- 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 ) ? '{{ $reveal_cdn}}/css/print/pdf.css' : '{{ $reveal_cdn }}/css/print/paper.css';
 | 
						|
      document.getElementsByTagName( 'head' )[0].appendChild( link );
 | 
						|
    </script>
 | 
						|
    <!--[if lt IE 9]>
 | 
						|
    <script src="https://cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv.js"></script>
 | 
						|
    <![endif]-->
 | 
						|
    {{ partial "reveal-hugo/head" . }}
 | 
						|
  </head>
 | 
						|
  <body>
 | 
						|
    {{ block "main" . }}{{ end }}
 | 
						|
    <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>
 | 
						|
    <script type="application/json" id="reveal-hugo-defaults">{{ jsonify .Site.Data.reveal_hugo.defaults | safeJS }}</script>
 | 
						|
    <script type="text/javascript">
 | 
						|
      window.revealHugoDependencies = {
 | 
						|
        dependencies: [
 | 
						|
          { 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 }
 | 
						|
      ]};
 | 
						|
    </script>
 | 
						|
    <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>
 | 
						|
    {{ partial "reveal-hugo/body" . }}
 | 
						|
  </body>
 | 
						|
</html>
 |