Skip to content
Snippets Groups Projects
Unverified Commit 3467bd76 authored by Nik | Klampfradler's avatar Nik | Klampfradler
Browse files

Add date and authors to blog post cards

parent c7d03cae
No related branches found
No related tags found
No related merge requests found
...@@ -12,7 +12,13 @@ ...@@ -12,7 +12,13 @@
</figure> </figure>
</div> </div>
<div class="card-content"> <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"> <div class="content">
{{ post.summary | safe }} {{ post.summary | safe }}
</div> </div>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment