{% extends "base.html" %} {% block content %}

{{ item.title or "Untitled" }}

{% if item.url %} {{ item.url }} {% endif %} {{ item.added_at|format_est }}
{% include "tags.html" with context %} {% if tags_all %}
Quick add tag:
{% for t in tags_all %} {% set name = t.name if t.name is defined else t['name'] %} {% endfor %}
{% endif %}
{% if item.content_html %} {{ item.content_html|safe }} {% else %}
{{ item.content_text }}
{% endif %}
{% endblock %}