bliper

static html page generation in perl
git clone git://git.2f30.org/bliper
Log | Files | Refs | README | LICENSE

commit c6e66f3cfa63a53d6e1a79c81243cfe249ab7d21
parent a60256dc42636075c57c37afec0f9b133761958a
Author: cipher <haris@2f30.org>
Date:   Wed, 27 Nov 2013 15:39:47 +0200

append new articles on top

Diffstat:
Mbin/bliper-generate.pl | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/bin/bliper-generate.pl b/bin/bliper-generate.pl @@ -56,6 +56,7 @@ chdir($indir) or die "Can't change path to $indir $!\n"; print "Entering " . getcwd . "\n\n"; my @files = <*>; +@files = reverse @files; foreach my $file (@files) { # Read each file(post) from indir, cat to $outdir/$file.html print "Processing file: "; printf ("%-30s", $file);