Files @ fd2dff0588bc
Branch filter:

Location: kallithea/rhodecode/templates/base/flash_msg.html

Bradley M. Kuhn
Introduce LICENSE.md to include license information about Bootstrap 3.0.0

This creates a LICENSE.md file which will ultimately contain all relevant
licensing information for the project, but for the moment just contains
information about Boostrap 3.0.0 licensed under Apache License 2.0.

A copy of the Apache license is also herein included.
<div class="flash_msg">
    <% messages = h.flash.pop_messages() %>
    % if messages:
        % for message in messages:
            <div class="alert alert-dismissable alert-${message.category}">
              <button type="button" class="close" data-dismiss="alert" aria-hidden="true">&times;</button>
              ${message}
            </div>
        % endfor
    % endif
    <script>
    if (typeof jQuery != 'undefined') {
        $(".alert").alert();
    }
    </script>
</div>