indice_posts.html 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172
  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. <!-- <hr> -->
  8. <!-- <div id="attributes"> -->
  9. <!-- <p id="post-details"> -->
  10. <!-- {% if attributes['date'] %} -->
  11. <!-- <time class="dt-published" datetime="{{attributes['date']}}"> -->
  12. <!-- {% if attributes['date-text'] %} -->
  13. <!-- {{attributes['date-text']}} -->
  14. <!-- {% else %} -->
  15. <!-- {{attributes['date']}} -->
  16. <!-- {% endif %} -->
  17. <!-- </time> -->
  18. <!-- {% endif %} -->
  19. <!-- {% if attributes['author'] %} -->
  20. <!-- <span class="p-author">{{attributes['author']}}</span> -->
  21. <!-- {% endif %} -->
  22. <!-- <a class="u-url" href="/{{name}}">permalink.</a> -->
  23. <!-- </p> -->
  24. <!-- {% if attributes['summary'] %} -->
  25. <!-- <p class="p-summary">{{attributes['summary']}}</p> -->
  26. <!-- {% endif %} -->
  27. <!-- </div> -->
  28. <div class='e-content'>
  29. <div class="row">
  30. <div class="col half">
  31. <h3> Lista por fecha (más reciente primero) </h3>
  32. <ul>
  33. {% for archivo in contexto['lista_posts_fecha'] %}
  34. <li>
  35. <a href="posts/{{ archivo[1][0:-3] }}">
  36. {{ archivo[1][0:-3] }}
  37. </a>
  38. <small> - modificado:{{ archivo[0] }}</small>
  39. </li>
  40. {% endfor %}
  41. </ul>
  42. </div>
  43. <div class="col half">
  44. <h3> Lista por categorías </h3>
  45. <ul>
  46. {% for post in contexto['lista_posts_categoria'] %}
  47. <dd>
  48. <!--(nombre_categoria, numero_posts, [nombres_posts])-->
  49. <span class="categorias">
  50. <a href="/posts/categoria/{{ post[0] }}">#{{ post[0] }} </a>
  51. </span>
  52. ({{ post[1] }})
  53. <ul>
  54. <dd>
  55. {% for nombre_post in post[2] %}
  56. ·<a href="/posts/{{ nombre_post }}">
  57. {{ nombre_post }} &nbsp;&nbsp;
  58. </a>
  59. {% endfor %}
  60. </dd>
  61. </ul>
  62. </dd>
  63. {% endfor %}
  64. </div>
  65. </div>
  66. {{contents}}
  67. </div>
  68. </article>
  69. {% endblock %}