2014-01-08 10:57:21 +01:00
{% extends layout %}
2014-01-13 22:30:19 +01:00
{% block title %} {{ entry .title }} {% endblock %}
2014-01-08 10:57:21 +01:00
{% block content %}
{% if entry is empty %}
<div class="messages warning"><p> {{ 'No link available here!' | trans }} </p></div>
{% else %}
2014-01-09 15:26:53 +01:00
<h2> {{ entry .title }} </h2>
2014-01-13 22:30:19 +01:00
<ul class="entry_options">
2014-01-09 22:09:39 +01:00
<li> {% if entry .status == "read" %} <a href=" {{ path ( 'mark_entry_unread' , { 'id' : entry .id } ) }} "> {{ 'mark as unread' | trans }} </a> {% else %} <a href=" {{ path ( 'mark_entry_read' , { 'id' : entry .id } ) }} "> {{ 'mark as read' | trans }} </a> {% endif %} </li>
2014-01-13 22:30:19 +01:00
<li><a href="#"> {% if entry .bookmark == 1 %} <a href=" {{ path ( 'unstar_entry' , { 'id' : entry .id } ) }} "> {{ 'unstar' | trans }} </a> {% else %} <a href=" {{ path ( 'star_entry' , { 'id' : entry .id } ) }} "> {{ 'star' | trans }} </a> {% endif %} </a></li>
2014-01-09 15:26:53 +01:00
<li><a href="#"> {{ 'delete' | trans }} </a></li>
<li><a href=" {{ entry .url }} "> {{ 'view original' | trans }} </a></li>
</ul>
2014-01-08 10:57:21 +01:00
2014-01-09 20:30:59 +01:00
<article> {{ entry .content | raw }} </article>
2014-01-08 10:57:21 +01:00
{% endif %}
{% endblock %}