hesabixSite/templates/post/page.html.twig

30 lines
522 B
Twig
Raw Normal View History

2025-01-09 10:21:26 +03:30
{% extends 'base.html.twig' %}
2025-02-24 16:42:42 +03:30
{% block keywords %}
{{item.keywords}}
{% endblock %}
2025-01-09 10:21:26 +03:30
{% block title %}
{{ item.title }}
{% endblock %}
2025-01-10 03:04:35 +03:30
{% block des %}
{{ item.intro }}
{% endblock %}
2025-01-09 10:21:26 +03:30
{% block body %}
{% if item.plain is not null %}
{{ item.plain | raw}}
{% endif %}
{% if item.body is not null %}
2025-01-09 17:34:45 +03:30
<div class="container mt-3">
2025-01-09 10:21:26 +03:30
<div class="row">
<div class="col">
2025-01-09 17:34:45 +03:30
<h1 class="text-primary py-4">{{item.title}}</h1>
2025-01-09 10:21:26 +03:30
{{ item.body | raw}}
</div>
</div>
</div>
{% endif %}
{% endblock %}