Files
cnt-sindikatua/views/templates/page.twig

14 lines
437 B
Twig
Raw Normal View History

2025-07-14 07:33:32 +00:00
{% extends 'layouts/base.twig' %}
{% block content %}
2025-10-30 08:27:51 +00:00
<h1 class="my-5 position-relative fs-3 fw-bold sp-module-title">{{ post.title }}</h1>
2025-07-14 07:33:32 +00:00
<div class="content-wrapper">
<article class="post-type-{{ post.type }}" id="post-{{ post.id }}">
<section class="article-content">
<div class="article-body">{{ post.content }}</div>
</section>
</article>
</div>
{% endblock %}