Files
cnt-sindikatua/views/templates/page.twig
2025-07-14 07:33:32 +00:00

13 lines
407 B
Twig

{% extends 'layouts/base.twig' %}
{% block content %}
<div class="content-wrapper">
<article class="post-type-{{ post.type }}" id="post-{{ post.id }}">
<section class="article-content">
<h1 class="article-h1">{{ post.title }}</h1>
<div class="article-body">{{ post.content }}</div>
</section>
</article>
</div>
{% endblock %}