-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
85 lines (66 loc) · 2.15 KB
/
footer.php
File metadata and controls
85 lines (66 loc) · 2.15 KB
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
<?php
/**
* The template for displaying the footer
*
* Contains the closing of the #content div and all content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
*
* @package Isings_Culligan
*/
?>
</div><!-- #content -->
<footer id="colophon" class="site-footer">
<div class="footer-container container">
<div class="row">
<div class="col-md-3">
<h2>Contact Us</h2>
<p>1226 Enterprise St</p>
<p>Stockton CA 95204</p>
<p class="footer-phone"><a href="tel:209-690-0007">209-690-0007</a></p>
<a href="/contact" class="btn ic-button">Email Us</a>
</div>
<div class="col-md-3">
<h2>Services</h2>
<nav class="footer-nav">
<?php
wp_nav_menu( array(
'theme_location' => 'footer-menu',
'menu_id' => 'footer-menu',
) );
?>
</nav>
</div>
<div class="col-md-3">
<h2>Proudly Serving</h2>
<p>
<?php
/* translators: %s: CMS name, i.e. WordPress. */
printf( esc_html__( 'Proudly Serving Stockton, Manteca, Lodi, Discovery Bay, Lathrop, Escalon, Ripon, Angels Camp, Murphys, and San Joaquin and Calaveras counties', 'isings' ) );
?>
</p>
</div>
<div class="col-md-3">
<h2>Follow Us</h2>
<div class="socials">
<a href="https://www.facebook.com/isingsculliganwaterofstockton/" target="_blank" rel="noreferrer"><i class="fa fa-facebook-square"></i></a>
<a href="https://www.twitter.com/isingsculligan1" target="_blank" rel="noreferrer"><i class="fa fa-twitter-square"></i></a>
<a href="https://www.instagram.com/isingsculligan1" target="_blank" rel="noreferrer"><i class="fa fa-instagram"></i></a>
</div>
</div>
</div>
</div>
</footer><!-- #colophon -->
<div class="site-info">
<?php
wp_nav_menu( array(
'theme_location' => 'subfooter-menu',
'menu_id' => 'subfooter-menu',
) );
?>
<div class="credit"><a href="https://provaromarketing.com/">Website Design and Development <br>by Provaro Marketing</a></div>
</div><!-- .site-info -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>