2014-02-12 20:58:40 +00:00
{% extends "layout.twig" %}
{% block title %}
{% if view == 'fav' %}
{% trans "favorites" %}
{% elseif view == 'archive' %}
{% trans "archive" %}
{% else %}
{% trans "unread" %}
{% endif %}
{% endblock %}
{% block menu %}
{% include '_menu.twig' %}
{% endblock %}
{% block content %}
2014-02-28 11:13:30 +00:00
{% if tag %}
<h3> {% trans "Tag" %} : <b> {{ tag .value }} </b></h3>
{% endif %}
{% if entries is empty %}
<div class="messages warning"><p> {% trans "No articles found." %} </p></div>
{% else %}
<div>
{% include '_display-mode.twig' %}
{% include '_sorting.twig' %}
</div>
{% block pager %}
{% if nb_results > 1 %}
<div class="results">
2014-05-14 17:08:33 +00:00
<div class="nb-results"> {{ nb_results }} {% trans "results" %} {% if search_term is defined %} {% trans %} found for « {{ search_term }} » {% endtrans %} {% endif %} </div>
2014-02-28 11:13:30 +00:00
{{ page_links | raw }}
</div>
2014-04-02 15:44:47 +00:00
{% elseif nb_results == 1 %}
{% if search_term is defined %}
<div class="results">
<div class="nb-results"> {% trans "Only one result found for " %} « {{ search_term }} »</div>
</div>
{% endif %}
2014-02-28 11:13:30 +00:00
{% endif %}
{% endblock %}
2014-03-08 12:47:15 +00:00
<div id="list-entries" class="list-entries">
2014-02-28 11:13:30 +00:00
{% for entry in entries %}
2014-10-30 15:20:05 +00:00
<div id="entry- {{ entry .id | e }} " class="entrie">
2014-02-28 11:13:30 +00:00
<h2><a href="index.php?view=view&id= {{ entry .id | e }} "> {{ entry .title | raw }} </a></h2>
2014-07-10 11:17:04 +00:00
{% if entry .content | getReadingTime > 0 %}
2014-11-02 18:37:44 +00:00
<div class="estimatedTime"><span class="tool reading-time"> {% trans "estimated reading time :" %} {{ entry .content | getReadingTime }} min</span></div>
2014-02-28 11:13:30 +00:00
{% else %}
2014-11-02 18:37:44 +00:00
<div class="estimatedTime"><span class="tool reading-time"> {% trans "estimated reading time :" %} <small class="inferieur"><</small> 1 min</span></div>
2014-02-28 11:13:30 +00:00
{% endif %}
<ul class="tools links">
<li><a title=" {% trans "Toggle mark as read" %} " class="tool icon-check icon {% if entry .is_read == 0 %} archive-off {% else %} archive {% endif %} " href="./?action=toggle_archive&id= {{ entry .id | e }} "><span> {% trans "Toggle mark as read" %} </span></a></li>
<li><a title=" {% trans "toggle favorite" %} " class="tool icon-star icon {% if entry .is_fav == 0 %} fav-off {% else %} fav {% endif %} " href="./?action=toggle_fav&id= {{ entry .id | e }} "><span> {% trans "toggle favorite" %} </span></a></li>
<li><a title=" {% trans "delete" %} " class="tool delete icon-trash icon" href="./?action=delete&id= {{ entry .id | e }} "><span> {% trans "delete" %} </span></a></li>
2014-07-10 11:17:04 +00:00
<li><a href=" {{ entry .url | e }} " target="_blank" title=" {% trans "original" %} : {{ entry .title | e }} " class="tool link icon-link icon"><span> {{ entry .url | e | getDomain }} </span></a></li>
2014-02-28 11:13:30 +00:00
</ul>
<p> {{ entry .content | striptags | slice ( 0 , 3 0 0 ) }} ...</p>
</div>
2014-02-20 17:28:39 +00:00
2014-02-28 11:13:30 +00:00
{% endfor %}
</div>
2014-04-29 17:57:59 +00:00
{{ block ( 'pager' ) }}
2014-11-02 18:37:44 +00:00
{% if view == 'home' %} {% if nb_results > 1 %} <p><a title=" {% trans "Mark all the entries as read" %} " href="./?action=archive_all"> {% trans "Mark all the entries as read" %} </a></p> {% endif %} {% endif %}
2014-05-16 14:31:18 +00:00
2014-11-02 18:37:44 +00:00
{% if searchterm is defined %} <p><a title=" {% trans "Tag these results as" %} {{ searchterm }} " href="./?action=add_tag&search= {{ searchterm }} ">
{% trans "Tag these results as" %} {{ searchterm }} </p></a> {% endif %}
2014-04-25 14:20:25 +00:00
2014-11-02 18:37:44 +00:00
{% if tag %} <p><a title=" {% trans "Download the articles from this tag in an epub" %} " href="./?epub&method=tag&value= {{ tag .value }} "> {% trans "Download the articles from this tag in an epub" %} </p></a>
{% elseif search_term is defined %} <p><a title=" {% trans "Download the articles from this search in an epub" %} " href="./?epub&method=search&value= {{ search_term }} "> {% trans "Download the articles from this search in an epub" %} </p></a>
{% else %} <p><a title=" {% trans "Download the articles from this category in an epub" %} " href="./?epub&method=category&value= {{ view }} "> {% trans "Download the articles from this category in an epub" %} </a></p> {% endif %}
2014-04-25 14:20:25 +00:00
2014-02-28 11:13:30 +00:00
{% endif %}
2014-02-12 20:58:40 +00:00
{% endblock %}