mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-02 17:18:58 +00:00
19 lines
425 B
HTML
19 lines
425 B
HTML
---
|
|
layout: page
|
|
title: "Blog index"
|
|
---
|
|
|
|
<div id="archive-list">
|
|
{% assign reversedposts = site.posts | reverse %}
|
|
{% for post in reversedposts %}
|
|
{% capture this_year %}{{ post.date | date: "%Y" }}{% endcapture %}
|
|
{% unless year == this_year %}
|
|
{% assign year = this_year %}
|
|
<h2>{{ year }}</h2>
|
|
{% endunless %}
|
|
<article>
|
|
{% include blog/archive_post.html %}
|
|
</article>
|
|
{% endfor %}
|
|
</div>
|