2014-01-09 15:08:39 -05:00
|
|
|
{% extends layout %}
|
2014-01-13 16:15:28 -05:00
|
|
|
{% block title %}archive{% endblock %}
|
2014-01-09 15:08:39 -05:00
|
|
|
|
2014-01-09 15:20:35 -05:00
|
|
|
{% block content %}
|
2014-01-09 15:08:39 -05:00
|
|
|
{% if entries is empty %}
|
2014-01-15 07:23:44 -05:00
|
|
|
<div class="alert alert-info">{{ 'No link available here!'|trans }}</div>
|
2014-01-09 15:08:39 -05:00
|
|
|
{% else %}
|
2014-01-15 07:23:44 -05:00
|
|
|
<section id="listing" class="items">
|
2014-01-09 15:08:39 -05:00
|
|
|
{% for entry in entries %}
|
2014-01-14 09:00:11 -05:00
|
|
|
{% include "_entry.twig" %}
|
2014-01-09 15:08:39 -05:00
|
|
|
{% endfor %}
|
2014-01-15 07:23:44 -05:00
|
|
|
</section>
|
2014-01-09 15:08:39 -05:00
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
|
|
|
{% endblock %}
|