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