diff options
author | Colin Okay <colin@cicadas.surf> | 2022-10-28 16:06:29 -0500 |
---|---|---|
committer | Colin Okay <colin@cicadas.surf> | 2022-10-28 16:06:29 -0500 |
commit | 46371385ee5d95217b7b1fb636e17d9277835f69 (patch) | |
tree | d2d5dba329036cb1c5fee4df3df43ffadf113c08 /navigation.lisp | |
parent | c4363a63dbfee6ca4fbc7e35cc5a2b5329f7383f (diff) |
Tweaks
Diffstat (limited to 'navigation.lisp')
-rw-r--r-- | navigation.lisp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/navigation.lisp b/navigation.lisp index 4f73917..b362fe1 100644 --- a/navigation.lisp +++ b/navigation.lisp @@ -4,6 +4,8 @@ (defun create-navigation-header (parent) (with-clog-create parent - (unordered-list () - (list-item () (a (:link "/home" :content "Home"))) - (list-item () (a (:link "/explore" :content "Explore")))))) + (section (:header ) + (div () + (img ( :url-src "/favicon.ico")) + (a (:link "/home" :content "Home")) + (a (:link "/explore" :content "Explore")))))) |