-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
69 lines (68 loc) · 2.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<html>
<head>
<link rel="stylesheet" href="css/reveal.css">
<link rel="stylesheet" href="css/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="css/theme/league.css">
<link rel="stylesheet" href="css/overrides.css">
</head>
<body>
<div class="reveal">
<div class="slides">
<section data-transition="none">
<h2>JCC App </h2>
<b>A web app for the Janelia Charity Club</b>
</section>
<section data-transition="none">
<h2>Technical Details</h2>
<ul>
<li>Python flask web framework</li>
<li>Git version control</li>
<li>Command line, editors</li>
</ul>
<br/><br/>
<div class="slide-pictures-container manymany">
<img class="slide-picture" src="files/python.png"/>
<img class="slide-picture" src="files/flask.jpg"/>
<img class="slide-picture" src="files/git.png"/>
</div>
</section>
<section data-transition="none">
<h2>JCC APP</h2>
<a href="http://janelia-wcc.int.janelia.org/charityclub/">http://janelia-wcc.int.janelia.org/charityclub/</a>
</section>
<section data-transition="none">
<h2>Open questions</h2>
<ul>
<li>How will the data be sent out?</li>
<li>How to track cash vs. J-card donations?</li>
<li>User management</li>
<li>...</li>
</ul>
</section>
</div>
</div>
<script src="lib/js/head.min.js"></script>
<script src="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(
{
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();
}
}
],
slideNumber: true,
transition: 'slide'
},
);
</script>
</body>
</html>