fix: issue where games were not sorted correctly

This commit is contained in:
Adrien Allard 2025-11-07 16:26:10 +01:00
parent 0c5c4881bf
commit 32f9336113
1 changed files with 1 additions and 1 deletions

View File

@ -6,7 +6,7 @@
title_picture_offset = "0px", title_picture_offset = "0px",
title_color = "var(--color-primary)" 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">
<div class="game--picture-wrapper"> <div class="game--picture-wrapper">
<img <img