A couple of years ago I created several websites with Microsoft's tool Expression Web. I loved Expression Web because it had a decent HTML/CSS editor and a cool feature called DWT - Dynamic Web Templates (similar to those in Adobe's Dreamweaver). Unfortunately Expression Web only runs on Windows. dwttool is a command line tool that tries to fill this gap. With dwttool you can create new projects based on DWT and manage existing ones on Linux. dwttool is written in the D programming language.
The latest binaries are available on https://github.com/kambrium/dwttool/releases.
Add the directory that contains the dwttool binary to your PATH. For example, on Ubuntu, add the following line to your .bashrc
.
export PATH=$PATH:/this/is/your/dwttool/path/
// Create new project
$ dwttool create project my_cool_website
$ cd my_cool_website
// Edit template
$ vim master.dwt
// Create new HTML file from template
$ dwttool create page index.html master.dwt
// Run server
$ dwttool serve
MIT