Minnor fix to filter out blog posts items that don't begin with a date (maybe this will break some 'legacy' posts?)

This commit is contained in:
uriel 2008-08-28 23:33:53 +02:00
parent 5cebebd10a
commit 3284ff4552

View File

@ -98,7 +98,7 @@ fn gensidebar {
fn sortedBlogPostList {
# the /./ is added so we can sort -t. and order only the file name
if (! ~ $#* 0)
ls $*^'/./' | grep '[0-9]+.*\.md$'| sort -r -t. +1
ls $*^'/./' | grep '/[0-9]+.*\.md$'| sort -r -t. +1
}
fn blogTitle {