summaryrefslogtreecommitdiffstats
path: root/themes/rusted/templates/archives.html
blob: 17ebfb1a27cedb2e42793e9977b9f2af2b65347b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{% extends "base.html" %}

{% block content %}
<div class="row">
  <div class="col-md-12">
    <ul class="list-unstyled past-issues">
      <li class="nav-header disabled"><h2>Past issues</h2></li>
      {% for article in articles %}
      <li>
        {% include "_post-title.html" %}
      </li>
      {% endfor %}
    </ul>
  </div>
</div>
{% endblock content %}