Files
Roman Pyrih 1ddd829b42 Add ACF
2026-05-19 15:00:24 +02:00

75 lines
3.3 KiB
PHP

<?php
/**
* Page Name: Home page
* Page Id: 7
*/
get_header();
$box_1_left = get_field('box-1-left');
$box_1_right = get_field('box-1-right');
?>
<main id="primary" class="site-main">
<section class="box-1">
<div class="circle">
<div class="circle-wrapper">
<span>PKMP</span>
</div>
</div>
<div class="_row">
<a href="<?= $box_1_left['btn']['url']; ?>" target="<?= $box_1_left['btn']['target']; ?>" class="_col _col-1">
<div class="logo">
<img src="<?= $box_1_left['logo']; ?>" alt="">
</div>
<div class="bg-img">
<img src="<?= $box_1_left['bg']; ?>" alt="">
</div>
<div class="_col-content">
<h4 class="sub-title">
<?= $box_1_left['sybtitle'] ?>
</h4>
<h2 class="title">
<?= $box_1_left['title'] ?>
</h2>
<div class="text">
<?= $box_1_left['text'] ?>
</div>
<span class="btn">
<span><?= $box_1_left['btn']['title']; ?></span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-right h-4 w-4" aria-hidden="true"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg>
</span>
</div>
<div></div>
</a>
<a href="<?= $box_1_right['btn']['url']; ?>" target="<?= $box_1_right['btn']['target']; ?>" class="_col _col-2">
<div class="logo">
<img src="<?= $box_1_right['logo']; ?>" alt="">
</div>
<div class="bg-img">
<img src="<?= $box_1_right['bg']; ?>" alt="">
</div>
<div class="_col-content">
<h4 class="sub-title">
<?= $box_1_right['sybtitle'] ?>
</h4>
<h2 class="title">
<?= $box_1_right['title'] ?>
</h2>
<div class="text">
<p>
<?= $box_1_right['text'] ?>
</p>
</div>
<span class="btn">
<span><?= $box_1_right['btn']['title']; ?></span>
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="lucide lucide-arrow-right h-4 w-4" aria-hidden="true"><path d="M5 12h14"></path><path d="m12 5 7 7-7 7"></path></svg>
</span>
</div>
<div></div>
</a>
</div>
</section>
</main><!-- #main -->
<?php
get_footer();