-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Strip gtc interview down to template
- Loading branch information
Showing
4 changed files
with
55 additions
and
206 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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.