-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfooter.php
More file actions
100 lines (95 loc) · 3.58 KB
/
footer.php
File metadata and controls
100 lines (95 loc) · 3.58 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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
<?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 comet
*/
?>
<footer id="footer-widgets">
<div class="container">
<div class="go-top"><a href="#top"><i class="ti-arrow-up"></i></a></div>
<div class="col-md-6 ov-h">
<div class="col-sm-4">
<div class="widget">
<h6 class="upper">About Comet</h6>
<p><span>Fourth Floor</span><span>New York, NY 10011</span><span>hello@comet.com</span></p><a href="#" class="btn btn-color-out btn-sm">Hire Us!</a>
</div>
</div>
<div class="col-sm-4">
<div class="widget">
<h6 class="upper">Culture</h6>
<ul class="list-unstyled">
<li><a href="#">Team</a></li>
<li><a href="#">Process</a></li>
<li><a href="#">Story</a></li>
<li><a href="#">Careers</a></li>
</ul>
</div>
</div>
<div class="col-sm-4">
<div class="widget">
<h6 class="upper">Case Studies</h6>
<ul class="list-unstyled">
<li><a href="portfolio-single-1.html">Neleman Cava </a></li>
<li><a href="portfolio-single-2.html">Sweet Lane </a></li>
<li><a href="portfolio-single-3.html">Jeff Burger </a></li>
<li><a href="portfolio-single-1.html">Juice Meds </a></li>
</ul>
</div>
</div>
</div>
<div class="col-md-4 col-md-offset-2">
<div class="col-md-12">
<div class="widget">
<h6 class="upper">Stay in touch</h6>
<p>Sign Up to get the latest updates.</p>
<div class="footer-newsletter">
<div class="inline-form">
<div class="input-group">
<input type="text" placeholder="Your Email" class="form-control"><span class="input-group-btn">
<button type="button" class="btn btn-color">Subscribe</button></span>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</footer>
<footer id="footer">
<div class="container">
<div class="footer-wrap">
<div class="col-md-4">
<div class="copy-text">
<p><i class="icon-heart red mr-15"></i>© 2015 Comet Agency.</p>
</div>
</div>
<div class="col-md-4">
<ul class="list-inline">
<li><a href="#">About</a></li>
<li><a href="#">Services</a></li>
<li><a href="#">Blog</a></li>
<li><a href="#">Contact</a></li>
</ul>
</div>
<div class="col-md-4">
<div class="footer-social">
<ul>
<li><a target="_blank" href="#"><i class="ti-facebook"></i></a></li>
<li><a target="_blank" href="#"><i class="ti-twitter-alt"></i></a></li>
<li><a target="_blank" href="#"><i class="ti-linkedin"></i></a></li>
<li><a target="_blank" href="#"><i class="ti-instagram"></i></a></li>
<li><a target="_blank" href="#"><i class="ti-dribbble"></i></a></li>
</ul>
</div>
</div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>