mirror of
https://github.com/bspeice/speice.io
synced 2025-07-01 13:56:11 -04:00
Beautify html
This commit is contained in:
48
index.html
48
index.html
@ -2,32 +2,30 @@
|
||||
layout: page
|
||||
title: Home
|
||||
---
|
||||
|
||||
<section class="c-archives">
|
||||
{% for post in site.posts %}
|
||||
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
||||
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
|
||||
|
||||
{% if forloop.first %}
|
||||
<h2 class="c-archives__year" id="{{ this_year }}-ref">{{this_year}}</h2>
|
||||
<ul class="c-archives__list">
|
||||
{% for post in site.posts %}
|
||||
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
||||
{% capture next_year %}{{ post.previous.date | date: "%Y" }}{% endcapture %}
|
||||
{% if forloop.first %}
|
||||
<h2 class="c-archives__year" id="{{ this_year }}-ref">{{this_year}}</h2>
|
||||
<ul class="c-archives__list">
|
||||
{% endif %}
|
||||
<li class="c-archives__item">
|
||||
<h3>
|
||||
<a href="{{ post.url | prepend: site.baseurl }}">{{post.title}}</a>
|
||||
<br>
|
||||
<small>{{post.description}}</small>
|
||||
</h3>
|
||||
<p>{{ post.date | date: "%b %-d, %Y" }}</p>
|
||||
</li>
|
||||
<li class="c-archives__item">
|
||||
<h3>
|
||||
<a href="{{ post.url | prepend: site.baseurl }}">{{post.title}}</a>
|
||||
<br>
|
||||
<small>{{post.description}}</small>
|
||||
</h3>
|
||||
<p>{{ post.date | date: "%b %-d, %Y" }}</p>
|
||||
</li>
|
||||
{% if forloop.last %}
|
||||
</ul>
|
||||
{% else %}
|
||||
{% if this_year != next_year %}
|
||||
</ul>
|
||||
<h2 class="c-archives__year" id="{{ next_year }}-ref">{{next_year}}</h2>
|
||||
<ul class="c-archives__list">
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</ul>
|
||||
{% else %}
|
||||
{% if this_year != next_year %}
|
||||
</ul>
|
||||
<h2 class="c-archives__year" id="{{ next_year }}-ref">{{next_year}}</h2>
|
||||
<ul class="c-archives__list">
|
||||
{% endif %}
|
||||
{% endif %}
|
||||
{% endfor %}
|
||||
</section>
|
||||
|
Reference in New Issue
Block a user