Skip to content

Instantly share code, notes, and snippets.

@fmasanori
Created July 3, 2013 21:28
Show Gist options
  • Select an option

  • Save fmasanori/5922989 to your computer and use it in GitHub Desktop.

Select an option

Save fmasanori/5922989 to your computer and use it in GitHub Desktop.
tutorial bottle 03 template hello world2
<!DOCTYPE html>
<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