-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtemplate.html
29 lines (29 loc) · 906 Bytes
/
template.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
<!DOCTYPE html>
<html lang=en>
<head>
<meta charset=utf-8>
<title>{%title%}</title>
<style type=text/css>
{%style%}
</style>
<link rel=stylesheet href="file://{%support%}/tags.css">
<link rel=stylesheet href="file://{%support%}/tasks.css">
<link rel=stylesheet href=http://yandex.st/highlightjs/7.3/styles/tomorrow-night-eighties.min.css>
</head>
<body>
<div id=wrapper>
<header>
<h1 class=doctitle>{%title%}</h1>
</header>
<div id=contentdiv>
{%content%}
</div>
</div>
<script src=http://code.jquery.com/jquery-2.0.0.min.js></script>
<script src=http://yandex.st/highlightjs/7.3/highlight.min.js></script>
<script src="file://{%support%}/modes.js"></script>
<script src="file://{%support%}/tags.js"></script>
<script src="file://{%support%}/github-flavored-markdown.js"></script>
<script src="file://{%support%}/tasks.js"></script>
</body>
</html>