Skip to content

Commit

Permalink
Strip gtc interview down to template
Browse files Browse the repository at this point in the history
  • Loading branch information
ehaskins committed May 26, 2018
1 parent 3ebd1f5 commit 9e456c8
Show file tree
Hide file tree
Showing 4 changed files with 55 additions and 206 deletions.
143 changes: 0 additions & 143 deletions presentations/gtc/interview.html

This file was deleted.

63 changes: 0 additions & 63 deletions presentations/gtc/outline.md

This file was deleted.

55 changes: 55 additions & 0 deletions presentations/template/interview.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
<!doctype html>
<html>

<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">

<title>reveal.js</title>

<link rel="stylesheet" href="../reveal/css/reveal.css">
<link rel="stylesheet" href="../reveal/css/theme/white.css">
<link rel="stylesheet" href="style.css">

<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/zenburn.css">

<!-- Printing and PDF exports -->
<script>
var link = document.createElement('link');
link.rel = 'stylesheet';
link.type = 'text/css';
link.href = window.location.search.match(/print-pdf/gi) ? 'css/print/pdf.css' : 'css/print/paper.css';
document.getElementsByTagName('head')[0].appendChild(link);
</script>
</head>

<body>
<div class="reveal">
<div class="slides">

</div>
</div>

<script src="../reveal/lib/js/head.min.js"></script>
<script src="../reveal/js/reveal.js"></script>

<script>
// More info about config & dependencies:
// - https://github.com/hakimel/reveal.js#configuration
// - https://github.com/hakimel/reveal.js#dependencies
Reveal.initialize({
controls: false,
transition: "fade",
transitionSpeed: "fast",
dependencies: [
{ src: '../reveal/plugin/markdown/marked.js' },
{ src: '../reveal/plugin/markdown/markdown.js' },
{ src: '../reveal/plugin/notes/notes.js', async: true },
{ src: '../reveal/plugin/highlight/highlight.js', async: true, callback: function () { hljs.initHighlightingOnLoad(); } }
]
});
</script>
</body>

</html>
File renamed without changes.

0 comments on commit 9e456c8

Please sign in to comment.