diff options
Diffstat (limited to '_includes/index.liquid')
-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 %} + |