summaryrefslogtreecommitdiff
path: root/_includes/index.liquid
diff options
context:
space:
mode:
authorHombreLaser <buran@silosneeded.com>2024-07-13 14:05:07 -0600
committerHombreLaser <buran@silosneeded.com>2024-07-13 14:05:07 -0600
commit4039b9bfe2de55b75a550467eac0ca27c485afdd (patch)
treec0b8a7a6347c631103aafe674d4549d0cbc7de95 /_includes/index.liquid
parent881f4e0a9f75df2eb230ced95a3823008100f777 (diff)
Improve archive and categories page layouts
Diffstat (limited to '_includes/index.liquid')
-rw-r--r--_includes/index.liquid26
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 %}
+