-
Notifications
You must be signed in to change notification settings - Fork 272
/
footer.php
37 lines (26 loc) · 927 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
<?php
/**
* The template for displaying the footer.
*
* Comtains closing divs for header.php.
*
* For more info: https://developer.wordpress.org/themes/basics/template-files/#template-partials
*/
?>
<footer class="footer" role="contentinfo">
<div class="inner-footer grid-x grid-margin-x grid-padding-x">
<div class="small-12 medium-12 large-12 cell">
<nav role="navigation">
<?php joints_footer_links(); ?>
</nav>
</div>
<div class="small-12 medium-12 large-12 cell">
<p class="source-org copyright">© <?php echo date('Y'); ?> <?php bloginfo('name'); ?>.</p>
</div>
</div> <!-- end #inner-footer -->
</footer> <!-- end .footer -->
</div> <!-- end .off-canvas-content -->
</div> <!-- end .off-canvas-wrapper -->
<?php wp_footer(); ?>
</body>
</html> <!-- end page -->