summaryrefslogtreecommitdiff
path: root/templates/sidebar/alert.hamlet
blob: a339874a2bc05dbd9391354f147fe52abc7e9ff2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
<div .alert .fade .in .#{divclass} :block:.alert-block ##{alertid} :closable:onclick="(function( $ ) { $.get('@{closealert}') })( jQuery );">
  $if closable
    <a .close data-dismiss="alert">&times;</a>
  $maybe h <- heading
    $if block
      <h4 .alert-heading>
        $case icon
          $of Nothing
          $of Just name
            <i class="icon-#{name}"></i> #
        #{h}
    $else
      $case icon
        $of Nothing
        $of Just name
          <i class="icon-#{name}"></i> #
      <strong>#{h}</strong> #
  #{message}