-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer.php
51 lines (41 loc) · 973 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
41
42
43
44
45
46
47
48
49
50
51
<?php
/**
* The template for displaying the footer.
*
* Contains footer content and the closing of the
* #container and #wrapper div elements.
*
* @package WordPress
* @subpackage Uplifted
* @since 1.0.0
*/
?>
</div><!-- /#container -->
<div id="footer">
<div class="row">
<div class="small-12 large-4 columns">
<?php get_template_part('sidebar-footer1'); ?>
</div>
<div class="small-12 large-4 columns">
<?php get_template_part('sidebar-footer2'); ?>
</div>
<div class="small-12 large-4 columns">
<?php get_template_part('sidebar-footer3'); ?>
</div>
</div><!-- /.row-->
</div><!-- /#footer-->
<div id="footer-meta">
<div class="row">
<div class="large-12 columns">
<?php uplifted_theme_footer(); ?>
<?php get_template_part('menu','social'); ?>
</div>
</div>
</div><!-- /#footer-meta-->
</div><!-- /#wrapper -->
<?php wp_footer(); ?>
<script>
jQuery(document).foundation();
</script>
</body>
</html>