Generation is done and the end of app.hs. Care should be taken when adding pages: they must be declared in the sitemap's context.
20 lines
428 B
Haskell
20 lines
428 B
Haskell
module Info
|
|
( author
|
|
, description
|
|
, bio
|
|
, mail
|
|
, root
|
|
) where
|
|
|
|
author, description, bio, mail :: String
|
|
|
|
author = "Etienne Werly"
|
|
|
|
description = "My personal website"
|
|
|
|
bio =
|
|
"Self taught in computer science, using Linux since 2013 and self hosting since 2020, I am taking a new turn to web development after a start as a mathematics teacher."
|
|
|
|
mail = "etienne@moqueur.chat"
|
|
|
|
root = "https://etienne.moqueur.chat"
|