-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathpage-iletisim.php
37 lines (37 loc) · 1.32 KB
/
page-iletisim.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php get_header(); ?>
<section class="section">
<div class="container">
<h1 class="header-top-text">İletişim</h1>
<p class="header-bottom-text">Tavsiye ve isteklerinizi göndermek için aşağıdaki iletişim formunu kullanabilirsiniz.</p>
<?php while (have_posts()) : the_post(); ?>
<div class="row">
<div class="col-md-8">
<?php get_template_part('template-parts/contents/content', 'page'); ?>
</div>
<div class="col-md-4 mt-5 mt-md-0">
<div class="card mb-3">
<div class="card-body">
<div class="contact-info">
<i class="fas fa-phone"></i>
<a rel="external" href="https://wa.me/905350685472" class="stretched-link">
<span>+90 535 068 54 72</span>
</a>
</div>
</div>
</div>
<div class="card">
<div class="card-body">
<div class="contact-info">
<i class="fas fa-envelope"></i>
<a rel="external" href="mailto:[email protected]" class="stretched-link">
<span>[email protected]</span>
</a>
</div>
</div>
</div>
</div>
</div>
<?php endwhile; ?>
</div>
</section>
<?php get_footer(); ?>