{% include 'header.html' %} {% if error %}
{{ error }}
{% endif %} {% if message %}
{{ message }}
{% 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 %}
{% if g.mode == "multi" %}

{{ blog.name }}

{% endif %} {{ _('title') }}: {{ blog.title }} URL: {% if g.mode == "multi" %} {% if blog.access == "path" %}https://{{ g.main_domain }}/b/{{ blog.name }} {% else %}https://{{ blog.name }}.{{ g.main_domain }}/{% endif %} {% else %} {{ g.main_domain }} {% endif %}
{{ _('edit') }} {{ _('new_post') }} {{ _('statistics') }} {% if g.mode == "multi" %} {{_('delete_blog') }} {% endif %}
{% endfor %}

{{ _('settings') }}

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