blob: dfb65b5f405e6fc3a5bec2f7bcd3533c55316307 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php declare(strict_types=1); ?>
<section class="blog" id="<?= $this->id_node ?>">
<h3><?= $title ?></h3>
<?= $new_article ?>
<script>
var clone<?= $this->id_node ?> = document.currentScript.previousElementSibling.cloneNode(true);
</script>
<div>
<?= $content ?>
</div>
</section>
|