# responsive-menu/3.1.12/views/app/container.html.twig

Responsive Menu – Create Mobile-Friendly Menu, version 3.1.12. 10 lines.

- Page: https://pluginprobe.com/plugins/responsive-menu/3.1.12/code/views/app/container.html.twig
- Raw: https://pluginprobe.com/plugins/responsive-menu/3.1.12/raw/views/app/container.html.twig
- Modified: 2018-01-17T18:00:36+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/responsive-menu/3.1.12/code/views/app/container.html.twig#L10-L20`.

```twig
<div id="responsive-menu-container" class="{{ options.animation_type }}-{{ options.menu_appear_from }}">
    <div id="responsive-menu-wrapper">
        {% for key, selected in options.items_order|json_decode %}
            {% if selected == 'on' %}
                {% include 'app/%s.html.twig'|format(key|replace({' ': '-'})) %}
            {% endif %}
        {% endfor %}
    </div>
</div>

```
