-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
62 lines (46 loc) · 1.96 KB
/
index.html
File metadata and controls
62 lines (46 loc) · 1.96 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta name="viewport" content="width=1024" />
<meta name="apple-mobile-web-app-capable" content="yes" />
<title>CSS Training</title>
<meta name="description" content="impress.js is a presentation tool based on the power of CSS3 transforms and transitions in modern browsers and inspired by the idea behind prezi.com." />
<link href='http://fonts.googleapis.com/css?family=Josefin+Slab:400' rel='stylesheet' type='text/css'>
<link href='http://fonts.googleapis.com/css?family=Josefin+Sans:400' rel='stylesheet' type='text/css'>
<!-- Syntax Highlighting -->
<link rel="stylesheet" href="http://yandex.st/highlightjs/8.0/styles/zenburn.min.css">
<!-- <link href="bower_components/impress.js/css/impress-demo.css" rel="stylesheet" /> -->
<link href="css/impressConsole.css" rel="stylesheet" />
<link href="css/main.css" rel="stylesheet" />
<link rel="shortcut icon" href="favicon.png" />
<link rel="apple-touch-icon" href="apple-touch-icon.png" />
</head>
<body>
<div id="impress" class="steps">
</div>
<script src="bower_components/jquery/jquery.js"></script>
<script src="bower_components/handlebars/handlebars.js"></script>
<script src="bower_components/impress.js/js/impress.js"></script>
<script src="js/impressConsole.js"></script>
<script src="js/main.js"></script>
<script id="step-template" type="x-handlebars-template">
<div id="{{id}}" class="{{class}}"{{#step data}}{{uri}}{{/step}}>{{{file}}}</div>
</script>
<script>
// First, get sorted slide list
$.getJSON('/training-day-css/steps/list.json', function(data) {
// Append ordered slides
appendSlides(data);
impress().init();
impressConsole().init();
});
</script>
<script src="http://yandex.st/highlightjs/8.0/highlight.min.js"></script>
<script>
$(document).ready(function() {
$('pre').each(function(i, e) {hljs.highlightBlock(e)});
});
</script>
</body>
</html>