2013-11-26 07:33:00 -05:00
|
|
|
{% extends layout %}
|
2014-01-13 16:15:28 -05:00
|
|
|
{% block title %}unread{% endblock %}
|
2014-01-09 09:25:31 -05:00
|
|
|
|
2014-01-09 15:20:35 -05:00
|
|
|
{% block content %}
|
2013-12-13 16:42:21 -05:00
|
|
|
{% if entries is empty %}
|
2013-12-13 17:12:08 -05:00
|
|
|
<div class="messages warning"><p>{{ 'No link available here!'|trans }}</p></div>
|
2013-12-13 16:42:21 -05:00
|
|
|
{% else %}
|
2014-01-09 09:25:31 -05:00
|
|
|
<ul>
|
2013-12-13 16:42:21 -05:00
|
|
|
{% for entry in entries %}
|
2014-01-13 16:15:28 -05:00
|
|
|
{% include "entry.twig" %}
|
2013-12-13 16:42:21 -05:00
|
|
|
{% endfor %}
|
2014-01-09 09:25:31 -05:00
|
|
|
</ul>
|
2013-12-13 16:42:21 -05:00
|
|
|
|
|
|
|
{% endif %}
|
|
|
|
|
2013-12-13 11:21:50 -05:00
|
|
|
{% endblock %}
|