What is it?

It's a repository template for GitLab Pages (a GitLab feature which allows hosting static websites from a repository). It provides the required layout, and configuration files, so you can skip directly to building your website.

How do I use it?

To set up your website:

git config --global user.name $username
git config --global user.email $email_address
(Reminder: Your email address will be public.)
git clone $repository_url
git add .
git commit -m $comment
git push origin master
(You'll be prompted for your GitLab login details.)

To update your website:

git add .
git commit -m $comment
git push origin master

To delete your website:

Where can I learn more?

To learn more: