Split the 'About Me' page, and explicit a few things about the website.

This commit is contained in:
Feufochmar 2021-11-05 20:27:53 +01:00
parent a96dfd4eb5
commit 8ffbea276a
2 changed files with 24 additions and 3 deletions

View File

@ -25,6 +25,7 @@
(website
"" weblet pages:home
("AboutMe" weblet pages:about-me)
("AboutFeuforeve" weblet pages:about-feuforeve)
("Fonts" weblet pages:fonts)
; ToyCatCreator used to be hosted here before moving on its own page
("ToyCatCreator" redirection "http://beleth.pink")
@ -105,6 +106,7 @@
(sitemap
("Home" "/" #f
("About Me" "/AboutMe" #f)
("About this Website" "/AboutFeuforeve" #f)
("Fonts I made" "/Fonts" #f))
("Floraverse" "/Floraverse" #f
("Character Generator" "/Floraverse/CharacterGenerator" #t)

View File

@ -8,6 +8,7 @@
pages:not-found
pages:home
pages:about-me
pages:about-feuforeve
pages:fonts)
; Not found page
@ -44,7 +45,7 @@
(pages:template
#:title "About: Feufochmar"
#:author "Feufochmar"
#:date "2019-11-07"
#:date "2021-11-05"
#:content
'(article
(h2 "Myself")
@ -52,15 +53,33 @@
(p "You can also find me on "
(a ((href "http://feufochmar.deviantart.com/")) "deviantArt") ", "
(a ((href "https://twitter.com/Feufochmar")) "Twitter") ", "
(a ((href "https://social.surfnet.space/@Feufochmar")) "Mastodon") "."
(a ((href "https://social.surfnet.space/Feufochmar")) "Mastodon") "."
(br)
"You can also contact me at " (code "contact [at] feuforeve [dot] fr") ".")
)
))
(define pages:about-feuforeve
(pages:template
#:title "About: This website"
#:author "Feufochmar"
#:date "2021-11-05"
#:content
'(article
(h2 "Website name")
(p "The website name, "
(a ((href "http://www.pokemon.com/fr/pokedex/feuforêve")) "Feuforêve")
", comes from the french name of the "
(a ((href "http://www.pokemon.com")) "Pokémon") " "
(a ((href "http://www.pokemon.com/us/pokedex/misdreavus")) "Misdreavus") ". ")
(a ((href "http://www.pokemon.com/us/pokedex/misdreavus")) "Misdreavus") ". "
"This website has no relation with the mentionned company. ")
(h2 "Cookie")
(p "This website does not use cookie, unless for editing the notepad, but those are for me, not you, I don't share my cookies. ")
(h2 "Personal Data")
(p "IP addresses are automatically logged by the server because you visited those pages. Those are kept for up to a month for maintainance reasons. "
"No other personal data are stored nor processed. ")
(h2 "Other informations")
(p "Please contact me at " (code "contact [at] feuforeve [dot] fr") " if you need other informations about this website. ")
)
))