diff --git a/templates/frontpage/blocks/blog.html b/templates/frontpage/blocks/blog.html index 395d02fa78da3e60601aed8bb8fb84c1b3d13abf..37abf0e105d1d72ecbcc6b06da1420148bc19620 100644 --- a/templates/frontpage/blocks/blog.html +++ b/templates/frontpage/blocks/blog.html @@ -12,7 +12,13 @@ </figure> </div> <div class="card-content"> - <a href="{{ post.permalink }}"><h3 class="title is-3">{{ post.title }}</h3></a> + <a href="{{ post.permalink }}"><h3 class="title is-3">{{ post.title }}</h3></a> + <p class="subtitle"> + {{ post.date }} · + {% for author in post.authors %} + {{ author }} + {% endfor %} + </p> <div class="content"> {{ post.summary | safe }} </div>