diff options
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")))))) |