-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathfooter.php
More file actions
executable file
·81 lines (78 loc) · 3.64 KB
/
footer.php
File metadata and controls
executable file
·81 lines (78 loc) · 3.64 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
<!---footer-->
<footer>
<div class="container">
<div class="row">
<div class="col-md-3 col-sm-6 col-xs-12 width-set-50">
<div class="footer-details">
<h4>Get in touch</h4>
<ul class="list-unstyled footer-contact-list">
<li>
<i class="fa fa-map-marker fa-lg"></i>
<p>701 Old York Drive Richmond USA.</p>
</li>
<li>
<i class="fa fa-phone fa-lg"></i>
<p><a href="tel:+1-202-555-0100"> +1-202-555-0100</a></p>
</li>
<li>
<i class="fa fa-envelope-o fa-lg"></i>
<p><a href="mailto:demo@info.com"> demo@info.com</a></p>
</li>
</ul>
<div class="footer-social-icon">
<a href="#"><i class="fa fa-facebook"></i></a>
<a href="#"><i class="fa fa-twitter"></i></a>
<a href="#"><i class="fa fa-instagram"></i></a>
<a href="#"><i class="fa fa-google-plus"></i></a>
<a href="#"><i class="fa fa-youtube-play"></i></a>
</div>
<div class="input-group" id="subscribe">
<input type="text" class="form-control subscribe-box" value="" name="subscribe" placeholder="EMAIL ID">
<span class="input-group-btn">
<button type="button" class="btn subscribe-button"><i class="fa fa-paper-plane fa-lg"></i></button>
</span>
</div>
</div>
</div>
<div class="col-md-3 col-sm-6 col-xs-12 width-50 width-set-50">
<div class="footer-details">
<h4>explore</h4>
<ul class="list-unstyled footer-links">
<li class="active"><a>Home</a></li>
<li><a href="about.html">About</a></li>
<li><a href="rooms.html">Rooms</a></li>
<li><a href="gallery.html">Gallery</a></li>
<li><a href="#">Dinning</a></li>
<li> <a href="news.html">News</a></li>
<li> <a href="contact.html">Contact</a></li>
</ul>
</div>
</div>
<div class="col-md-6 col-sm-12 col-xs-12">
<div class="footer-details">
<h4>Now On Instagram</h4>
<div class="row">
<div class="instagram-images">
<div id="instafeed"></div>
</div>
</div>
</div>
</div>
</div>
<div class="copyright">
<?php
$page_id = get_option("owt_setting_footer_link");
?>
© <?php echo get_option('owt_first_footer_setting'); ?> <a href="<?php echo get_the_permalink($page_id); ?>" target="_blank"><?php echo get_option("owt_first_footer_link") ?></a>
</div>
</div>
</footer>
<!--back to top--->
<a style="display: none;" href="javascript:void(0);" class="scrollTop back-to-top" id="back-to-top">
<span><i aria-hidden="true" class="fa fa-angle-up fa-lg"></i></span>
<span>Top</span>
</a>
</div>
<?php wp_footer(); ?>
</body>
</html>