Wrap the nav and breadcrumbs in a <header> element
This commit is contained in:
parent
9b6305f8c9
commit
096df9a550
1 changed files with 18 additions and 17 deletions
|
@ -1,3 +1,4 @@
|
||||||
|
<header>
|
||||||
<nav .navbar .navbar-expand-lg .navbar-dark.bg-dark>
|
<nav .navbar .navbar-expand-lg .navbar-dark.bg-dark>
|
||||||
$maybe title <- appTitle $ appSettings master
|
$maybe title <- appTitle $ appSettings master
|
||||||
<a .navbar-brand href=@{HomeR}>#{title}
|
<a .navbar-brand href=@{HomeR}>#{title}
|
||||||
|
@ -14,8 +15,6 @@
|
||||||
$forall MenuItem label route _ <- navbarRightFilteredMenuItems
|
$forall MenuItem label route _ <- navbarRightFilteredMenuItems
|
||||||
<li .nav-item :Just route == mcurrentRoute:.active>
|
<li .nav-item :Just route == mcurrentRoute:.active>
|
||||||
<a .nav-link href=@{route}>#{label}
|
<a .nav-link href=@{route}>#{label}
|
||||||
|
|
||||||
<main>
|
|
||||||
$if not $ null parents
|
$if not $ null parents
|
||||||
<ul .breadcrumb.rounded-0>
|
<ul .breadcrumb.rounded-0>
|
||||||
$forall bc <- parents
|
$forall bc <- parents
|
||||||
|
@ -24,10 +23,12 @@
|
||||||
<li .breadcrumb-item.active>#{title}
|
<li .breadcrumb-item.active>#{title}
|
||||||
$maybe msg <- mmsg
|
$maybe msg <- mmsg
|
||||||
<div .alert.alert-info #message>#{msg}
|
<div .alert.alert-info #message>#{msg}
|
||||||
|
|
||||||
|
<main>
|
||||||
^{widget}
|
^{widget}
|
||||||
|
|
||||||
<!-- Footer -->
|
<!-- Footer -->
|
||||||
<footer .footer>
|
<footer>
|
||||||
<div .container>
|
<div .container>
|
||||||
<p .text-muted>
|
<p .text-muted>
|
||||||
All content on this site is licensed under a
|
All content on this site is licensed under a
|
||||||
|
|
Loading…
Reference in a new issue