Created
September 16, 2014 19:56
-
-
Save jcarlosgarcia/229c8a8187dc3fd20b0f to your computer and use it in GitHub Desktop.
M101P hello_world.tpl
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
<!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