Permalink
Cannot retrieve contributors at this time
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
62 lines (61 sloc)
1.4 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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> |