mirror of
https://github.com/home-assistant/home-assistant.io.git
synced 2025-04-23 21:07:36 +00:00

Co-authored-by: c0ffeeca7 <38767475+c0ffeeca7@users.noreply.github.com> Co-authored-by: Franck Nijhof <git@frenck.dev>
27 lines
560 B
HTML
27 lines
560 B
HTML
---
|
|
layout: default
|
|
regenerate: true
|
|
blog_index: true
|
|
feedback: false
|
|
---
|
|
|
|
{% assign index = true %}
|
|
<h1 class="title indent">Blog</h1>
|
|
|
|
{% for post in paginator.posts %}
|
|
<article class="listing">
|
|
{% include blog/post/article.html %}
|
|
</article>
|
|
<hr>
|
|
{% endfor %}
|
|
|
|
<div class="pagination">
|
|
{% if paginator.next_page %}
|
|
<a class="btn pull-left" href="{{paginator.next_page_path}}">← Older</a>
|
|
{% endif %}
|
|
|
|
{% if paginator.previous_page %}
|
|
<a class="btn pull-right" href="{{paginator.previous_page_path}}">Newer →</a>
|
|
{% endif %}
|
|
</div>
|