page_presentation.html 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. <!-- polyfills for IE11 -->
  9. <script>
  10. var userAgent = window.navigator.userAgent.toLowerCase();
  11. if (userAgent.indexOf('msie') != -1 || userAgent.indexOf('trident') != -1) {
  12. var scriptElement = document.createElement('script');
  13. scriptElement.src = 'https://cdnjs.cloudflare.com/ajax/libs/babel-polyfill/6.23.0/polyfill.min.js';
  14. var headElement = document.getElementsByTagName('head')[0];
  15. headElement.appendChild(scriptElement);
  16. }
  17. </script>
  18. <!-- jQuery, emojione, highlight.js (expect to hit the cache) -->
  19. <script src="https://cdn.jsdelivr.net/combine/npm/emojione@3.1.2,npm/jquery@3.3.1,npm/highlight.js@9.12.0"></script>
  20. {% if env === 'development' %}
  21. <script src="/dll/vendor.dll.js"></script>
  22. <script src="{{ webpack_asset('dev').js }}" async></script>
  23. {% endif %}
  24. <script src="{{ webpack_asset('style').js }}"></script>
  25. <script src="{{ webpack_asset('style-presentation').js }}"></script>
  26. <script src="{{ webpack_asset('commons').js }}" defer></script>
  27. <script src="{{ webpack_asset('legacy-presentation').js }}" defer></script>
  28. <title>{{ path|path2name }} | {{ path }}</title>
  29. <!-- Google Fonts -->
  30. <link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
  31. <!-- highlight.js -->
  32. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/highlight.js@9.12.0/styles/github.css">
  33. <style>
  34. {{ customCss() }}
  35. </style>
  36. </head>
  37. <body>
  38. <div class="reveal">
  39. <div class="slides">
  40. <section data-markdown data-separator="^\n\n\n">
  41. <script type="text/template">
  42. {{ revision.body|presentation|safe }}
  43. # おしまい
  44. </script>
  45. </section>
  46. </div>
  47. </div>
  48. </body>
  49. </html>