{% extends "base" %} {% import "macros" as macros %} {% block title %} {{ "Dashboard" | _ }} {% endblock title %} {% block content %}

{{ "Your Dashboard" | _ }}

{{ "Your Blogs" | _ }}

{% if blogs | length < 1 %}

{{ "You don't have any blog yet. Create your own, or ask to join one." | _ }}

{% endif %} {{ "Start a new blog" | _ }}
{% for blog in blogs %} {% endfor %}
{% endblock content %}