Skip to content

Instantly share code, notes, and snippets.

@jcarlosgarcia
Created September 16, 2014 19:56
Show Gist options
  • Save jcarlosgarcia/229c8a8187dc3fd20b0f to your computer and use it in GitHub Desktop.
Save jcarlosgarcia/229c8a8187dc3fd20b0f to your computer and use it in GitHub Desktop.
M101P hello_world.tpl
<!DOCTYPE hml>
<html>
<head>
<title>Hello World!</title>
</head>
<body>
<p>
Welcome {{username}}
<p>
<ul>
%for thing in things:
<li>{{thing}}</li>
%end
</ul><p>
<form action="/favorite_fruit" method="POST">
What is your favorite fruit?
<input type="text" name="fruit" size="40" value=""><br>
<input type="submit" value="Submit">
</form>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment