slides.tmpl 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. {{ define "slides.tmpl" }}
  2. <!doctype html>
  3. <html lang="en">
  4. <head>
  5. <meta charset="utf-8">
  6. <title>reveal.js - The HTML Presentation Framework</title>
  7. <meta name="description" content="An awesome presentation">
  8. <meta name="author" content="">
  9. <meta name="apple-mobile-web-app-capable" content="yes" />
  10. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  11. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no, minimal-ui">
  12. <link rel="stylesheet" href="/static/reveal.js/css/reveal.css">
  13. <link rel="stylesheet" href="/static/reveal.js/css/theme/black.css" id="theme">
  14. <!-- Code syntax highlighting -->
  15. <link rel="stylesheet" href="/static/reveal.js/lib/css/zenburn.css">
  16. <!-- Printing and PDF exports -->
  17. <script>
  18. var link = document.createElement( 'link' );
  19. link.rel = 'stylesheet';
  20. link.type = 'text/css';
  21. link.href = window.location.search.match( /print-pdf/gi ) ? '/static/reveal.js/css/print/pdf.css' : '/static/reveal.js/css/print/paper.css';
  22. document.getElementsByTagName( 'head' )[0].appendChild( link );
  23. </script>
  24. <!--[if lt IE 9]>
  25. <script src="lib/js/html5shiv.js"></script>
  26. <![endif]-->
  27. </head>
  28. <body>
  29. <select id="themes" hidden="true" style="float:right;">
  30. </select>
  31. <div class="reveal">
  32. <div class="slides"></div>
  33. </div>
  34. <script src="/static/jquery/jquery-3.3.1.min.js"></script>
  35. <script src="/static/reveal.js/js/reveal.js"></script>
  36. <script src="/static/reveal.js/lib/js/head.min.js"></script>
  37. <script type="text/javascript" src="/static/reveal.js/plugin/highlight/highlight.js"></script>
  38. <script type="text/javascript" src="/static/reveal.js/plugin/notes/notes.js"></script>
  39. <script type="text/javascript" src="/static/reveal.js/plugin/markdown/marked.js"></script>
  40. <script type="text/javascript" src="/static/reveal.js/plugin/markdown/markdown.js"></script>
  41. <script src="/static/js/slides.js"></script>
  42. </body>
  43. </html>
  44. {{ end }}