1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-15 21:55:09 -05:00
wallabag/app/views/bookmarks.twig
2014-01-13 22:15:28 +01:00

17 lines
332 B
Twig

{% 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 %}
{% include "entry.twig" %}
{% endfor %}
</ul>
{% endif %}
{% endblock %}