themes are now available as separate css files under css/theme/, old theme option in config is no longer supported (closes #104)
This commit is contained in:
18
index.html
18
index.html
@ -6,7 +6,7 @@
|
||||
|
||||
<title>reveal.js - HTML5 Presentations</title>
|
||||
|
||||
<meta name="description" content="An easy to use CSS 3D slideshow tool for quickly creating good looking HTML presentations.">
|
||||
<meta name="description" content="A framework for easily creating beautiful presentations using HTML">
|
||||
<meta name="author" content="Hakim El Hattab">
|
||||
|
||||
<meta name="apple-mobile-web-app-capable" content="yes" />
|
||||
@ -14,13 +14,16 @@
|
||||
|
||||
<link href='http://fonts.googleapis.com/css?family=Lato:400,700,400italic,700italic' rel='stylesheet' type='text/css'>
|
||||
|
||||
<link rel="stylesheet" href="css/reset.css">
|
||||
<link rel="stylesheet" href="css/main.css">
|
||||
<link rel="stylesheet" href="css/theme/default.css">
|
||||
|
||||
<!-- For syntax highlighting -->
|
||||
<link rel="stylesheet" href="lib/css/zenburn.css">
|
||||
|
||||
<script>
|
||||
// If the query includes print-pdf we'll use the fancy print CSS
|
||||
document.write( '<link rel="stylesheet" href="css/' + (window.location.search.match( /print-pdf/gi ) ? 'print-pdf.css' : 'print.css') + '" type="text/css" media="print">' );
|
||||
// If the query includes print-pdf we'll use the PDF print sheet
|
||||
var printStyle = window.location.search.match( /print-pdf/gi ) ? 'pdf' : 'paper';
|
||||
document.write( '<link rel="stylesheet" href="css/print/' + printStyle + '.css" type="text/css" media="print">' );
|
||||
</script>
|
||||
|
||||
<!--[if lt IE 9]>
|
||||
@ -39,13 +42,13 @@
|
||||
<div class="slides">
|
||||
<section>
|
||||
<h1>Reveal.js</h1>
|
||||
<h3 class="inverted">HTML Presentations Made Easy</h3>
|
||||
<h3>HTML Presentations Made Easy</h3>
|
||||
</section>
|
||||
|
||||
<section>
|
||||
<h2>Heads Up</h2>
|
||||
<p>
|
||||
reveal.js is an easy to use, HTML based, presentation tool. You'll need a modern browser with
|
||||
reveal.js is a framework for easily creating beautiful presentations using HTML. You'll need a browser with
|
||||
support for CSS 3D transforms to see it in its full glory.
|
||||
</p>
|
||||
<p>
|
||||
@ -262,7 +265,7 @@ function linkify( selector ) {
|
||||
|
||||
<section>
|
||||
<h1>THE END</h1>
|
||||
<h3 class="inverted">BY Hakim El Hattab / hakim.se</h3>
|
||||
<h3>BY Hakim El Hattab / hakim.se</h3>
|
||||
</section>
|
||||
</div>
|
||||
|
||||
@ -301,7 +304,6 @@ function linkify( selector ) {
|
||||
progress: true,
|
||||
history: true,
|
||||
|
||||
theme: Reveal.getQueryHash().theme || 'default', // default/neon/beige
|
||||
transition: Reveal.getQueryHash().transition || 'default' // default/cube/page/concave/linear(2d)
|
||||
});
|
||||
|
||||
|
Reference in New Issue
Block a user