diff --git a/templates/_index.html b/templates/_index.html index 258a0d0f8ad76a3db980289fd56e1ef520033909..d2558f908dc04ae8f8792efabf8a2f0465ee52be 100644 --- a/templates/_index.html +++ b/templates/_index.html @@ -30,6 +30,7 @@ <![endif]--> <link rel="shortcut icon" type="image/x-icon" href="favicon.ico" /> + <link rel="stylesheet" type="text/css" href="//fonts.googleapis.com/css?family=Lato" /> </head> <body> @@ -37,13 +38,12 @@ <div class="reveal"> <div class="slides"> - <% _.forEach(slides, function(slide) { %> <% if (!_.isArray(slide)) { %> <%= section(slide) %> <% } %> <% if (_.isArray(slide)) { %> - <section> + <section data-transition="none"> <% _.forEach(slide, function(verticalslide) { %> <%= section(verticalslide) %> <% }); %> @@ -51,12 +51,12 @@ <% } %> <% }); %> </div> - <div style="width: 10%; bottom: 2%; left: 3%; position: absolute; z-index: 9999;"> + <div class="bottomLogoLeft"> <img src="img/University-of-Luxembourg-Fr-01.svg" height="110px"> </div> - <div style="width: 10%; bottom: 3%; right: 3%; position: absolute; z-index: 9999;"> + <div class="bottomLogoRight"> <img src="img/LCSB_short_small_4c_cropped.svg" height="86px"> - </div> + </div> </div> <script src="bower_components/reveal.js/lib/js/head.min.js"></script> diff --git a/templates/_section.html b/templates/_section.html index f4271b762098654b9295a61dcd48188640af6a53..96dbbf8680241fb22ca2f35ffd410edea398b564 100644 --- a/templates/_section.html +++ b/templates/_section.html @@ -1,9 +1,11 @@ <% if (!_.isString(slide) && !_.isArray(slide) && _.isObject(slide)) { %> <section data-separator="^\n\n\n" + data-transition="none" data-vertical="^\n\n" <%= _.map(slide.attr, function (val, attr) {return attr + '="' + val + '"'}).join(' ')%> <% if (_.isString(slide.filename)) { %>data-<% if (slide.filename.indexOf('.html') !== -1) { %>html<% } else { %>markdown<% }%>="slides/<%= slide.filename %>"<% } %>></section> <% } %><% if (_.isString(slide)) { %> <section data-separator="^\n\n\n" + data-transition="none" data-vertical="^\n\n" data-<% if (slide.indexOf('.html') !== -1) { %>html<% } else { %>markdown<% }%>="slides/<%= slide %>"></section> <% } %>