1
0
mirror of https://github.com/moparisthebest/wallabag synced 2024-11-15 13:45:04 -05:00

[add] tools for an entry on view page

This commit is contained in:
Nicolas Lœuillet 2014-01-09 15:26:53 +01:00
parent 297dba6d90
commit a91ae988ca

View File

@ -5,8 +5,13 @@
{% if entry is empty %}
<div class="messages warning"><p>{{ 'No link available here!'|trans }}</p></div>
{% else %}
<h1>{{ entry.title }}</h1>
<div><a href="{{ entry.url }}">{{ 'view original'|trans }}</a></div>
<h2>{{ entry.title }}</h2>
<ul>
<li><a href="#">{{ 'mark as read'|trans }}</a></li>
<li><a href="#">{{ 'star'|trans }}</a></li>
<li><a href="#">{{ 'delete'|trans }}</a></li>
<li><a href="{{ entry.url }}">{{ 'view original'|trans }}</a></li>
</ul>
<article>{{ entry.content|striptags }}</article>