Skip to content

Commit

Permalink
Add fallback post index until paginator figured
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisglein committed Dec 29, 2023
1 parent 2a191d2 commit b1396a4
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions posts.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,14 @@ description: Blog posts
layout: page
---

<ul>
{% for post in site.posts %}
<li>
<a href="{{ post.url }}">{{ post.title }}</a>
</li>
{% endfor %}
</ul>

<div class="posts">
{% for post in paginator.posts %}
<div class="post">
Expand Down

0 comments on commit b1396a4

Please sign in to comment.