-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact-us.php
47 lines (42 loc) · 1.27 KB
/
contact-us.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
38
39
40
41
42
43
44
45
46
47
<?php
/**
* Template name: Contact us
*/
$theme_path = get_template_directory_uri();
get_header();
?>
<!-- Start Education Area -->
<section class="education-area-two ptb-100">
<div class="container">
<div class="row">
<div class="col-lg-6">
<div class="education-content">
<h1 class="top-title"><?php the_title(); ?></h1>
<?php the_content(); ?>
</div>
</div>
<div class="col-lg-6">
<div class="education-img-wrap">
<div class="education-img-2">
<img src="<?php echo $theme_path; ?>/assets/img/education-img-2.jpg" alt="Image">
</div>
<div class="education-img-3">
<img src="<?php echo $theme_path; ?>/assets/img/education-img-3.jpg" alt="Image">
</div>
<div class="education-img-4">
<img src="<?php echo $theme_path; ?>/assets/img/education-img-4.jpg" alt="Image">
</div>
<div class="education-shape-1">
<img src="<?php echo $theme_path; ?>/assets/img/education-shape-1.jpg" alt="Image">
</div>
<div class="education-shape-2">
<img src="<?php echo $theme_path; ?>/assets/img/education-shape-2.png" alt="Image">
</div>
</div>
</div>
</div>
</div>
</section>
<!-- End Education Area -->
<?php
get_footer();