Skip to content

Instantly share code, notes, and snippets.

@mezklador
Forked from enricofoltran/base.html.twig
Created November 13, 2018 13:10
Show Gist options
  • Save mezklador/efd9b08b6da3407b04c20df4416599c0 to your computer and use it in GitHub Desktop.
Save mezklador/efd9b08b6da3407b04c20df4416599c0 to your computer and use it in GitHub Desktop.

Revisions

  1. Enrico Foltran created this gist Apr 3, 2013.
    9 changes: 9 additions & 0 deletions base.html.twig
    Original file line number Diff line number Diff line change
    @@ -0,0 +1,9 @@
    {% if app.session.flashbag.peekAll|length > 0 %}
    {% for type, messages in app.session.flashbag.all %}
    {% for message in messages %}
    <div class="{{ type ? type : '' }}">
    {{ message|trans({}, domain|default('messages')) }}
    </div>
    {% endfor %}
    {% endfor %}
    {% endif %}