page_presentation.html 1.0 KB

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