{% extends "base.html" %} {% block title %}Bookmarks{% endblock %} {% block pageheader %}Bookmarks{% endblock %} {% block pagecontent %} {% if tags %}
{% for tag in tags %}
{{ tag }}
{% endfor %}
{% endif %}
{% for bookmark in bookmarks %}
{#

{{ bookmark.url|urlize(25) }}

{{ bookmark.created_date.strftime("%m/%d/%Y %H:%M") }}

#}
{% endfor %} {# #}
{% endblock %}