-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
61 lines (58 loc) · 1.41 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
<?php
/**
* Footer template
*
* @package NintyNine
*/
?>
<footer id="site-footer" class="bg-light p-4">
<div class="container color-gray">
<div class="row">
<section class="col-lg-4 col-md-6 col-sm-12">
Lorem ipsum dolor sit amet, consectetur adipisicing elit. Aliquid cum cupiditate, dolores doloribus eos
facere fugit in ipsum nisi, nostrum obcaecati, optio porro quidem reiciendis sunt unde ut vitae.
Aperiam.
</section>
<section class="col-lg-4 col-md-6 col-sm-12">
<?php if ( is_active_sidebar( 'sidebar-2' ) ) { ?>
<aside>
<?php dynamic_sidebar( 'sidebar-2' ); ?>
</aside>
<?php } ?>
</section>
<section class="col-lg-4 col-md-6 col-sm-12">
<ul class="d-flex">
<li class="list-unstyled">
<a href="#" title="facebook" target="_blank">
<svg width="48">
<use href="#icon-facebook"></use>
</svg>
</a>
</li>
<li class="list-unstyled">
<a href="#" title="linkedin" target="_blank">
<svg width="48">
<use href="#icon-linkedin"></use>
</svg>
</a>
</li>
<li class="list-unstyled">
<a href="#" title="twitter" target="_blank">
<svg width="48">
<use href="#icon-twitter"></use>
</svg>
</a>
</li>
</ul>
</section>
</div>
</div>
</footer>
</div>
</div>
<?php
get_template_part( 'template-parts/content', 'svgs' );
wp_footer();
?>
</body>
</html>