aboutsummaryrefslogblamecommitdiffstats
path: root/medio/templates/archives.html
blob: 63deb041036fa864d1b0bb4f9573085e1f6ce4f5 (plain) (tree)





























                                                                                                                 
{% extends "base.html" %}
{% block content %}
<div class="page-container archive-container">

    <div class="article-header-container">
        <div class="background-image-container">

            {# title with big background image #}
            <div class="background-image-small">
                <div class="title-container">
                    <h1>Archives for {{ SITENAME }}</h1>
                </div>
            </div>
        </div>
    </div>

    <div class="entry-content" style="min-height:100vh">

      <ul>
      {% for article in dates %}
          <li>
              <a href="{{ SITEURL }}/{{ article.url }}">{{ article.title }}</a> &mdash; {{ article.locale_date }}
          </li>
      {% endfor %}
      </ul>

    </div>

</div>
{% endblock %}