-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsmartdown_template.html
57 lines (48 loc) · 1.29 KB
/
smartdown_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
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="user-scalable=no, width=device-width, initial-scale=1">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<base href="${smartdownSite}/lib/">
<title>${title}</title>
<link rel="stylesheet" href="fonts.css">
<link rel="stylesheet" href="smartdown.css">
<!--
<script>
window.godownBase = 'http://127.0.0.1:8484/';
</script>
<script src="http://127.0.0.1:8484/godown.js"></script>
-->
<!--
<script>
window.godownBase = 'https://rawgit.com/DoctorBud/godown/master/godown/';
</script>
<script src="https://rawgit.com/DoctorBud/godown/master/godown/godown.js"></script>
-->
<script src="smartdown.js"></script>
<script src="calc_handlers.js"></script>
${escapedScripts}
</head>
<body
style="margin:0;padding:0;background:white;">
<div
class="container-fluid"
style="margin:0;padding:0;">
<div
class="smartdown-container"
id="smartdown-output">
</div>
</div>
<script>
window.smartdownDefaultHome = '${base}';
</script>
<script src="inline_helper.js"></script>
<script>
smartdown.setLinkRules([
${mediaLinkRules}
]);
</script>
</body>
</html>