1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-12-03 14:22:19 -05:00
wallabag/app/views/bookmarks.twig

17 lines
333 B
Twig
Raw Normal View History

{% extends layout %}
{% block title %}bookmarks{% 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 %}
2014-01-14 09:00:11 -05:00
{% include "_entry.twig" %}
{% endfor %}
</ul>
{% endif %}
{% endblock %}