1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-08-13 16:54:00 -04:00
wallabag/app/views/bookmarks.twig
2014-01-15 13:23:44 +01:00

17 lines
363 B
Twig

{% extends layout %}
{% block title %}bookmarks{% 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 %}