Skip to content

Commit

Permalink
💄 Add template to list authors (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanhercaz committed Dec 7, 2019
1 parent 548bac2 commit 6f18a7f
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions templates/authors.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
{% extends "base.html" %}

{% block title %}
{% trans %}Authors{% endtrans %}- {{ super() }}
{% endblock title %}

{% block content %}
<h1 class="title">{% trans %}Authors{% endtrans %}</h1>

<div class="columns is-multiline is-centered">
<div class="tags are-large has-text-white">
{% for author in authors|sort %}
<div class="column has-text-centered">
<p><span class="tag is-success"><a href="{{ author[0].url }}">{{ author[0] }}</a></p>
</div>
{% endfor %}
</div>
</div>
{% endblock content %}

0 comments on commit 6f18a7f

Please sign in to comment.