This commit is contained in:
Bat 2018-08-18 12:49:06 +02:00
parent 7fc5d7b5b0
commit ddcb49ce28

View file

@ -13,13 +13,13 @@
{% if blogs | length < 1 %} {% if blogs | length < 1 %}
<p>{{ "You don't have any blog yet. Create your own, or ask to join one." | _ }}</p> <p>{{ "You don't have any blog yet. Create your own, or ask to join one." | _ }}</p>
{% endif %} {% endif %}
<a class="button" href="/blogs/new">{{ "Start a new blog" | _ }}</a> <div class="cards">
<div class="list">
{% for blog in blogs %} {% for blog in blogs %}
<div class="card"> <div class="card">
<h3><a href="/~/{{ blog.actor_id }}/">{{ blog.title }}</a></h3> <h3><a href="/~/{{ blog.actor_id }}/">{{ blog.title }}</a></h3>
</div> </div>
{% endfor %} {% endfor %}
</div> </div>
<a class="button" href="/blogs/new">{{ "Start a new blog" | _ }}</a>
</section> </section>
{% endblock content %} {% endblock content %}