templates/frontend/content/index.html.twig line 1

  1. {% extends 'base.html.twig' %}
  2. {% block title %}Контент{% endblock %}
  3. {% block body %}
  4.     <div class="lg:w-[1280px] mx-auto min-h-[600px]">
  5.         {% set types = {
  6.             'mn' : ['Мэдээ мэдээлэл', 'Шинэ технологи', 'Сургалт'],
  7.             'en' : ['News', 'Technology', 'Training']
  8.         } %}
  9.         {% if types[app.request.locale][type] is defined %}
  10.             <h5 class="border-b-4 border-gray-200 py-2 font-bold mb-8">{{ types[app.request.locale][type] }}</h5>
  11.             {% if contents | length == 0 %}
  12.                 {{ include('common/_empty.html.twig') }}
  13.             {% endif %}
  14.             <div class="pb-8 grid grid-cols-4 gap-8">
  15.                 {% for content in contents %}
  16.                     {% include 'frontend/content/_card.html.twig' with {id: content.id, title: content.translate(app.request.locale).title, image: content.image, date: content.createdAt} %}
  17.                 {% endfor %}
  18.             </div>
  19.         {% else %}
  20.         {% endif %}
  21.     </div>
  22. {% endblock %}