Skip to content

Instantly share code, notes, and snippets.

View victorkristof's full-sized avatar

Victor Kristof victorkristof

View GitHub Profile
@victorkristof
victorkristof / flask-flash-bootstrap
Created March 26, 2015 12:52
Flask flash messages as Bootstrap alert.
{% with messages = get_flashed_messages(with_categories=true) %}
<!-- Categories: success (green), info (blue), warning (yellow), danger (red) -->
{% if messages %}
{% for category, message in messages %}
<div class="alert alert-{{ category }} alert-dismissible" role="alert">
<button type="button" class="close" data-dismiss="alert" aria-label="Close"><span aria-hidden="true">&times;</span></button>
<!-- <strong>Title</strong> --> {{ message }}
</div>
{% endfor %}
{% endif %}
@victorkristof
victorkristof / sticky-footer.sass
Created March 25, 2015 09:41
Bootstrap sticky footer in Sass.