page_presentation.html 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8">
  5. <meta name="apple-mobile-web-app-capable" content="yes" />
  6. <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
  7. <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
  8. {{ customHeader() }}
  9. <!-- polyfills for IE11 -->
  10. <script>
  11. var userAgent = window.navigator.userAgent.toLowerCase();
  12. if (userAgent.indexOf('msie') != -1 || userAgent.indexOf('trident') != -1) {
  13. var scriptElement = document.createElement('script');
  14. scriptElement.src = 'https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.23.0/polyfill.min.js';
  15. var headElement = document.getElementsByTagName('head')[0];
  16. headElement.appendChild(scriptElement);
  17. }
  18. </script>
  19. <!-- jQuery, emojione (expect to hit the cache) -->
  20. <script src="https://cdn.jsdelivr.net/combine/npm/emojione@3.1.2,npm/jquery@3.3.1"></script>
  21. <!-- highlight.js -->
  22. <script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.12.0/build/highlight.min.js"></script>
  23. {% if env === 'development' %}
  24. <script src="/dll/vendor.dll.js"></script>
  25. <script src="{{ webpack_asset('dev').js }}" async></script>
  26. {% endif %}
  27. <script src="{{ webpack_asset('style').js }}"></script>
  28. <script src="{{ webpack_asset('style-presentation').js }}"></script>
  29. <script src="{{ webpack_asset('commons').js }}" defer></script>
  30. <script src="{{ webpack_asset('legacy-presentation').js }}" defer></script>
  31. <title>{{ path|path2name }} | {{ path }}</title>
  32. <!-- Google Fonts -->
  33. <link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
  34. <!-- highlight.js -->
  35. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/highlight.js@9.12.0/styles/github.css">
  36. <style>
  37. {{ customCss() }}
  38. </style>
  39. </head>
  40. <body>
  41. <div class="reveal">
  42. <div class="slides">
  43. <section data-markdown data-separator="^\n\n\n">
  44. <script type="text/template">
  45. {{ revision.body|presentation|safe }}
  46. # おしまい
  47. </script>
  48. </section>
  49. </div>
  50. </div>
  51. </body>
  52. </html>