| 12345678910111213141516171819202122232425262728293031323334 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="utf-8">
- <meta name="apple-mobile-web-app-capable" content="yes" />
- <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
- <link rel="stylesheet" type="text/css" href="/css/crowi-reveal{% if env == 'production' %}.min{% endif %}.css">
- <link rel="stylesheet" type="text/css" href="/js/reveal/lib/css/zenburn.css">
- <script src="{{ assets('/js/bundled.js') }}"></script>
- <title>{{ path|path2name }} | {{ path }}</title>
- </head>
- <body>
- <div class="reveal">
- <div class="slides">
- <section data-markdown data-separator="^\n\n\n">
- <script type="text/template">
- {{ revision.body|presentation|safe }}
- # おしまい
- </script>
- </section>
- </div>
- </div>
- <script src="{{ assets('/js/presentation.js') }}"></script>
- </body>
- </html>
|