{% set activeTheme = app.session.get('theme', 'horse') %}
<div class="single-footer-widget">
<div class="title">
<h3>{{ 'app.footer.usefull_links.title'|trans }}</h3>
</div>
<ul class="usefull-links">
<li>
<a href="{{ path('front_about') }}">{{ 'app.menu.about_us'|trans }}</a>
</li>
<li>
<a href="courses.html">Courses</a>
</li>
<li>
<a href="{{ path('front_gallery_index') }}">{{ 'app.menu.gallery'|trans }}</a>
</li>
<li>
<a href="{{ path('front_blog_index') }}">{{ 'app.menu.blog'|trans }}</a>
</li>
<li>
<a href="{{ path('front_contact') }}">{{ 'app.menu.contact_us'|trans }}</a>
</li>
</ul>
</div>