59 lines
2.7 KiB
PHP
59 lines
2.7 KiB
PHP
<?php
|
|
/**
|
|
* Page: Kontakt
|
|
*/
|
|
|
|
get_header();
|
|
|
|
$box1 = get_field('box-1');
|
|
?>
|
|
<main id="primary" class="site-main">
|
|
<div class="box-0">
|
|
<?php get_template_part('inc/breadcrumb');?>
|
|
</div>
|
|
<div class="box-1">
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col col-1">
|
|
<div class="box-head animate-text-linear">
|
|
<h2><?php echo split_text_into_spans(esc_html($box1['title'])); ?></h2>
|
|
</div>
|
|
|
|
<div class="box-text animate-text-linear">
|
|
<p><?php echo split_text_into_spans(esc_html($box1['text'])); ?></p>
|
|
</div>
|
|
|
|
<div class="contact-cards">
|
|
<?php foreach ($box1['contacts'] as $item) : ?>
|
|
<div class="contact-card">
|
|
<div class="card-title animate-text-linear">
|
|
<h3><?php echo split_text_into_spans(esc_html($item['title'])); ?></h3>
|
|
</div>
|
|
<div class="card-data animate-text-linear">
|
|
<?php echo split_text_into_spans(wp_kses_post($item['text'])); ?>
|
|
<ul class="card-list">
|
|
<?php foreach ($item['contacts_types'] as $contact) : ?>
|
|
<li>
|
|
<a href="<?php echo esc_url($contact['url']); ?>" class="animate-text-linear">
|
|
<?php echo split_text_into_spans(esc_html($contact['title'])); ?>
|
|
</a>
|
|
</li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
</div>
|
|
</div>
|
|
<?php endforeach; ?>
|
|
</div>
|
|
|
|
<div class="contact-description animate-text-linear">
|
|
<?php echo split_text_into_spans(wp_kses_post($box1['description'])); ?>
|
|
</div>
|
|
</div>
|
|
<div class="col col-2">
|
|
<img src="<?php echo esc_url($box1['img']); ?>" alt="">
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<?php get_footer();
|