summaryrefslogtreecommitdiff
path: root/src/view/templates/article.php
blob: 5cf35c230be4e5e8cb3559a895d3564bbd93f752 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php declare(strict_types=1); ?>
<article>
    <div class="article_content">
        <div class="article_title_zone">
            <?= $share_button ?>
        </div>
        <div id="<?= $id ?>" class="html_from_editor">
            <?= $html ?>
        </div>
        <div class="article_admin_zone">
            <?= $admin_buttons ?>
        </div>
    </div>
</article>