-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathmarkdown.html
28 lines (25 loc) · 934 Bytes
/
markdown.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
<!DOCTYPE html>
<html>
<head>
<title>Pecha Kucha !</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" type="text/css" href="css/pechakucha.css">
<!-- <link rel="stylesheet" type="text/css" href="css/markdown.css"> -->
</head>
<!--
data-source on body element can be a local markdown file (ie. source.md)
or any public remote text (ie. https://pads.whatever.net/p/pad_id/export/txt)
data-style can also be set to any public remote css (ie. https://pads.whatever.net/p/css_pad_id/export/txt)
-->
<body
data-source="media/source.md"
data-style="">
<main class="slides"></main>
<!-- TIMER ! -->
<div id="bar"></div>
<script type="text/javascript" src='js/markdownit.js'></script>
<script type="text/javascript" src='js/pechakucha.js'></script>
<script type="text/javascript" src='js/pechakucha_markdown.js'></script>
</body>
</html>