diff --git a/client/public/index.lisp b/client/public/index.lisp index 9063ec5..09a581e 100644 --- a/client/public/index.lisp +++ b/client/public/index.lisp @@ -20,16 +20,15 @@ (main (nav (a :href "/" "Home") "|" - (a :href "/posts" "Posts") "|" - (a :href "/qa" "QA")) + (a :href "/posts" "Posts") (article (header (h1 "Home")) (p "Hi there, good to see you on my website. My name is Raymon Zutekouw; Self-taught programmer by heart.") (p "Building software and exploring the wide variety of tools (or making them) is my passion. - To see it in action, checkout the stuff I make on " - (a :href "https://github.com/Raymonzut" "GitHub.")) + To see it in action, " + (a :href "https://git.raymon.dev/raymon" "checkout the stuff I make here.")) (p "The projects that may be useful to others are open source; for inspiring others and improving each others work. That is why I am a huge fan of " diff --git a/client/public/qa.lisp b/client/public/qa.lisp deleted file mode 100644 index 4fd1e9c..0000000 --- a/client/public/qa.lisp +++ /dev/null @@ -1,32 +0,0 @@ -(html :lang 'en - (head - (meta :charset 'utf-8) - (meta :name 'description - :content "Raymon answering common questions") - (meta :name 'viewport :content "width=device-width, initial-scale=1.0") - (title "Raymon Zutekouw") - - (link :rel 'dns-prefetch :href "https://cdn.statically.io") - - (link :defer ' - :rel 'stylesheet - :href "https://cdn.statically.io/gh/dragonprojects/dragondesign/master/main.min.css" - :media 'all) - (link :defer ' - :rel 'stylesheet - :href "/css/general.css" - :media 'all)) - (body - (main - (nav - (a :href "/" "Home") "|" - (a :href "/posts" "Posts") "|" - (a :href "/qa" "QA")) - (article - (header - (h1 "Questions and answers")) - (p :class "question" "What is this site about?") - (p "This site is about me and the stuff I make") - - (p :class "question" "Why is it still so empty?") - (p "Because I am framework hopping and now ditching frameworks all together"))))) diff --git a/client/templates/post_index_page.lisp b/client/templates/post_index_page.lisp index dd54d20..5dd68dc 100644 --- a/client/templates/post_index_page.lisp +++ b/client/templates/post_index_page.lisp @@ -20,8 +20,7 @@ (main (nav (a :href "/" "Home") "|" - (a :href "/posts" "Posts") "|" - (a :href "/qa" "QA")) + (a :href "/posts" "Posts") (article (header (h1 "Post listing")) diff --git a/client/templates/post_single_page.lisp b/client/templates/post_single_page.lisp index 4e6e7e9..6ae595d 100644 --- a/client/templates/post_single_page.lisp +++ b/client/templates/post_single_page.lisp @@ -20,8 +20,7 @@ (main (nav (a :href "/" "Home") "|" - (a :href "/posts" "Posts") "|" - (a :href "/qa" "QA")) + (a :href "/posts" "Posts") (article (header (h1 "{{title}}")