Files
aacperspektywy.pl/wp-content/themes/aac/inc/template-article-more-card.php
2026-01-08 15:27:15 +01:00

21 lines
591 B
PHP

<?php
$image = $args['image'] ?? '';
$title = $args['title'] ?? '';
$link_text = $args['link_text'] ?? '';
$link = $args['link'] ?? '#';
?>
<article class="article-more">
<div class="article-more--bg">
<img src="<?php echo $image; ?>" alt="">
</div>
<div class="article-more--wrapper">
<div class="article-more--title">
<h3><?php echo $title; ?></h3>
</div>
<div class="article-more--nav">
<a href="<?php echo $link; ?>" class="btn-1"><?php echo $link_text; ?></a>
</div>
</div>
</article>