diff options
author | Wu Cheng-Han | 2015-12-18 09:40:52 -0600 |
---|---|---|
committer | Wu Cheng-Han | 2015-12-18 09:40:52 -0600 |
commit | 031c96c72d168a23cca0c609f46e019eced8bc64 (patch) | |
tree | 6e10c7dd5c10294aa7230d11626f4f0004b78f91 /public/views/templates/reveal.html | |
parent | 54b33f181f70786a2df624061e7a2ffb93a3eb73 (diff) |
Updated slide mode
Diffstat (limited to '')
-rw-r--r-- | public/views/slide/reveal.hbs (renamed from public/views/templates/reveal.html) | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/public/views/templates/reveal.html b/public/views/slide/reveal.hbs index 04b8c9fc..876a7ba3 100644 --- a/public/views/templates/reveal.html +++ b/public/views/slide/reveal.hbs @@ -2,7 +2,13 @@ <html lang="en"> <head> <meta charset="utf-8"> - <title>Reveal.js</title> + <meta name="apple-mobile-web-app-capable" content="yes"> + <meta name="apple-mobile-web-app-status-bar-style" content="black"> + <meta name="mobile-web-app-capable" content="yes"> + <title>{{title}}</title> + <link rel="icon" type="image/png" href="https://hackmd.io/favicon.png"> + <link rel="apple-touch-icon" href="https://hackmd.io/apple-touch-icon.png"> + <link rel="stylesheet" href="/vendor/reveal.js/css/reveal.css"> <link rel="stylesheet" href="/vendor/reveal.js/{{{theme}}}" id="theme"> <!-- For syntax highlighting --> @@ -19,7 +25,7 @@ <div class="reveal"> <div class="slides">{{{slides}}}</div> </div> - + <script src="/vendor/reveal.js/lib/js/head.min.js"></script> <script src="/vendor/reveal.js/js/reveal.js"></script> <script src="/vendor/string.min.js"></script> @@ -57,7 +63,7 @@ progress: true, history: true, center: true, - transition: 'default', + transition: 'slide', dependencies: deps }; |