minor styling

This commit is contained in:
Anton Livaja 2025-04-01 22:18:09 -07:00
parent ed0df677e5
commit 386e206922
Signed by: anton
GPG Key ID: 44A86CFF1FDF0E85
2 changed files with 6 additions and 1 deletions

View File

@ -15,7 +15,7 @@
<a class="blog-link" href="{{ post.url | relative_url }}" title="{{ post.title }}">
<article>
<h1>{{ post.title }}</h1>
<p>{{ post.excerpt | strip_html | truncatewords: 35 }}</p>
<p>{{ post.excerpt | strip_html | truncatewords: 25 }}</p>
</article>
<div class="arrow-link">
Read

View File

@ -6,7 +6,12 @@
<div class="container">
<main class="blog">
<article class="post">
<div class="blog-details">
<div class="blog-details-date">{{ page.date | date: "%b %e, %Y" }}</div>
<div class="blog-details-read-time">{{ page.content | number_of_words | divided_by: 200 }} min read</div>
</div>
<h1>{{page.title}}</h1>
<div class="entry">
{{ content }}
</div>