{% include 'header.html' %}
{% if error or request.args.get('error') or message %}
{% if error %}
{{ _(error) }}
{% endif %} {% if request.args.get('error') %}
{{ _(request.args.get('error')) }}
{% endif %} {% if message %}
{{ _(message) }}
{% endif %}
{% endif %}

{% if g.mode == "single" %}{{ _('your_blog') }}{% else %}{{ _('your_blogs') }}{% endif %}

{% if g.mode == "multi" %}

{{ blogs | count }}/{{ g.blog_limit }}

{% endif %}
{% for blog in blogs %} {% endfor %}

{{ _('settings') }}

{% if g.mode == "multi" and blogs | count < g.blog_limit | int %} {{ _('create_new_blog') }} {% endif %} {{ _('change_password') }} {{ _('migrate_posts') }}
{% include 'footer.html' %}