forked from roots/sage
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtemplate-about.php
30 lines (28 loc) · 1023 Bytes
/
template-about.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
<?php
/*
Template Name: About Template
*/
?>
<div class="container page about-page">
<div class="row">
<?php $panelmode = generate_panel(); ?>
<div class="col-md-8 col-md-offset-2 col-xs-12">
<div class="form">
<?php echo do_shortcode(html_entity_decode(get_post_meta( $post->ID, 'advedt_about_form', true )))?:""; ?>
</div>
</div>
</div>
<div class="row">
<div class="col-md-5 col-md-offset-2 col-sm-8 col-xs-12">
<a href="tel:<?php echo preg_replace("/[^0-9]/","",get_option('phone_number',"(888) 888-8888")); ?>" class="phone-number"><?php echo get_option('phone_number',"(888) 888-8888"); ?></a>
</div>
<div class="col-md-3 col-sm-4 col-xs-12">
<div class="contact-\header">
<?php echo get_post_meta( $post->ID, 'advedt_about_contact_header', true )?:""; ?>
</div>
<div class="contact-address">
<?php echo get_post_meta( $post->ID, 'advedt_about_contact_address', true )?:""; ?>
</div>
</div>
</div>
</div>