Adjust item excerpts

This commit is contained in:
2021-05-04 13:38:58 +02:00
parent 190e3c87f9
commit a3faccbaeb
4 changed files with 21 additions and 2 deletions

View File

@@ -10,14 +10,21 @@ comments: false
<h1>My mods</h1>
<div>
{%- for mod in site.mods -%}
<article class="post-item">
<h3 class="post-item-title">
<a href="{{ mod.url }}">{{ mod.name }}</a>
<a href="{{ mod.url }}">
{{ mod.name }}
</a>
</h3>
<div class="post-item-excerpt">
{{ mod.excerpt }}
</div>
</article>
{%- else -%}
<div style="text-align:center">
No mods to see here yet.
</div>
{%- endfor -%}
</div>