svejcar-dev

🌐 Source code of personal website based on Hakyll

Stars
2

svejcar.dev

This is the source code for my personal website https://svejcar.dev. It's built using Hakyll static site generator, Haskell-based alternative to Jekyll.

License

Blog source code (located in src/ directory) is licensed under the BSD-3-Clause license. The content of the blog (blog posts, images, etc., located in content/, assets/ and static/ directories) is licensed under the CC BY-ND 4.0.

How to build

1/ Download Haskell Stack

$ curl -sSL https://get.haskellstack.org/ | sh

2/ Init the build environment

$ git clone https://github.com/vaclavsvejcar/svejcar-dev.git
$ cd svejcar-dev/
$ stack init
$ stack build

3/ Preview draft version

$ stack run rebuild draft
$ stack run watch draft

Website should now run on https://localhost:8000

4/ Build production site

$ stack run rebuild

Generated content is located in _site/ directory.