aboutsummaryrefslogtreecommitdiff
path: root/src/view/templates/post_block.php
blob: d88d7808b1b149710e5add58caa1cbffc5537b85 (plain)
1
2
3
4
5
6
7
8
9
10
11
<?php declare(strict_types=1); ?>
<section class="<?= $section_class ?>" id="<?= $this->id_node ?>">
	<h3><?= $title ?></h3>
<?= $new_article ?>
	<script>
		var clone<?= $this->id_node ?> = document.currentScript.previousElementSibling.cloneNode(true);
	</script>
	<div class="<?= $section_child_class ?>">
<?= $content ?>
	</div>
</section>