55 lines
2.3 KiB
PHP
55 lines
2.3 KiB
PHP
<div class="callback-modal">
|
|
<div class="callback-modal__layout"></div>
|
|
<div class="callback-modal__body">
|
|
<div class="callback-modal__close"><i class="fa fa-times" aria-hidden="true"></i></div>
|
|
<form method="POST" action="<?php echo admin_url('admin-ajax.php?action=send_callback')?>">
|
|
<h2>Заказать звонок</h2>
|
|
<div class="form-group">
|
|
<label for="callback-name">Ваше имя</label>
|
|
<input type="text" class="form-control" id="callback-name" required>
|
|
</div>
|
|
<div class="form-group">
|
|
<label for="callback-phone">Ваш телефон</label>
|
|
<input type="tel" class="form-control" id="callback-phone" required>
|
|
</div>
|
|
<button type="submit" class="btn btn-danger">Подтвердить</button>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<footer class="footer <?php
|
|
// if( is_home() || is_page(8) || is_page(24) || is_page(35) || is_page(56) || is_page(33) ){
|
|
// echo 'footer-in-home';
|
|
// }
|
|
?>">
|
|
<div class="container">
|
|
<img src="<?php echo get_template_directory_uri() ?>/assets/img/armanty_logo.png" alt="logo" class="row">
|
|
<?php
|
|
wp_nav_menu( array(
|
|
'theme_location' => 'footer_menu',
|
|
'menu_class' => 'footer__menu row justify-content-between',
|
|
'container' => 'nav',
|
|
'container_class' => 'footer-links'
|
|
) )
|
|
?>
|
|
<div class="footer-social">
|
|
<h3>Мы в социальных сетях</h3>
|
|
<ul class="row justify-content-center">
|
|
<li><a target="_blank" href="https://vk.com/armanty"><i class="fa fa-vk" aria-hidden="true"></i></a></li>
|
|
<li><a target="_blank" href="https://instagram.com/armantyquests"><i class="fa fa-instagram" aria-hidden="true"></i></a></li>
|
|
</ul>
|
|
</div>
|
|
<div class="footer-docs">
|
|
<ul class="row justify-content-center">
|
|
<li><a href="./politics.docx" download>Политика защиты персональных данных</a></li>
|
|
<!-- <li><a href="#">Политика соглашения</a></li> -->
|
|
</ul>
|
|
</div>
|
|
<div class="footer-coop">
|
|
<span><i class="fa fa-copyright" aria-hidden="true"></i>2020 ArmantyQuests</span>
|
|
</div>
|
|
</div>
|
|
</footer>
|
|
|
|
<?php wp_footer( ) ?>
|
|
</body>
|
|
</html>
|