-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathfooter.php
More file actions
80 lines (75 loc) · 2.34 KB
/
footer.php
File metadata and controls
80 lines (75 loc) · 2.34 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
<?php
/**
* Footer.
*
* @author Alejandor Mostajo
* @license MIT
* @package Amostajo\DevTemplates
* @version 1.0.0
*/
use DevTemplates\Main as Configuration;
?>
<footer class="text-center">
<div class="footer-above">
<div class="container">
<div class="row">
<div class="footer-col col-sm-4">
<h3>View on Github</h3>
<ul class="list-inline">
<li>
<a href="https://github.com/amostajo/wordpress-dev-theme" class="btn-social btn-outline">
<i class="fa fa-fw fa-github"></i>
</a>
</li>
</ul>
</div>
<div class="footer col-sm-4">
<h3>Support us</h3>
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top">
<input type="hidden" name="cmd" value="_s-xclick">
<input type="hidden" name="hosted_button_id" value="GUPTJ4KP5YMG4">
<input type="image"
src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif"
border="0"
name="submit"
alt="PayPal - The safer, easier way to pay online!"
>
<img alt=""
border="0"
src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif"
width="1"
height="1"
>
</form>
</div>
<?php if ( has_nav_menu( Configuration::MENU_FOOTER ) ) { ?>
<div class="footer-col col-sm-4">
<h3>Links</h3>
<?php theme()->nav( Configuration::MENU_FOOTER ) ?>
</div>
<?php } ?>
</div>
</div>
</div>
<div class="footer-below">
<div class="container">
<div class="row">
<div class="col-lg-12">
<span><?php echo date( 'Y' ) ?> </span>
<span>Code licensed under <a href="http://opensource.org/licenses/mit-license.html">MIT License</a>. </span>
<span>Documentation licensed under <a href="http://creativecommons.org/licenses/by/3.0/">CC BY 3.0</a>.</span>
<div>Template by <a href="http://startbootstrap.com/template-overviews/freelancer/">Start Bootstrap </a></div>
</div>
</div>
</div>
</div>
</footer>
<!-- Scroll to Top Button (Only visible on small and extra-small screen sizes) -->
<div class="scroll-top page-scroll visible-xs visible-sm">
<a class="btn btn-primary" href="#page-top">
<i class="fa fa-chevron-up"></i>
</a>
</div>
<?php wp_footer() ?>
</body>
</html>