page_presentation.html 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  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 (expect to hit the cache) -->
  19. <script src="https://cdn.jsdelivr.net/combine/npm/emojione@3.1.2,npm/jquery@3.3.1"></script>
  20. <!-- highlight.js -->
  21. <script src="https://cdn.jsdelivr.net/gh/highlightjs/cdn-release@9.12.0/build/highlight.min.js"></script>
  22. {% if env === 'development' %}
  23. <script src="/dll/vendor.dll.js"></script>
  24. <script src="{{ webpack_asset('dev').js }}" async></script>
  25. {% endif %}
  26. <script src="{{ webpack_asset('style').js }}"></script>
  27. <script src="{{ webpack_asset('style-presentation').js }}"></script>
  28. <script src="{{ webpack_asset('commons').js }}" defer></script>
  29. <script src="{{ webpack_asset('legacy-presentation').js }}" defer></script>
  30. <title>{{ path|path2name }} | {{ path }}</title>
  31. <!-- Google Fonts -->
  32. <link href='https://fonts.googleapis.com/css?family=Lato:400,700' rel='stylesheet' type='text/css'>
  33. <!-- highlight.js -->
  34. <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/highlight.js@9.12.0/styles/github.css">
  35. <style>
  36. {{ customCss() }}
  37. </style>
  38. </head>
  39. <body>
  40. <div class="reveal">
  41. <div class="slides">
  42. <section data-markdown data-separator="^\n\n\n">
  43. <script type="text/template">
  44. {{ revision.body|presentation|safe }}
  45. # おしまい
  46. </script>
  47. </section>
  48. </div>
  49. </div>
  50. </body>
  51. </html>