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.
 
 
 
 

13 lines
338 B

<html>
<head>
<title>Home</title>
<link rel="stylesheet" type="text/css" href="/webResources/styles.css">
</head>
<body>
<h1>Simple Blog</h1>
<p>The owner hasn't set up their templates/Home.html template yet.</p>
{% for post in allPosts %}
<a href="blog/{{post}}">{{post}}</a><br />
{% end %}
</body>
</html>