Plume/templates/users/dashboard.tera
2018-06-17 16:26:15 +01:00

26 lines
757 B
Plaintext

{% extends "base" %}
{% import "macros" as macros %}
{% block title %}
{{ "Dashboard" | _ }}
{% endblock title %}
{% block content %}
<h1>{{ "Your Dashboard" | _ }}</h1>
<section>
<h2>{{ "Your Blogs" | _ }}</h2>
{% if blogs | length < 1 %}
<p>{{ "You don't have any blog yet. Create your own, or ask to join one." | _ }}</p>
{% endif %}
<a class="button inline-block" href="/blogs/new">{{ "Start a new blog" | _ }}</a>
<div class="list">
{% for blog in blogs %}
<div class="card">
<h3><a href="/~/{{ blog.actor_id }}/">{{ blog.title }}</a></h3>
</div>
{% endfor %}
</div>
</section>
{% endblock content %}