mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-10-31 23:35:00 -04:00
21 lines
453 B
HTML
21 lines
453 B
HTML
---
|
|
layout: page
|
|
title: Blog Archive
|
|
footer: false
|
|
body_id: archive
|
|
---
|
|
|
|
<div id="blog-archives">
|
|
{% for post in site.posts reverse %}
|
|
{% 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 %}data-linklog{% endif %}>
|
|
{% include archive_post.html %}
|
|
</article>
|
|
{% endfor %}
|
|
</div>
|