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

20 lines
446 B
Twig

{% extends layout %}
{% block title %}
{% if entries is defined %}
{% set count = entries|length %}
{% endif %}unread ({{count}}){% 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 %}