-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
77 lines (74 loc) · 2.32 KB
/
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
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
<!--footer-->
<footer>
<div class="container">
<div class="row">
<div class="col-lg-4 footer-grid-agileits-w3ls text-left">
<h3>About US</h3>
<p><?php getshortdescription("titles"); ?></p>
<div class="read">
<a href="about.php" class="btn btn-primary read-m">Read More</a>
</div>
</div>
<div class="col-lg-4 footer-grid-agileits-w3ls text-left">
<div class="tech-btm">
<h3>Popular Posts</h3>
<?php getpopularposts("page_hits"); ?>
</div>
</div>
<!-- subscribe -->
<div class="col-lg-4 subscribe-main footer-grid-agileits-w3ls text-left">
<h2>Signup to our newsletter</h2>
<div class="subscribe-main text-left">
<div class="subscribe-form">
<form action="#" method="post" class="subscribe_form">
<input class="form-control" type="email" placeholder="Enter your email..." required="">
<button type="submit" class="btn btn-primary submit">Submit</button>
</form>
<div class="clearfix"> </div>
</div>
<p>We respect your privacy.No spam ever!</p>
</div>
<!-- //subscribe -->
</div>
</div>
<!-- footer -->
<div class="footer-cpy text-center">
<div class="footer-social">
<div class="copyrighttop">
<ul>
<li class="mx-3">
<a class="facebook" href="<?php getlinks("links","facebook");?>">
<i class="fab fa-facebook-f"></i>
<span>Facebook</span>
</a>
</li>
<li>
<a class="facebook" href="<?php getlinks("links","twitter");?>">
<i class="fab fa-twitter"></i>
<span>Twitter</span>
</a>
</li>
<li class="mx-3">
<a class="facebook" href="<?php getlinks("links","googleplus");?>">
<i class="fab fa-google-plus-g"></i>
<span>Google+</span>
</a>
</li>
<li>
<a class="facebook" href="<?php getlinks("links","pinterest");?>">
<i class="fab fa-pinterest-p"></i>
<span>Pinterest</span>
</a>
</li>
</ul>
</div>
</div>
<div class="w3layouts-agile-copyrightbottom">
<p> Responsive Blog Site <?php $current=date("Y"); print_r($current);?> | Brought To You by
<a href="http://code-projects.org/">Code-Projects</a>
</p>
</div>
</div>
<!-- //footer -->
</div>
</footer>