mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-01 15:55:03 -04:00
20 lines
465 B
HTML
20 lines
465 B
HTML
---
|
|
layout: page
|
|
footer: false
|
|
body_id: archive
|
|
---
|
|
|
|
<div id="blog-archives" class="category">
|
|
{% for post in site.categories[page.category] %}
|
|
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
|
{% unless year == this_year %}
|
|
{% assign year = this_year %}
|
|
<h2>{{ year }}</h2>
|
|
{% endunless %}
|
|
{% include post/variables.html %}
|
|
<article {% if linklog %}class='linklog'{% endif %}>
|
|
{% include archive_post.html %}
|
|
</article>
|
|
{% endfor %}
|
|
</div>
|