-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
81 lines (78 loc) · 5.33 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
78
79
80
81
<footer class="footer pt-10 pb-5 mt-auto bg-dark footer-dark">
<div class="container">
<div class="row">
<div class="col-lg-3">
<div class="footer-brand">iDevice</div>
<div class="mb-3">Build better websites</div>
<div class="icon-list-social mb-5">
<a target="_blank" href="https://github.com/found-ation"><i class="fab fa-github-alt text-white fa-7x"></i></a>
</div>
</div>
<div class="col-lg-9">
<div class="row">
<div class="col-lg-3 col-md-6 mb-5 mb-lg-0">
<div class="text-uppercase-expanded text-xs mb-4 text-white lead">Products</div>
<ul class="list-unstyled mb-0">
<?php
$homepageEvents = new WP_Query(array(
'posts_per_page' => 8,
'post_type' => 'downloads'
));
while($homepageEvents->have_posts()) {
$homepageEvents->the_post(); ?>
<li class="mb-2"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php } ?>
</ul>
</div>
<div class="col-lg-3 col-md-6 mb-5 mb-lg-0">
<div class="text-uppercase-expanded text-xs mb-4 text-white lead">Documents</div>
<ul class="list-unstyled mb-0">
<?php
$homepageEvents = new WP_Query(array(
'posts_per_page' => 4,
'post_type' => 'documents'
));
while($homepageEvents->have_posts()) {
$homepageEvents->the_post(); ?>
<li class="mb-2"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php } ?>
</ul>
</div>
<div class="col-lg-3 col-md-6 mb-5 mb-md-0">
<div class="text-uppercase-expanded text-xs mb-4 text-white lead">Includes</div>
<ul class="list-unstyled mb-0">
<li class="mb-2"><a href="javascript:void(0);">Utilities</a></li>
<li class="mb-2"><a href="javascript:void(0);">Components</a></li>
<li class="mb-2"><a href="javascript:void(0);">Layouts</a></li>
<li class="mb-2"><a href="javascript:void(0);">Code Samples</a></li>
<li class="mb-2"><a href="javascript:void(0);">Products</a></li>
<li class="mb-2"><a href="javascript:void(0);">Affiliates</a></li>
<li><a href="javascript:void(0);">Updates</a></li>
</ul>
</div>
<div class="col-lg-3 col-md-6">
<div class="text-uppercase-expanded text-xs mb-4 text-white lead">Legal</div>
<ul class="list-unstyled mb-0">
<?php
$homepageEvents = new WP_Query(array(
'posts_per_page' => 8,
'post_type' => 'legal'
));
while($homepageEvents->have_posts()) {
$homepageEvents->the_post(); ?>
<li class="mb-2"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></li>
<?php } ?>
</ul>
</div>
</div>
</div>
</div>
<hr class="my-5">
<div class="row align-items-center">
<div class="col-md-6 lead">Copyright © <?php bloginfo( 'name' ); ?> 2019 - <?php the_time('Y'); ?></div>
</div>
</div>
</footer>
<?php wp_footer(); ?>
</body>
</html>