-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
57 lines (46 loc) · 2.03 KB
/
index.html
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
<!DOCTYPE html>
<html>
<head>
<title>HTML5 Slideshow Boilerplate</title>
<meta charset="utf-8">
<!-- The bottom 4 lines turns this plain HTML doc into a slideshow. -->
<script src="libs/js/prettify.js"></script>
<link rel="stylesheet" type="text/css" href="libs/css/slideshow.css" />
<link rel="stylesheet" type="text/css" href="http://fonts.googleapis.com/css?family=' +
'Open+Sans:regular,semibold,italic,italicsemibold|Droid+Sans+Mono" />
<script src="libs/js/slides.js"></script>
<!-- references to custom stuff goes here. -->
<script src="js/script.js"></script>
<link rel="stylesheet" type="text/css" href="css/styles.css" />
</head>
<body class="hidden">
<div class="slides layout-regular template-default">
<div class="slide">
<h1>
HTML5 Slideshow<br/>
Boilerplate
</h1>
<p>Just add your content, and you'll have a slideshow.</p>
<p>Press right on your keyboard or tap / click the right hand side to move forward.</p>
</div>
<div class="slide">
<h3>How do I use this?</h3>
<ol>
<li>
Grab the code! <small><a href="https://github.com/sankho/HTML5-Slideshow-Boilerplate">github repo </a> or a <a href="https://github.com/sankho/HTML5-Slideshow-Boilerplate/zipball/master">.zip file</a></small>
</li>
<li>Edit this file (index.html).</li>
<li>Open in browser. Boom!</li>
<li>Oh, and peek at the code in the <a href="googleExample.html">included example from google</a> for ideas.</li>
</ol>
</div>
<div class="slide">
<h3>This code was stolen.</h3>
<p>Or forked, from the <a href="http://code.google.com/p/html5slides/">original Google version.</a></p>
<br />
<h3>Why?</h3>
<p>Because, I wanted a version where all dependencies were local, and I didn't like it's use of html5 tags. Mostly. Maybe you feel the same way. If so, enjoy!</p>
</div>
</div>
</body>
</html>