| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <!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.css">
- <link rel="stylesheet" type="text/css" href="/bower_components/reveal.js/lib/css/zenburn.css">
- <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="/js/crowi-reveal.js"></script>
- <script>
- Reveal.initialize({
- controls: true,
- progress: true,
- history: true,
- center: true,
- transition: 'slide',
- // Optional libraries used to extend on reveal.js
- dependencies: [
- { src: '/bower_components/reveal.js/lib/js/classList.js', condition: function() { return !document.body.classList; } },
- { src: '/bower_components/reveal.js/plugin/markdown/marked.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
- { src: '/bower_components/reveal.js/plugin/markdown/markdown.js', condition: function() { return !!document.querySelector( '[data-markdown]' ); } },
- { src: '/bower_components/reveal.js/plugin/highlight/highlight.js', async: true, callback: function() { hljs.initHighlightingOnLoad(); } },
- { src: '/bower_components/reveal.js/plugin/zoom-js/zoom.js', async: true, condition: function() { return !!document.body.classList; } },
- { src: '/bower_components/reveal.js/plugin/notes/notes.js', async: true, condition: function() { return !!document.body.classList; } }
- ]
- });
- Reveal.addEventListener('ready', function(event) {
- // event.currentSlide, event.indexh, event.indexv
- $('.reveal section').each(function(e) {
- var $self = $(this);
- if ($self.children().length == 1) {
- $self.addClass('only');
- }
- });
- });
- </script>
- </body>
- </html>
|