stakx is a static website generator built in PHP inspired by Jekyll and Sculpin. Unlike its alternatives, stakx is distributed as a single executable so you don't need to worry about silly bundle install
or composer install
commands to build your website.
stakx's philosophy is to be treated as a model-view-controller (MVC) setup where stakx itself is the controller, Twig makes up the views, and your content makes up the models. Following this philosophy will allow you to have truly reusable content making migration to and from stakx a breeze.
stakx provides a sample project for people to learn from. The sample project can be built in one of two ways.
Get the latest PHAR from the Releases page, download the repository, put the PHAR in the example
directory and run the following command from within the example
directory:
php ./stakx.phar build
Clone the repository, fetch the dependencies, and compile.
git clone https://github.com/stakx-io/stakx.git
composer install --no-dev
cd example/
php ../bin/stakx build