2022-09-21 18:02:50 +02:00
|
|
|
# My new attempt at a personal site
|
|
|
|
|
2022-09-23 17:03:34 +02:00
|
|
|
A personal CMS written in Haskell. The most prominent libraries used are
|
2022-09-21 18:02:50 +02:00
|
|
|
|
2023-06-07 20:03:32 +02:00
|
|
|
* [Hakyll](https://hackage.haskell.org/package/hakyll), a static site compiler,
|
|
|
|
* [Blaze](https://hackage.haskell.org/package/blaze-html) to generate html,
|
2022-09-23 17:03:34 +02:00
|
|
|
* [Clay](https://hackage.haskell.org/package/clay) to preprocess css
|
2022-09-21 18:02:50 +02:00
|
|
|
|
|
|
|
## Building
|
|
|
|
|
|
|
|
Build using `stack`:
|
|
|
|
```
|
|
|
|
stack build
|
|
|
|
```
|
|
|
|
and then to compile the actual site:
|
|
|
|
```
|
|
|
|
stack run build
|
|
|
|
```
|
|
|
|
|