-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
40 lines (37 loc) · 962 Bytes
/
footer.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
<?php
/**
* The template for displaying the footer
*
* Contains the start and closing of the "footer" and all content after.
*
* @package WordPress
* @subpackage Nice
*/
?>
<!-- Start Footer Area -->
<footer id="footer-area">
<div class="container">
<div class="row text-center">
<div class="col-sm-12">
<div class="footer-content">
<h1>Use it free!</h1>
<p>“This is free Wordpress template for wordpress website.
<br>No backlink is required to use this layout.”</p>
</div>
</div>
</div>
</div>
<hr>
<div class="container">
<div class="row">
<div class="col-sm-12 text-center">
<p class="copy">Copyright © 2016 Company Name
| Design: <a rel="nofollow" href="#" target="_parent">wordpress template</a></p>
</div>
</div>
</div>
</footer>
<!-- End Footer Area -->
<?php wp_footer(); ?>
</body>
</html>