diff options
Diffstat (limited to 'templates/sidebar')
-rw-r--r-- | templates/sidebar/alert.hamlet | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/templates/sidebar/alert.hamlet b/templates/sidebar/alert.hamlet index ee15f1621..c5138d79a 100644 --- a/templates/sidebar/alert.hamlet +++ b/templates/sidebar/alert.hamlet @@ -4,16 +4,16 @@ $maybe h <- renderAlertHeader alert $if block <h4 .alert-heading> - $maybe name <- alertIcon alert - <i .icon-#{name}></i> # + $maybe i <- alertIcon alert + <i .icon-#{bootstrapIcon i}></i> # #{h} $else - $maybe name <- alertIcon alert - <i .icon-#{name}></i> # + $maybe i <- alertIcon alert + <i .icon-#{bootstrapIcon i}></i> # <strong>#{h}</strong> # $nothing - $maybe name <- alertIcon alert - <i .icon-#{name}></i> # + $maybe i <- alertIcon alert + <i .icon-#{bootstrapIcon i}></i> # #{renderAlertMessage alert} $maybe button <- alertButton alert <br> |