If it repeats more than twice, turn it into a partial. If it has logic, move that logic into PHP and keep your markup simple.
A tiny partial
<!-- partials/card.php --><article class='post-card'><img src='<?= h($post['cover_url']) ?>' alt='Post cover' /><div class='content'>...</div></article>