##// END OF EJS Templates
Merge pull request #4325 from damianavila/cleaning...
Matthias Bussonnier -
r12908:f3d4ed12 merge
parent child Browse files
Show More
@@ -5,8 +5,10 b''
5 <!DOCTYPE html>
5 <!DOCTYPE html>
6 <html>
6 <html>
7 <head>
7 <head>
8 <meta charset="UTF-8">
8
9 <title>[{{nb.metadata.name}}]</title>
9 <meta charset="utf-8" />
10 <title>{{resources['metadata']['name']}}</title>
11
10 {% for css in resources.inlining.css -%}
12 {% for css in resources.inlining.css -%}
11 <style type="text/css">
13 <style type="text/css">
12 {{ css }}
14 {{ css }}
@@ -7,11 +7,13 b''
7 <head>
7 <head>
8
8
9 <meta charset="utf-8" />
9 <meta charset="utf-8" />
10 <meta http-equiv="X-UA-Compatible" content="chrome=1">
10 <meta http-equiv="X-UA-Compatible" content="chrome=1" />
11
11
12 <meta name="apple-mobile-web-app-capable" content="yes" />
12 <meta name="apple-mobile-web-app-capable" content="yes" />
13 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
13 <meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
14
14
15 <title>{{resources['metadata']['name']}} slides</title>
16
15 <!-- General and theme style sheets -->
17 <!-- General and theme style sheets -->
16 <link rel="stylesheet" href="{{resources.reveal.url_prefix}}/css/reveal.css">
18 <link rel="stylesheet" href="{{resources.reveal.url_prefix}}/css/reveal.css">
17 <link rel="stylesheet" href="{{resources.reveal.url_prefix}}/css/theme/simple.css" id="theme">
19 <link rel="stylesheet" href="{{resources.reveal.url_prefix}}/css/theme/simple.css" id="theme">
@@ -145,7 +147,7 b' MathJax.Hub.Config({'
145 // We wait for the onload function to load MathJax after the page is completely loaded.
147 // We wait for the onload function to load MathJax after the page is completely loaded.
146 // MathJax is loaded 1 unit of time after the page is ready.
148 // MathJax is loaded 1 unit of time after the page is ready.
147 // This hack prevent problems when you load multiple js files.
149 // This hack prevent problems when you load multiple js files.
148 //
150
149 window.onload = function () {
151 window.onload = function () {
150 setTimeout(function () {
152 setTimeout(function () {
151 var script = document.createElement("script");
153 var script = document.createElement("script");
General Comments 0
You need to be logged in to leave comments. Login now