A simple orgmode HTTP server written with Tornado
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
<!doctype html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<meta charset="utf-8">
|
|
|
|
<title>{{ title }}</title>
|
|
|
|
<!-- For mobile -->
|
|
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
|
|
|
|
|
|
<link rel="stylesheet" type="text/css" href="/webResources/styles.css">
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<article>
|
|
|
|
{% raw postBody %}
|
|
|
|
</article>
|
|
|
|
|
|
|
|
<br />
|
|
|
|
<nav>
|
|
|
|
<a href="/">Back to Home</a>
|
|
|
|
</nav>
|
|
|
|
<br />
|
|
|
|
</body>
|
|
|
|
</html>
|