Skip to content

Commit

Permalink
fixed reversed blog listing
Browse files Browse the repository at this point in the history
  • Loading branch information
ReduxFlakes committed Aug 8, 2024
1 parent 58fc1e3 commit 135bf7e
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/pages/blog/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,8 @@ description: My blog of ramblings, programming, privacy, and lifestyle.
permalink: "/posts/"
---

This blog contains <b><a href="/posts/tags/">tags</a></b> for easier search of information.

<ul>
{%- for post in collections.blog | reverse -%}
{%- for post in collections.blog -%}
<li>
<a href="{{post.url}}">{{post.data.title}}</a> | <time datetime="{{post.date}}">{{post.date | formatPostDate }}</time>
<p>{{post.data.description}}</p>
Expand Down

0 comments on commit 135bf7e

Please sign in to comment.