mirror of
https://github.com/arcan1s/arcanis.me.git
synced 2025-04-24 15:27:17 +00:00
37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
---
|
|
layout: default
|
|
title: Archive
|
|
comment: false
|
|
share: false
|
|
back: 2
|
|
---
|
|
<body>
|
|
<div class="wrapper">
|
|
<header>
|
|
<h1>{{ page.title }}</h1>
|
|
</header>
|
|
<section>
|
|
|
|
{% for post in site.categories.en limit:1 %}
|
|
{% assign month = post.date | date: "%B, %Y" %}
|
|
{% endfor %}
|
|
<label class="spoiler">
|
|
<input type="checkbox" class="bo"/>
|
|
<div class="title">{{ month }}</div>
|
|
<div class="body">
|
|
{% for post in site.categories.en %}
|
|
{% assign new_month = post.date | date: "%B, %Y" %}
|
|
{% if new_month != month %}
|
|
</div>
|
|
</label>
|
|
<label class="spoiler">
|
|
<input type="checkbox" class="bo"/>
|
|
<div class="title">{{ new_month }}</div>
|
|
<div class="body">
|
|
{% endif %}
|
|
{% assign month = post.date | date: "%B, %Y" %}
|
|
<i>{{ post.date | date_to_string }}</i> » <a name="{{ post.short }}" class="anchor" href="#{{ post.short }}"><span class="octicon octicon-link"></span></a><a href="{{ post.url }}">{{ post.title }}</a> ({{ post.tags }})<br>
|
|
{% endfor %}
|
|
</div>
|
|
</label>
|