-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathmdTemplate.txt
More file actions
62 lines (61 loc) · 1.4 KB
/
Copy pathmdTemplate.txt
File metadata and controls
62 lines (61 loc) · 1.4 KB
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
<html>
<head>
<title>[%title%]</title>
<script src="http://fargo.io/code/jquery-1.9.1.min.js"></script>
<link href="http://fargo.io/code/bootstrap.css" rel="stylesheet">
<script src="http://fargo.io/code/bootstrap.min.js"></script>
<link rel="stylesheet" href="http://fargo.io/code/fontAwesome/css/font-awesome.min.css"/>
<link href="http://fargo.io/code/ubuntuFont.css" rel="stylesheet" type="text/css">
<link href="http://scripting.com/code/pagepark/defaultmarkdownstyles.css" rel="stylesheet" type="text/css">
<script>
function startup () {
console.log ("startup");
}
</script>
<style>
body {
font-family: "Ubuntu";
font-size: 18px;
line-height: 140%;
background-color: white;
}
.divPageBody {
width: 60%;
margin-top: 50px;
margin-left: auto;
margin-right: auto;
margin-bottom: 400px;
}
.ulFileList {
list-style-type: none;
}
.ulFileList li {
line-height: 150%;
margin-left: 0;
}
.markdown-body {
box-sizing: border-box;
min-width: 200px;
max-width: 980px;
margin: 0 auto;
}
@media (max-width: 767px) {
.markdown-body {
padding: 15px;
}
}
</style>
</head>
<body>
<div class="divPageBody">
<article class="markdown-body">
[%bodytext%]
</article>
</div>
<script>
$(document).ready (function () {
startup ();
});
</script>
</body>
</html>