footer.php 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. <?php
  2. /**
  3. * The template for displaying the footer
  4. *
  5. * Contains the closing of the #content div and all content after.
  6. *
  7. * @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
  8. *
  9. * @package GGPromarket
  10. */
  11. ?>
  12. <section class = "our-location">
  13. <div class = "wrapper">
  14. <h1 class = "visually-hidden">Контактные данные</h1>
  15. <div class = "address">
  16. <h2>NЁRDS DESIGN STUDIO</h2>
  17. <p>191186, Санкт-Питербург,<br>
  18. ул.Б. Конюшенная, д. 19/8</p>
  19. <p>тел. +7 (812) 275-75-75</p>
  20. <br>
  21. <button class = "modal-call button button-red">Напишите нам</button>
  22. </div>
  23. </div>
  24. <div id="map"></div>
  25. </section>
  26. <footer class = "main-footer wrapper">
  27. <div class = "social">
  28. <ul class = "social-list">
  29. <li class="social-item"><a class = "social-icon social-icon-vk" href="#"><span class="visually-hidden">Вконтакте</span></a></li>
  30. <li class="social-item"><a class = "social-icon social-icon-fb" href="#"><span class="visually-hidden">Фейсбук</span></a></li>
  31. <li class="social-item"><a class = "social-icon social-icon-inst" href="#"><span class="visually-hidden">Инстаграм</span></a></li>
  32. </ul>
  33. <div class = "text-footer">
  34. <h4>Давайте дружить, это выгодно!</h4>
  35. <p>Скидка 10% для друзей из социальных сетей.</p>
  36. </div>
  37. </div>
  38. </footer>
  39. <section class = "modal-window">
  40. <div class = "modal-wrapper">
  41. <span class="close-cross"></span>
  42. <h2 class = "modal-title">Напишите нам</h2>
  43. <form id = "modal" class = "modal-form" method = "post">
  44. <label>Ваше имя:<br>
  45. <input type = "text" placeholder = "Представьтесь, пожалуйста" id = "user-name">
  46. </label>
  47. <label>Ваш e-mail:<br>
  48. <input type = "email" placeholder = "Для отправки ответа" id = "user-email">
  49. </label>
  50. <label>Текст письма:<br>
  51. <textarea placeholder = "В свободной форме" id = "user-text"></textarea>
  52. </label>
  53. </form>
  54. <button class = "button button-red modal-button" type = "submit" form = "modal">Отправить</button>
  55. </div>
  56. </section>
  57. <?php wp_footer(); ?>
  58. </body>
  59. </html>