{% if theme() and file_exists('app/templates/themes/' + theme() + '/base.html') %} {% extends 'themes/' + theme() + '/base.html' %} {% else %} {% extends "base.html" %} {% endif %} {% set active_child = 'bookmarks' %} {% block app_content %}

{{ _('Bookmarks') }}

{% include 'user/_bookmarks_nav.html' %}
{% for post in posts.items -%} {% include 'post/_post_teaser.html' %} {% else -%}

{{ _('No posts have been bookmarked. Use the three dots on each post to find the bookmark function.') }}

{% endfor -%}
{% endblock %}