Created
March 5, 2009 21:56
-
-
Save abuiles/74585 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
markup = <html> | |
<head> | |
<meta http-equiv="content-type" content="text/html; charset=utf-8" /> | |
<title>A poor-man's blog</title> | |
<meta name="keywords" content="turbinado, haskell, mvc " > </meta> | |
<meta name="description" content="This is a small Blog application written in Turbinado." > </meta> | |
<% styleSheet "default" "screen"%> | |
</head> | |
<div id="page"> | |
<div id="content"> | |
<% insertDefaultView %> | |
</div> | |
--- end content -- | |
-- start sidebar -- | |
<div id="sidebar"> | |
<ul> | |
<li id="search"> | |
<h2>Search</h2> | |
<form method="post" action="/Posts/Search" > | |
<fieldset> | |
<input type="text" id="s" name="s" value=""> </input> | |
<input type="submit" value="Search" > </input> | |
</fieldset> | |
</form> | |
</li> | |
</ul> | |
</div> | |
-- end sidebar -- | |
<div style="clear: both;"> </div> | |
</div> | |
--end page------ | |
-- start footer -- | |
<div id="footer"> | |
<div id="footer-wrap"> | |
<p id="legal">(c) 2009 A poor-man's blog. Design by <a href="http://www.freecsstemplates.org/">Free CSS Templates</a>.</p> | |
</div> | |
</div> | |
-- end footer -- | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment