armanty-quests/templates/certificates.php
2020-11-28 14:21:17 +03:00

39 lines
1.2 KiB
PHP

<?php
/**
* Template Name: Сертификаты/Certificates
*/
?>
<?php
get_header();
get_template_part('parts/contacts/contacts-header');
get_template_part('parts/certificates/text');
get_template_part('parts/certificates/advantages');
?>
<div class="wave">
<?php get_template_part('parts/certificates/target'); ?>
</div>
<?php
get_template_part('parts/certificates/items');
?>
<div class="wave wave-no-top wave-no-bottom" style="background-color: #f2f2f2">
<?php get_template_part('parts/holiday/description'); ?>
</div>
<?php
get_template_part('parts/certificates/modal'); ?>
<script>
// document.querySelector('.page-header h1').textContent = 'Подарочный сертификат на квест Armanty Quests';
document.querySelector('.page-header').style.background = 'url("<?php echo the_field('cert_bg', 35)?>") top left no-repeat';
document.querySelector('.page-header').style.backgroundSize = 'cover';
// document.querySelector('.holiday-descr h2').textContent = `Подарочный сертификат на квест`;
document.querySelector('.holiday-descr__text').innerHTML = `<?php echo the_field('cert_text', 35)?>`;
$('.holiday-descr h2').remove();
</script>
<?php get_footer();
?>