Skip to content

Instantly share code, notes, and snippets.

@showyou
Created May 23, 2009 01:14
Show Gist options
  • Save showyou/116453 to your computer and use it in GitHub Desktop.
Save showyou/116453 to your computer and use it in GitHub Desktop.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1 //EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html>
<head>
<title>Sample HTML</title>
</head>
<body>
<h1>Sample</h1>
<hr />
<div class="content">
% for m in messages:
<div class ="message">
<span class="message_header">${m["name"] | h}</span>
<span class="message_body">${m["content"] | h}</span>
</div>
% endfor
</div>
</body>
</html
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment