diff options
author | HombreLaser <buran@silosneeded.com> | 2024-07-13 14:05:07 -0600 |
---|---|---|
committer | HombreLaser <buran@silosneeded.com> | 2024-07-13 14:05:07 -0600 |
commit | 4039b9bfe2de55b75a550467eac0ca27c485afdd (patch) | |
tree | c0b8a7a6347c631103aafe674d4549d0cbc7de95 /_includes | |
parent | 881f4e0a9f75df2eb230ced95a3823008100f777 (diff) |
Improve archive and categories page layouts
Diffstat (limited to '_includes')
-rw-r--r-- | _includes/index.liquid | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/_includes/index.liquid b/_includes/index.liquid index fe7567f..1fa5954 100644 --- a/_includes/index.liquid +++ b/_includes/index.liquid @@ -1,19 +1,19 @@ <div class="column"> {% for post in paginator.posts %} - - <h1> - <a href="{{ site.baseurl }}{{post.url }}"> - {{ post.title }} - </a> - </h1> - <h2> - {% capture month%}{{ post.date | date: "%b" }}{% endcapture %} - {{ site.data[site.active_lang].strings.date[month]}} {{ post.date | date: "%e, %Y" }} - </h2> - <span> - {{ post.excerpt }} - </span> + <div class="columns"> + <div class="column date is-one-third"> + {% capture month%}{{ post.date | date: "%b" }}{% endcapture %} + {{ site.data[site.active_lang].strings.date[month]}} {{ post.date | date: "%e, %Y" }} + </div> + <div class="column"> + <a class="index-content" href="{{ site.baseurl }}{{post.url }}"> + {{ post.title }} + </a> + {{ post.excerpt }} + </div> + </div> {% endfor %} </div> {% include pagination.liquid %} + |