templates/search_results/index.html.twig line 1

Open in your IDE?
  1. {% extends page.template.getTemplateName() %}
    
    {% block body %}
        <section class="std-section">
            <div class="container">
                <div class="divider d-50 m-20"></div>
                <h1 class="page-title" >Результаты поиска</h1>
            </div>
        </section>
        <section class="std-section">
            <div class="container">
                <div class="content">
                    <h6> По запросу: "{{ searchTerm }}", найдено {{ count }} совпадений</h6>
                    {% if (count)  %}
                        <ul>
                            <ol>
                                {% for item in data %}
                                    <li>
                                        <a href="{{ item.path }}" target="_blank">{{ item.title }}</a>
                                    </li>
                                {% endfor %}
                            </ol>
                        </ul>
                    {% else %}
                        <span class="span">По вашему запросу ничего не найдено, попробуйте другой запрос.</span>
                    {% endif %}
                </div>
            </div>
            <script>
                require([
                    'assets/front/js/wm-widget/regular'
                ]);
            </script>
        </section>
    {% endblock %}