The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/env perl

# PODNAME:  staticvolt
# ABSTRACT: Static website generator

use strict;
use warnings;

use StaticVolt;

my $staticvolt = StaticVolt->new(
    'includes'    => '_includes',
    'layouts'     => '_layouts',
    'source'      => '_source',
    'destination' => '_site',
);
$staticvolt->compile;

__END__
=pod

=head1 NAME

staticvolt - Static website generator

=head1 VERSION

version 0.03

=head1 AUTHOR

Alan Haggai Alavi <alanhaggai@alanhaggai.org>

=head1 COPYRIGHT AND LICENSE

This software is Copyright (c) 2011 by Alan Haggai Alavi.

This is free software, licensed under:

  The Artistic License 2.0 (GPL Compatible)

=cut