Skip to content

Commit

Permalink
cleanup slides
Browse files Browse the repository at this point in the history
  • Loading branch information
Jxck committed Apr 16, 2012
1 parent 1f3aee5 commit 5e8eac3
Show file tree
Hide file tree
Showing 2 changed files with 81 additions and 1 deletion.
80 changes: 80 additions & 0 deletions index.html
@@ -0,0 +1,80 @@
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>index</title>
<meta name="viewport" content="width=1024, user-scalable=no">

<!-- Replace path with correct path to deck.core.css. -->
<link rel="stylesheet" href="../public/stylesheets/deck.core.css" type="text/css">

<!-- Any other extension CSS files go here. -->
<link rel="stylesheet" id="style-theme-link" href="../public/themes/style/neon.css">
<link rel="stylesheet" id="transition-theme-link" href="../public/themes/transition/horizontal-slide.css">

<link rel="stylesheet" id="shjs-link" href="../public/stylesheets/sh_style.css">

<link rel="stylesheet" href="../public/stylesheets/style.css" type="text/css">
<link rel="stylesheet" id="transition-theme-link" href="../public/extensions/status/deck.status.css">
<link rel="stylesheet" id="transition-theme-link" href="../public/extensions/menu/deck.menu.css">
<!-- Replace path with correct path to Modernizr file. -->
<script src="../public/javascripts/modernizr.custom.js"></script>
</head>
<body class="deck-container">

<!-- Create any number of elements with class slide within the container -->
<section class="slide">
<h2>index</h2>
<ul>
<li><a href="slides/nodefest2011.html">Node.js for Beginner</a>@nodefest2011</li>
<li><a href="slides/nodeacademy3.html">about SlideStream</a>@nodeacademy3</li>
<li><a href="slides/nodeacademy5.html">What is Meteor?</a>@nodeacademy5</li>
</ul>
</section>

<section class="slide">
<h1>May the Node be with you</h1>
</section>

<section class="slide">
<h1>Jxck.on('end');<p class="small"><span class="mono">// thank you ;) </span></p></h1>
</section>

<!-- Other extension HTML snippets go here, at the bottom of the deck container. -->
<p class="deck-status">
<span class="deck-status-current"></span>
/
<span class="deck-status-total"></span>
<span class="deck-status-viewer">(0)</span>
</p>

<!-- Update these paths to point to the correct files. -->
<script src="../public/javascripts/jquery-1.6.4.min.js"></script>


<!-- Add any other extension JS files here -->
<!-- <script src="../public/javascripts/deck.core.js"></script> -->
<!-- <script src="../public/extensions/hash/deck.hash.js"></script> -->
<!-- <script src="../public/extensions/menu/deck.menu.js"></script> -->
<!-- <script src="../public/extensions/status/deck.status.js"></script> -->
<script src="../public/javascripts/deck.compiled.js"></script>


<script src="../public/javascripts/sh_main.min.js"></script>
<script src="../public/javascripts/sh_javascript.min.js"></script>
<script src="../public/javascripts/sh_sh.min.js"></script>
<!-- <script src="../public/javascripts/diff_match_patch.js"></script> -->
<script src="/socket.io/socket.io.js"></script>
<!-- <script src="lib/diff_launch.js"></script> -->
<script src="../public/javascripts/client.js"></script>

<!-- Initialize the deck. You can put this in an external file if desired. -->
<script>
$(function() {
sh_highlightDocument('lang/', '.js');
sh_highlightDocument('lang/', '.shell');
$.deck('.slide');
});
</script>
</body>
</html>
2 changes: 1 addition & 1 deletion static.server.js
Expand Up @@ -41,7 +41,7 @@ app.configure('production', function() {

// Routes
app.get('/', function(req, res) {
res.redirect('index.html');
res.redirect('/index.html');
});

app.get('/admin', function(req, res) {
Expand Down

0 comments on commit 5e8eac3

Please sign in to comment.