Building Static Sites with Perl
Perl might not be the first language you think of for modern web development, but its text processing capabilities make it ideal for static site generation.
The Stack
We use Mojolicious for the admin backend, Template::Toolkit for rendering, and SQLite for content storage. The result is fast, secure, and portable.
my \$tt = Template->new({ INCLUDE_PATH => \$tpl_dir });\n\$tt->process(\x27page.tt\x27, \$vars, \$output);Simple. Effective. Built to last.