Skip to content

Commit

Permalink
Add slides for Grundlagen and Components
Browse files Browse the repository at this point in the history
  • Loading branch information
joachimprinzbach committed Feb 5, 2017
1 parent a2e8aba commit 93d15dc
Show file tree
Hide file tree
Showing 6 changed files with 60 additions and 414 deletions.
2 changes: 1 addition & 1 deletion .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

57 changes: 57 additions & 0 deletions 02_Grundlagen.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
<!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="css/reveal.css">
<link rel="stylesheet" href="css/theme/baloise.css">

<!-- Theme used for syntax highlighting of code -->
<link rel="stylesheet" href="lib/css/androidstudio.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">
<section class="deck-slide" data-background="#E5F3F9">
<h1>Grundlagen - Ökosystem, TypeScript & RxJS</h1>
</section>
<section>
<h2>Placeholder</h2>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="js/reveal.js"></script>

<script>
// More info https://github.com/hakimel/reveal.js#configuration
Reveal.initialize({
history: true,

// More info https://github.com/hakimel/reveal.js#dependencies
dependencies: [
{src: 'plugin/markdown/marked.js'},
{src: 'plugin/markdown/markdown.js'},
{src: 'plugin/notes/notes.js', async: true},
{
src: 'plugin/highlight/highlight.js', async: true, callback: function () {
hljs.initHighlightingOnLoad();
}
}
]
});
</script>
</body>
</html>
1 change: 0 additions & 1 deletion components.html → 03_Components.html
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,6 @@ <h2>Die App - ein Baum von Komponenten</h2>
</section>
</div>
</div>

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

Expand Down
Loading

0 comments on commit 93d15dc

Please sign in to comment.