25 lines
577 B
Plaintext
25 lines
577 B
Plaintext
<div #main.main-wrapper>
|
|
<!-- navigation -->
|
|
^{navbar menuTypes mcurrentRoute}
|
|
|
|
|
|
<div .content-wrapper>
|
|
<!-- breadcrumbs -->
|
|
$if not $ Just HomeR == mcurrentRoute
|
|
^{breadcrumbsList parents title}
|
|
|
|
<!-- alerts -->
|
|
$forall (status, msg) <- mmsgs
|
|
$with status2 <- bool status "info" (status == "")
|
|
<div class="alert alert-#{status2}">#{msg}
|
|
|
|
<!-- actual content -->
|
|
^{widget}
|
|
|
|
<!-- a little lorem ipsum for waste of vertical space -->
|
|
^{lipsum}
|
|
|
|
<!-- footer -->
|
|
<footer>
|
|
#{appCopyright $ appSettings master}
|