{% extends "styled.html" %} {% block style %} {{super()}} h1 { margin-bottom: 10px; } .url a { color: #444; } th { text-align: left; } .qmarks .name { padding-left: 5px; } .empty-msg { background-color: #f8f8f8; color: #444; display: inline-block; text-align: center; width: 100%; } {% endblock %} {% block content %}

Quickmarks

{% if quickmarks|length %} {% for name, url in quickmarks %} {% endfor %}
{{name}} {{url}}
{% else %} You have no quickmarks {% endif %}

Bookmarks

{% if bookmarks|length %} {% for url, title in bookmarks %} {% endfor %}
{{title | default(url, true)}} {{url}}
{% else %} You have no bookmarks {% endif %} {% endblock %}