categoria_fotos.html 625 B

1234567891011121314151617181920212223242526272829303132
  1. {% extends "base.html" %}
  2. {% block content %}
  3. <article class="h-entry">
  4. <div>
  5. {% if heading %}<h1 class="p-name">{{heading}}</h1>{% endif %}
  6. </div>
  7. <div class='e-content'>
  8. <div class="row">
  9. {% for post in contexto['lista_posts_recientes'] %}
  10. <div id="noticia">
  11. <big>
  12. <a href="/posts/{{ post[0] }}">
  13. {{ post[0]|upper }}
  14. </a>
  15. </big>
  16. <small>- modificado: {{ post[1] }} </small>
  17. <p>
  18. {{ post[2]|safe }} ...
  19. (<a href="/posts/{{ post[0] }}">
  20. ver más
  21. </a>)
  22. </p>
  23. </div>
  24. {% endfor %}
  25. </div>
  26. {{contents}}
  27. </div>
  28. </article>
  29. {% endblock %}