Created
August 16, 2013 19:32
-
-
Save manuel14/6252822 to your computer and use it in GitHub Desktop.
template
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
<html> | |
<style | |
img { width:100px; } | |
</style> | |
<header> | |
<nav> | |
<ul> | |
<li><a href="/">Inicio</a></li> | |
<li><a href="/usuarios">Usuarios registrados</a></li> | |
<li><a href="/recetas">Recetas</a></li> | |
<li><a href="sobre">Sobre</a></li> | |
</ul> | |
</nav> | |
</header> | |
<section> | |
<h1>Nuestras recetas</h1> | |
<ul> | |
{% for dato in datos %} | |
<li> | |
<a href="/receta/{{dato.id}}">{{dato.titulo}}</a><br> | |
<img src="{{MEDIA_URL}}{{item.imagen}}"> | |
</li> | |
{% endfor %} | |
</ul> | |
</section> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment