-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
929856c
commit 55a319f
Showing
2 changed files
with
21 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,27 +3,33 @@ | |
<div class="container-fluid"> | ||
<a href="index.html"><img src="<?php bloginfo('template_directory'); ?>/images/logo-white.png" alt="Logo"></a> | ||
<?php | ||
$footer_acf = get_field('footer'); | ||
?> | ||
$footer_acf = get_field('footer'); | ||
$address = get_field('address'); | ||
$phone = get_field('phone'); | ||
$email = get_field('email'); | ||
$facebook= get_field('facebook'); | ||
$twitter= get_field('twitter'); | ||
$linkedin= get_field('linkedin'); | ||
?> | ||
<div class="pt-30"> | ||
<p class="underline-secondary"><b>Address:</b></p> | ||
<p><?php echo $footer_acf['address']; ?></p> | ||
<p><?php echo $address; ?></p> | ||
</div> | ||
|
||
<div class="pt-30"> | ||
<p class="underline-secondary mb-10"><b>Phone:</b></p> | ||
<a href="tel:+53 345 7953 32453 "><?php echo $footer_acf['phone'] ?></a> | ||
<a href="tel:+53 345 7953 32453 "><?php echo $phone; ?></a> | ||
</div> | ||
|
||
<div class="pt-30"> | ||
<p class="underline-secondary mb-10"><b>Email:</b></p> | ||
<a href="mailto:[email protected]"> <?php echo $footer_acf['email'] ?></a> | ||
<a href="mailto:[email protected]"> <?php echo $email; ?></a> | ||
</div> | ||
|
||
<ul class="icon mt-30"> | ||
<li><a href="<?php echo $footer_acf['facebook'] ?>"><i class="ion-social-facebook"></i></a></li> | ||
<li><a href="<?php echo $footer_acf['twitter'] ?>"><i class="ion-social-twitter"></i></a></li> | ||
<li><a href="<?php echo $footer_acf['linkedin'] ?>"><i class="ion-social-linkedin"></i></a></li> | ||
<li><a href="<?php echo $facebook; ?>"><i class="ion-social-facebook"></i></a></li> | ||
<li><a href="<?php echo $twitter; ?>"><i class="ion-social-twitter"></i></a></li> | ||
<li><a href="<?php echo $linkedin; ?>"><i class="ion-social-linkedin"></i></a></li> | ||
<!-- <li><a href="#"><i class="ion-social-dribbble-outline"></i></a></li>--> | ||
<!-- <li><a href="#"><i class="ion-social-pinterest"></i></a></li> --> | ||
<!-- <li><a href="#"><i class="ion-social-vimeo"></i></a></li>--> | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,7 @@ | ||
<?php | ||
/* | ||
Template name: About | ||
Author: Amigo Dheena | ||
*/ | ||
get_header(); | ||
get_footer(); |