armanty-quests/parts/home/present.php
2020-11-28 14:21:17 +03:00

33 lines
1.1 KiB
PHP

<div class="present <?php
if( is_home() ){
echo 'wave' . ' wave-no-bottom';
}
?>">
<div class="present-layout">
<h2>Дарите незабываемые эмоции!</h2>
<div class="container">
<div class="present-item">
<img src="<?php echo the_field('emoji_1_img', 430) ?>" alt="present">
<div class="present-item__text">
<h3><?php the_field('emoji_1_title', 430) ?></h3>
<p><?php the_field('emoji_1_text', 430) ?></p>
<a href="<?php echo get_home_url() . '/holiday'?>"><button class="btn btn-danger btn-round">Узнать больше</button></a>
</div>
</div>
<div class="present-item">
<img src="<?php echo the_field('emoji_2_img', 430) ?>" alt="present">
<div class="present-item__text">
<h3><?php the_field('emoji_2_title', 430) ?></h3>
<p><?php the_field('emoji_2_text', 430) ?></p>
<a href="<?php echo get_home_url() . '/holiday'?>"><button class="btn btn-danger btn-round">Узнать больше</button></a>
</div>
</div>
</div>
</div>
</div>