templates/page/news/index/index.html.twig line 1

Open in your IDE?
  1. {% extends 'layout/base.html.twig' %}
  2. {% block title %}News – {{ parent() }}{% endblock %}
  3. {% block seo_en %}{{ url('news_index') }}{% endblock %}
  4. {% block seo_hu %}{{ url('news_index', {'lang': 'hu'}) }}{% endblock %}
  5. {% block seo_x %}{{ url('news_index') }}{% endblock %}
  6. {% block body_classes %}news-index{% endblock %}
  7. {% block content %}
  8.     <div class="news-page">
  9.         {% include 'common/components/news.html.twig' with { items: posts, more: 'div' } only %}
  10.     </div>
  11.     {% include 'common/components/contact_form.html.twig' with { defaultInquiry: true } only %}
  12. {% endblock %}