#!/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.01

=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; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.

=cut

