-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathfooter.php
37 lines (28 loc) · 904 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
*
* Contains the closing of the #page and #content div and any content after.
*
* @link https://developer.wordpress.org/themes/basics/template-files/#template-partials
* @package Ignition
* @since 1.0
* @version 1.0
*/
?>
</div><!-- #site-content -->
<footer id="colophon" class="site-footer" role="contentinfo">
<?php ign_template('src/parts/global/site-footer.php'); ?>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php
$sidebar_icon = ign_get_config( 'sidebar_icon', 'sidebar-icon' );
if($sidebar_icon == 'sidebar-icon'){
$sidebar_icon = "<span class='$sidebar_icon'></span>";
}
?>
<button aria-label="Toggle Right Panel" data-toggle="open" data-target="#panel-right" aria-expanded="false" class="panel-right-toggle"><?php echo $sidebar_icon; ?></button>
</div><!-- .site-container -->
<?php wp_footer(); ?>
</body>
</html>