-
Notifications
You must be signed in to change notification settings - Fork 0
/
sidebar.php
49 lines (46 loc) · 1.77 KB
/
sidebar.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
48
49
<?php
/**
* The about area on every page.
*
* @package brokers-sdc
*/
?>
<div class="strip strip--about" role="complementary">
<div class="wrapper">
<div class="layout layout--large">
<div class="layout__item desk-2/3">
<div class="title-inline">
<h2 class="title-inline__title">About us</h2>
<?php if ( !is_page( 'About Us' ) ) : ?>
<a href="<?php echo get_permalink ( get_page_by_title( 'About' ) ); ?>" class="btn btn--secondary btn--small">More info</a>
<?php endif; ?>
</div>
<div class="media media--responsive mb">
<img class="media__img about-img img--frame img--round" src="<?php echo get_template_directory_uri(); ?>/images/ed-nancy.jpg">
<div class="media__body">
<p>Ed and Nancy Pickering have been licensed real estate brokers in North County, California since 1976 and 1981, respectively. Since then, they have provided their clients with honest, personable, top-quality service at discount prices.</p>
<p>Nancy and Ed have saved their clients hundreds of thousands of dollars in commissions over almost 40 years. They can save you thousands too!</p>
</div>
</div>
</div>
<div class="layout__item desk-1/3">
<h2 id="contact">Contact info</h2>
<ul class="list-block">
<li class="list-block__item">
<i class="fa fa-fw fa-phone"></i>
<span class="accessibility">Phone:</span>
760-740-2555
</li>
<li class="list-block__item">
<i class="fa fa-fw fa-envelope"></i>
<span class="accessibility">Email:</span>
<a href="mailto:ednancy@cox.net">ednancy@cox.net</a>
</li>
<li class="list-block__item">
<i class="fa fa-fw fa-file-text"></i>
<a href="<?php echo get_permalink ( get_page_by_title( 'Contact' ) ); ?>">Contact form</a>
</li>
</ul>
</div>
</div>
</div>