summaryrefslogtreecommitdiff
path: root/_includes/all-posts.liquid
diff options
context:
space:
mode:
Diffstat (limited to '_includes/all-posts.liquid')
-rw-r--r--_includes/all-posts.liquid5
1 files changed, 3 insertions, 2 deletions
diff --git a/_includes/all-posts.liquid b/_includes/all-posts.liquid
index f8377b1..ef05295 100644
--- a/_includes/all-posts.liquid
+++ b/_includes/all-posts.liquid
@@ -4,9 +4,10 @@
</p>
<ul class="menu-list">
- {% for post in collections.posts.pages %}
+ {% assign posts = collections.posts.pages | reverse %}
+ {% for post in posts %}
<li>
- <a href="{{ post.permalink }}">
+ <a href="/{{ post.permalink }}">
{% if post.published_date %}
<span class="tag">
{{ post.published_date | date: "%e %b %Y" }}