fradrive/templates/default-layout.hamlet
2018-06-29 23:44:51 +02:00

37 lines
727 B
Plaintext

<!-- navigation -->
^{navbar}
<div .main>
<!-- secondary navigation at the side -->
^{asidenav}
<div .main__content>
<!-- breadcrumbs -->
$if not $ Just HomeR == mcurrentRoute
^{breadcrumbs}
<div .main__content-body>
<h1>
$maybe headline <- contentHeadline
^{headline}
$nothing
HEADLINE MISSING!
<!-- prime page actions -->
^{pageactionprime}
<!-- alerts -->
<div .alerts>
$forall (status, msg) <- mmsgs
$with status2 <- bool status "info" (status == "")
<div class="alert alert-#{status2}">
<div .alert__content>
#{msg}
<!-- actual content -->
^{widget}