{% block head %}
{% block meta %}
{% endblock %}
{% block title %} {% endblock %}
{% block styles %}
{% endblock %} {% endblock %} {% block body %}
{% if error %}
{{ error }}
{% endif %} {% set navigation = [ ( '/', 'home', 'eye', 'Home' ), ( '/inbox', 'inbox', 'bars', 'Inbox' ), ( '/inbox/new', 'new', 'mail', 'New' ), ( '/inbox/profile', 'profile', 'info', 'Profile' ), ( '/inbox/peers', 'peers', 'user', 'Peers' ), ( '/plugins', 'plugins', 'grid', 'Plugins' ), ] %} {% set active_page = active_page|default('inbox') %}
{% for href, id, icon, caption in navigation %}
{{ caption }}
{% endfor %}
{% block content %} {% endblock %}
{% block scripts %} {% endblock %} {% endblock %}