diff options
author | Gabriel Giovanini <gabrielg.desouza@gmail.com> | 2019-06-23 14:20:14 +0200 |
---|---|---|
committer | Gabriel Giovanini <gabrielg.desouza@gmail.com> | 2019-06-23 14:20:14 +0200 |
commit | eb925de3c3e59d61b3d84794771ae8a47f01fcb1 (patch) | |
tree | 642af003b347e1fc81e8bbeffed47048462e3815 /src | |
parent | 625b2c435e38df8f8141c222a3d63a1cde5a09fd (diff) | |
download | genpass-eb925de3c3e59d61b3d84794771ae8a47f01fcb1.tar.gz genpass-eb925de3c3e59d61b3d84794771ae8a47f01fcb1.tar.bz2 genpass-eb925de3c3e59d61b3d84794771ae8a47f01fcb1.zip |
Update to layout
Diffstat (limited to 'src')
-rw-r--r-- | src/genpass/core.cljs | 12 |
1 files changed, 9 insertions, 3 deletions
diff --git a/src/genpass/core.cljs b/src/genpass/core.cljs index 186eaeb..a31768a 100644 --- a/src/genpass/core.cljs +++ b/src/genpass/core.cljs @@ -17,12 +17,18 @@ (defn home-page [] [:div - [:section.section>div.container - (main-section)] + [:nav.navbar + {:role "navigation" + :aria-label "main navigation"} + [:div.navbar-brand>a.navbar-item>h1 + [:a + {:href "https://github.com//gabrielgio/genpass"} + "Genpass source code"]]] + [:section.section>div.container (main-section)] [:footer.footer>div.content.has-text-centered>p "Link"]]) (defn mount-root [] (r/render [home-page] (.getElementById js/document "app"))) (defn init! [] - (mount-root)) + (mount-root))
\ No newline at end of file |