Skip to content

Commit

Permalink
fix(examples): remove post links from paginated archive example
Browse files Browse the repository at this point in the history
  • Loading branch information
nunof07 committed Apr 28, 2021
1 parent 5809e83 commit 9f84066
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions examples/paginated-archive/posts.njk
Original file line number Diff line number Diff line change
Expand Up @@ -8,11 +8,7 @@ permalink: "posts/{% if pagination.pageNumber > 0 %}/{{ pagination.pageNumber +

<ul>
{%- for post in postsPage -%}
<li>
<h2>
<a href="{{ post.url }}">{{ post.name }}</a>
</h2>
</li>
<li>{{ post.name }}</li>
{%- endfor -%}
</ul>

Expand Down

0 comments on commit 9f84066

Please sign in to comment.