diff options
author | Hakim El Hattab | 2012-08-08 01:14:12 -0400 |
---|---|---|
committer | Hakim El Hattab | 2012-08-08 01:14:12 -0400 |
commit | 25ad8adc68600ba9e77cbd7255a104c004126e21 (patch) | |
tree | 236477a30dbb8b39b52ad9a0d8db05cb38c907bf /index.html | |
parent | 1efca069cb99cd446ddec9b9d144fa6ddb6de1f1 (diff) |
themes are now available as separate css files under css/theme/, old theme option in config is no longer supported (closes #104)
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 18 |
1 files changed, 10 insertions, 8 deletions
@@ -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) }); |