fix: issue where games were not sorted correctly
This commit is contained in:
parent
0c5c4881bf
commit
32f9336113
|
|
@ -6,7 +6,7 @@
|
|||
title_picture_offset = "0px",
|
||||
title_color = "var(--color-primary)"
|
||||
) %}
|
||||
{% for game in glob("games/*.md") | reverse | map('markdown') %}
|
||||
{% for game in glob("games/*.md") | sort(reverse=true, attribute='path') | map('markdown') %}
|
||||
<div class="game">
|
||||
<div class="game--picture-wrapper">
|
||||
<img
|
||||
|
|
|
|||
Loading…
Reference in New Issue