Sort posts in list

This commit is contained in:
Maciej Ziaja 2020-02-23 14:34:40 +01:00
parent 056e2fcce9
commit de3cd9ddd7
1 changed files with 1 additions and 1 deletions

2
ssb
View File

@ -215,7 +215,7 @@ function append_posts_list
post_link="$date [$post_title]($file_base.html) <br>"
posts_list="$posts_list $post_link"
done
echo $posts_list
echo "$posts_list" | sort -r
}