feat: Enhances post metadata display
All checks were successful
Build and Deploy Static Site / build (push) Successful in 2m21s

Adds author name to post displayed under title on blog index to improve user information adequacy and presentation.
This commit is contained in:
Kumi 2024-11-27 16:23:04 +01:00
parent 627ac40b92
commit 94c75165d5
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -19,7 +19,7 @@
<h2> <h2>
<a href="{{ relative_path }}blog/{{ post.slug }}/index.html">{{ post.title }}</a> <a href="{{ relative_path }}blog/{{ post.slug }}/index.html">{{ post.title }}</a>
</h2> </h2>
<small class="text-muted">{{ post.date }}</small> <small class="text-muted">by {{ post.author }}, published {{ post.date }}</small>
<p> <p>
{{ post.excerpt }} <a href="{{ relative_path }}blog/{{ post.slug }}/index.html">[read more]</a> {{ post.excerpt }} <a href="{{ relative_path }}blog/{{ post.slug }}/index.html">[read more]</a>
</p> </p>