Skip to content

Commit 31632ef

Browse files
author
Henrik Kirk
committed
Giraffe lecture skelet
1 parent 50cf62d commit 31632ef

File tree

2 files changed

+92
-0
lines changed

2 files changed

+92
-0
lines changed

slides/09/giraffe.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
<!-- .slide: data-background="#003d73" -->
2+
## Web development with Giraffe
3+
4+
![AU Logo](./../img/aulogo_uk_var2_white.png "AU Logo") <!-- .element style="width: 200px; position: fixed; bottom: 50px; left: 50px" -->
5+
6+
----
7+
8+
## Agenda
9+
10+
*
11+
12+
---
13+
14+
15+
----
16+
17+
## References
18+

slides/09/index.html

Lines changed: 74 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,74 @@
1+
<!doctype html>
2+
<html>
3+
<head>
4+
<meta charset="utf-8">
5+
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
6+
7+
<title>Giraffe</title>
8+
9+
<link rel="stylesheet" href="../../dist/reset.css">
10+
<link rel="stylesheet" href="../../dist/reveal.css">
11+
<link rel="stylesheet" href="../../dist/theme/white.css" id="theme">
12+
<!-- <link rel="stylesheet" href="../common/css/themes/au2/au.css" id="au"> -->
13+
14+
<!-- Theme used for syntax highlighted code -->
15+
<link rel="stylesheet" href="../css/highlight.js/idea.css" id="highlight-theme">
16+
<script src="../../plugin/math/math.js"></script>
17+
<style>
18+
.reveal ul {
19+
list-style-type: none;
20+
}
21+
.reveal ul ul {
22+
list-style-type: none;
23+
}
24+
</style>
25+
</head>
26+
<body>
27+
<div class="reveal">
28+
<div class="slides">
29+
<section data-markdown="./giraffe.md"
30+
data-separator="^(\r\n?|\n)---(\r\n?|\n)$"
31+
data-separator-vertical="^(\r\n?|\n)----(\r\n?|\n)$"
32+
data-separator-notes="^Note:"
33+
data-charset="iso-8859-15">
34+
35+
<!--
36+
Note that Windows uses `\r\n` instead of `\n` as its linefeed character.
37+
For a regex that supports all operating systems, use `\r?\n` instead of `\n`.
38+
-->
39+
</section>
40+
</div>
41+
</div>
42+
43+
<script src="../../dist/reveal.js"></script>
44+
<script src="../../plugin/notes/notes.js"></script>
45+
<script src="../../plugin/markdown/markdown.js"></script>
46+
<script src="../../plugin/highlight/highlight.js"></script>
47+
<script>
48+
// More info about initialization & config:
49+
// - https://revealjs.com/initialization/
50+
// - https://revealjs.com/config/
51+
Reveal.initialize({
52+
hash: true,
53+
"showNotes": false,
54+
"pdfSeparateFragments": false ,
55+
"slideNumber": true,
56+
"theme": "au",
57+
"transition": "slide",
58+
"controls": true,
59+
"progress": true,
60+
"history": true,
61+
"center": true,
62+
math: {
63+
mathjax: 'https://cdn.jsdelivr.net/gh/mathjax/mathjax@2.7.8/MathJax.js',
64+
config: 'TeX-AMS_HTML-full',
65+
// pass other options into `MathJax.Hub.Config()`
66+
TeX: { Macros: { RR: "{\\bf R}" } }
67+
},
68+
// Learn about plugins: https://revealjs.com/plugins/
69+
plugins: [ RevealMarkdown, RevealHighlight, RevealNotes, RevealMath ]
70+
});
71+
</script>
72+
73+
</body>
74+
</html>

0 commit comments

Comments
 (0)