mirror of
https://github.com/moparisthebest/wallabag
synced 2024-11-12 20:35:16 -05:00
72 lines
3.3 KiB
Twig
Executable File
72 lines
3.3 KiB
Twig
Executable File
{% extends "layout.twig" %}
|
|
{% block title %}
|
|
{% if view == 'fav' %}
|
|
{% trans "favoris" %}
|
|
{% elseif view == 'archive' %}
|
|
{% trans "archive" %}
|
|
{% else %}
|
|
{% trans "unread" %}
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% block menu %}
|
|
{% include '_menu.twig' %}
|
|
{% endblock %}
|
|
{% block precontent %}
|
|
<div id="search-form" class="messages info">
|
|
<form method="post" action="index.php?view=search">
|
|
<p>
|
|
<label>{% trans "Search" %}</label> : <input type="text" placeholder="{% trans "Enter your search here" %}" name="search" />
|
|
<input type="submit" value="{% trans "Search" %} !"></input>
|
|
</p>
|
|
</form>
|
|
</div>
|
|
<script type="text/javascript">
|
|
$(document).ready(function() {
|
|
|
|
$("#search-form").hide();
|
|
|
|
$("#search").click(function(){
|
|
$("#search-form").toggle();
|
|
$("#search").toggleClass("current");
|
|
$("#search-arrow").toggleClass("arrow-down");
|
|
});
|
|
|
|
|
|
});
|
|
</script>
|
|
{% include '_sorting.twig' %}
|
|
{% endblock %}
|
|
{% block content %}
|
|
{% 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 %}
|
|
{% block pager %}
|
|
{% if nb_results > 1 %}
|
|
<div class="results">
|
|
<div class="nb-results">{{ nb_results }} {% trans "results" %}</div>
|
|
{{ page_links | raw }}
|
|
</div>
|
|
{% endif %}
|
|
{% endblock %}
|
|
{% for entry in entries %}
|
|
<div id="entry-{{ entry.id|e }}" class="entrie">
|
|
<h2><a href="index.php?view=view&id={{ entry.id|e }}">{{ entry.title|raw }}</a></h2>
|
|
<ul class="tools">
|
|
<li><a title="{% trans "Toggle mark as read" %}" class="tool {% 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 {% 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" href="./?action=delete&id={{ entry.id|e }}"><span>{% trans "delete" %}</span></a></li>
|
|
<li><a href="{{ entry.url|e }}" target="_blank" title="{% trans "original" %} : {{ entry.title|e }}" class="tool link"><span>{{ entry.url | e | getDomain }}</span></a></li>
|
|
<li><a target="_blank" title="{% trans "estimated reading time:" %} {{ entry.content| getReadingTime }} min" class="reading-time"><span>{{ entry.content| getReadingTime }} min</span></a></li>
|
|
</ul>
|
|
<p>{{ entry.content|striptags|slice(0, 300) }}...</p>
|
|
</div>
|
|
{% endfor %}
|
|
{% endif %}
|
|
{{ block('pager') }}
|
|
{% if view == 'home' %}{% if nb_results > 1 %}<a title="{% trans "mark all the entries as read" %}" href="./?action=archive_all">{% trans "mark all the entries as read" %}</a>{% endif %}{% endif %}
|
|
{% endblock %}
|