Static website generator
StaticVolt is a static website generator supporting Template Toolkit 2
(TT2) layouts and both Markdown and Textile content.
Create a source and a layout directory:
mkdir -p docs/{_source,_layouts}
Create a simple layout in _layouts/main.html:
<!DOCTYPE html>
<html>
<head>
<title></title>
</head>
<body>
[% content %]
</body>
</html>
---
layout: main.html
drink : water
---
Drink **plenty** of [% drink %].
Run the staticvolt tool to generate a _site directory
containing the processed web-site.
Run perldoc StaticVolt
for more (or read the docs here).
This software is Copyright (c) 2011 by Alan Haggai Alavi.
This is free software, licensed under:
The Artistic License 2.0 (GPL Compatible)