37 lines
872 B
Twig
37 lines
872 B
Twig
{% extends 'base.html.twig' %}
|
|
{% block keywords %}
|
|
{{item.keywords}}
|
|
{% endblock %}
|
|
{% block title %}
|
|
{{ item.title }}
|
|
{% endblock %}
|
|
|
|
{% block des %}
|
|
{{ item.intro }}
|
|
{% endblock %}
|
|
|
|
{% block body %}
|
|
{% if item.plain is not null %}
|
|
{{ item.plain | raw}}
|
|
{% endif %}
|
|
{% if item.body is not null %}
|
|
<main class="min-h-screen bg-gray-50">
|
|
<div class="container mx-auto px-4 py-12">
|
|
<div class="max-w-4xl mx-auto">
|
|
<div class="bg-white rounded-2xl shadow-soft p-8 lg:p-12">
|
|
<!-- عنوان صفحه -->
|
|
<h1 class="text-3xl lg:text-4xl font-bold text-gray-900 mb-8 leading-tight">
|
|
{{item.title}}
|
|
</h1>
|
|
|
|
<!-- محتوای صفحه -->
|
|
<div class="prose prose-lg max-w-none text-gray-800 leading-relaxed">
|
|
{{ item.body | raw}}
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
{% endif %}
|
|
{% endblock %}
|