_list_blogs: Reverse the dates from newest to oldest

This commit is contained in:
Stig-Ørjan Smelror 2024-02-01 09:58:58 +01:00
parent 3aee06dc34
commit 807af72a8f

2
qsgen2
View File

@ -184,7 +184,7 @@ function _list_blogs() {
return
fi
for file in blog/*.blog; do
for file in $( ls -har blog/*.blog ); do
blogs_file_array+=("$file")
done
}