mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-15 13:45:04 -05:00
17 lines
330 B
Twig
17 lines
330 B
Twig
{% extends layout %}
|
|
{% block title %}archive{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if entries is empty %}
|
|
<div class="messages warning"><p>{{ 'No link available here!'|trans }}</p></div>
|
|
{% else %}
|
|
<ul>
|
|
{% for entry in entries %}
|
|
{% include "entry.twig" %}
|
|
{% endfor %}
|
|
</ul>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|