Skip to content

Instantly share code, notes, and snippets.

@manuel14
Created August 16, 2013 19:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save manuel14/6252822 to your computer and use it in GitHub Desktop.
Save manuel14/6252822 to your computer and use it in GitHub Desktop.
template
<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