Fix templates
This commit is contained in:
parent
de52dec190
commit
cf236d0936
1 changed files with 3 additions and 13 deletions
|
@ -1,10 +1,8 @@
|
||||||
<!doctype html>
|
<!doctype html>
|
||||||
<html lang="en">
|
<html lang="en">
|
||||||
|
|
||||||
<head>
|
<head>
|
||||||
<meta charset="utf-8">
|
<meta charset="utf-8">
|
||||||
|
<title>DevOps And You</title>
|
||||||
<title>Vagrant</title>
|
|
||||||
|
|
||||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||||
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent" />
|
||||||
|
@ -12,9 +10,7 @@
|
||||||
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
|
||||||
|
|
||||||
<link rel="stylesheet" href="bower_components/reveal.js/css/reveal.min.css">
|
<link rel="stylesheet" href="bower_components/reveal.js/css/reveal.min.css">
|
||||||
|
<link rel="stylesheet" href="bower_components/reveal.js/css/theme/solarized.css" id="theme">
|
||||||
<link rel="stylesheet" href="css/theme.css" id="theme">
|
|
||||||
|
|
||||||
|
|
||||||
<!-- For syntax highlighting -->
|
<!-- For syntax highlighting -->
|
||||||
<link rel="stylesheet" href="bower_components/reveal-highlight-themes/styles/zenburn.css" id="highlight-theme">
|
<link rel="stylesheet" href="bower_components/reveal-highlight-themes/styles/zenburn.css" id="highlight-theme">
|
||||||
|
@ -36,11 +32,8 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body>
|
<body>
|
||||||
|
|
||||||
<div class="reveal">
|
<div class="reveal">
|
||||||
|
|
||||||
<div class="slides">
|
<div class="slides">
|
||||||
|
|
||||||
<% _.forEach(slides, function(slide) { %>
|
<% _.forEach(slides, function(slide) { %>
|
||||||
<% if (!_.isArray(slide)) { %>
|
<% if (!_.isArray(slide)) { %>
|
||||||
<%= section(slide) %>
|
<%= section(slide) %>
|
||||||
|
@ -54,7 +47,6 @@
|
||||||
<% } %>
|
<% } %>
|
||||||
<% }); %>
|
<% }); %>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<script src="bower_components/reveal.js/lib/js/head.min.js"></script>
|
<script src="bower_components/reveal.js/lib/js/head.min.js"></script>
|
||||||
|
@ -64,7 +56,7 @@
|
||||||
// Full list of configuration options available here:
|
// Full list of configuration options available here:
|
||||||
// https://github.com/hakimel/reveal.js#configuration
|
// https://github.com/hakimel/reveal.js#configuration
|
||||||
Reveal.initialize({
|
Reveal.initialize({
|
||||||
controls: true,
|
controls: false,
|
||||||
progress: true,
|
progress: true,
|
||||||
history: true,
|
history: true,
|
||||||
center: true,
|
center: true,
|
||||||
|
@ -87,7 +79,5 @@
|
||||||
]
|
]
|
||||||
});
|
});
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
</html>
|
</html>
|
||||||
|
|
Loading…
Reference in a new issue