On pages without the big profile header, a small top menu for easy nav: just the logo (drop shape) linking to home and the nav.
20 lines
434 B
Haskell
20 lines
434 B
Haskell
module Info
|
|
( author
|
|
, description
|
|
, bio
|
|
, mail
|
|
, root
|
|
) where
|
|
|
|
author, description, bio, mail, root :: 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"
|