mirror of
https://github.com/moparisthebest/android.moparisthebest.org
synced 2024-11-15 13:45:00 -05:00
5d1d04c52c
2. Added a page layout and improved html on post layout. 3. Improved flexibility of stylesheets for different layout types. 4. Collapsing sidebar now moves it to the bottom of the page and floats content into columns. 5. Improved sharing settings, added Google plus one.
19 lines
364 B
HTML
19 lines
364 B
HTML
---
|
|
layout: page
|
|
title: Blog Archive
|
|
no_footer: true
|
|
---
|
|
|
|
<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 %}
|
|
<article>
|
|
{% include archive_post.html %}
|
|
</article>
|
|
{% endfor %}
|
|
</div>
|