mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-05-04 10:08:57 +00:00
13 lines
409 B
HTML
13 lines
409 B
HTML
<section id="recent-posts" class="aside-module grid__item one-whole lap-one-half">
|
|
<h1 class="title delta">Recent Posts</h1>
|
|
<ul class="divided">
|
|
{% for post in site.posts limit: site.recent_posts %}
|
|
{% if post.url != page.url %}
|
|
<li class="post">
|
|
<a href="{{ root_url }}{{ post.url }}">{{ post.title }}</a>
|
|
</li>
|
|
{% endif %}
|
|
{% endfor %}
|
|
</ul>
|
|
</section>
|