Skip to content

Instantly share code, notes, and snippets.

@fsouza
Created June 24, 2010 03:34
Show Gist options
  • Save fsouza/450936 to your computer and use it in GitHub Desktop.
Save fsouza/450936 to your computer and use it in GitHub Desktop.
<html>
<head>
<meta http-equiv="Content-type" content="text/html; charset=utf-8"/>
<title>Lista de remédios</title>
</head>
<body id="">
<ul>
{% for remedio in remedios %}
<li>{{ remedio.nome }}</li>
{% endfor %}
</ul>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment