page_presentation.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637
  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. <link rel="stylesheet" type="text/css" href="/css/crowi-reveal{% if env == 'production' %}.min{% endif %}.css">
  9. <link rel="stylesheet" type="text/css" href="/js/reveal/lib/css/zenburn.css">
  10. {% if env === 'development' %}
  11. <script src="/js/dll/vendor.dll.js"></script>
  12. {% endif %}
  13. <script src="{{ webpack_asset('commons').js }}"></script>
  14. <title>{{ path|path2name }} | {{ path }}</title>
  15. </head>
  16. <body>
  17. <div class="reveal">
  18. <div class="slides">
  19. <section data-markdown data-separator="^\n\n\n">
  20. <script type="text/template">
  21. {{ revision.body|presentation|safe }}
  22. # おしまい
  23. </script>
  24. </section>
  25. </div>
  26. </div>
  27. <script src="{{ webpack_asset('presentation').js }}"></script>
  28. </body>
  29. </html>