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

17 lines
363 B
Twig
Raw Normal View History

{% extends layout %}
{% block title %}bookmarks{% endblock %}
{% block content %}
{% if entries is empty %}
2014-01-15 07:23:44 -05:00
<div class="alert alert-info">{{ 'No link available here!'|trans }}</div>
{% else %}
2014-01-15 07:23:44 -05:00
<section id="listing" class="items">
{% for entry in entries %}
2014-01-14 09:00:11 -05:00
{% include "_entry.twig" %}
{% endfor %}
2014-01-15 07:23:44 -05:00
</section>
{% endif %}
{% endblock %}