mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-15 21:55:09 -05:00
17 lines
361 B
Twig
17 lines
361 B
Twig
{% extends layout %}
|
|
{% block title %}archive{% endblock %}
|
|
|
|
{% block content %}
|
|
{% if entries is empty %}
|
|
<div class="alert alert-info">{{ 'No link available here!'|trans }}</div>
|
|
{% else %}
|
|
<section id="listing" class="items">
|
|
{% for entry in entries %}
|
|
{% include "_entry.twig" %}
|
|
{% endfor %}
|
|
</section>
|
|
|
|
{% endif %}
|
|
|
|
{% endblock %}
|