templates/front/index.html.twig line 1

Open in your IDE?
  1. {% extends 'front/layout.html.twig' %}
    
    {% block title %}Academia oposiciones Guardia Civil | {{ parent() }}{% endblock %}
    
    {% block slider %}
        {{ include('front/partials/_slider.html.twig') }}
    {% endblock %}
    
    {% block content %}
        {{ include('front/partials/_precio.html.twig') }}
        {{ include('front/partials/_info.html.twig') }}
        {{ include('front/partials/_presentacion.html.twig') }}
        {{ include('front/partials/_contacto.html.twig') }}
        {{ include('front/partials/_btn_prueba.html.twig') }}
    {% endblock %}
    
    {% block javascripts %}
    {{ parent() }}
    <script>
        $(function() {
            Contacto.init();
        });
    </script>
    {% endblock %}