diff options
author | Colin Okay <colin@cicadas.surf> | 2022-11-11 14:01:38 -0600 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-11-11 14:01:38 -0600 |
commit | 85a9bd9012e23ed65f1a84938e0e9268b5cc1bd5 (patch) | |
tree | 229d3ae9f533fe3af4ce8f90436ba3f7f2ed29b7 /navigation.lisp | |
parent | d1aa627008dc68c1c6120225e7f0e7f9530273ec (diff) |
Add: about page. css tweaks
Diffstat (limited to 'navigation.lisp')
-rw-r--r-- | navigation.lisp | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/navigation.lisp b/navigation.lisp index f3b519e..0fe68f0 100644 --- a/navigation.lisp +++ b/navigation.lisp @@ -5,6 +5,7 @@ (defun create-navigation-header (parent) (with-clog-create parent (section (:header :class "row") - (div () (img ( :url-src "/favicon.ico"))) - (div () (a (:link "/home" :content "Home"))) - (div () (a (:link "/explore" :content "Explore")))))) + (div () (a (:link "/home") + (img ( :url-src "/favicon.ico")))) + (div () (a (:link "/explore" :content "Explore"))) + (div () (a (:link "/about" :content "About")))))) |