1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-12-02 13:52:18 -05:00
wallabag/app/views/archive.twig

17 lines
331 B
Twig
Raw Normal View History

2014-01-09 15:08:39 -05:00
{% extends layout %}
{% block title %}archive{% endblock %}
2014-01-09 15:08:39 -05:00
{% block content %}
2014-01-09 15:08:39 -05:00
{% if entries is empty %}
<div class="messages warning"><p>{{ 'No link available here!'|trans }}</p></div>
{% else %}
<ul>
{% for entry in entries %}
2014-01-14 09:00:11 -05:00
{% include "_entry.twig" %}
2014-01-09 15:08:39 -05:00
{% endfor %}
</ul>
{% endif %}
{% endblock %}