123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172 |
- {% extends "base.html" %}
- {% block content %}
- <article class="h-entry">
- <div>
- {% if heading %}<h1 class="p-name">{{heading}}</h1>{% endif %}
- </div>
- <!-- <hr> -->
- <!-- <div id="attributes"> -->
- <!-- <p id="post-details"> -->
- <!-- {% if attributes['date'] %} -->
- <!-- <time class="dt-published" datetime="{{attributes['date']}}"> -->
- <!-- {% if attributes['date-text'] %} -->
- <!-- {{attributes['date-text']}} -->
- <!-- {% else %} -->
- <!-- {{attributes['date']}} -->
- <!-- {% endif %} -->
- <!-- </time> -->
- <!-- {% endif %} -->
- <!-- {% if attributes['author'] %} -->
- <!-- <span class="p-author">{{attributes['author']}}</span> -->
- <!-- {% endif %} -->
- <!-- <a class="u-url" href="/{{name}}">permalink.</a> -->
- <!-- </p> -->
- <!-- {% if attributes['summary'] %} -->
- <!-- <p class="p-summary">{{attributes['summary']}}</p> -->
- <!-- {% endif %} -->
- <!-- </div> -->
- <div class='e-content'>
- <div class="row">
- <div class="col half">
- <h3> Lista por fecha (más reciente primero) </h3>
- <ul>
- {% for archivo in contexto['lista_posts_fecha'] %}
- <li>
- <a href="posts/{{ archivo[1][0:-3] }}">
- {{ archivo[1][0:-3] }}
- </a>
- <small> - modificado:{{ archivo[0] }}</small>
- </li>
- {% endfor %}
- </ul>
- </div>
- <div class="col half">
- <h3> Lista por categorías </h3>
- <ul>
- {% for post in contexto['lista_posts_categoria'] %}
- <dd>
- <!--(nombre_categoria, numero_posts, [nombres_posts])-->
- <span class="categorias">
- <a href="/posts/categoria/{{ post[0] }}">#{{ post[0] }} </a>
- </span>
- ({{ post[1] }})
- <ul>
- <dd>
- {% for nombre_post in post[2] %}
- ·<a href="/posts/{{ nombre_post }}">
- {{ nombre_post }}
- </a>
- {% endfor %}
- </dd>
- </ul>
- </dd>
- {% endfor %}
- </div>
- </div>
- {{contents}}
- </div>
- </article>
- {% endblock %}
|