-
Notifications
You must be signed in to change notification settings - Fork 1
/
footer.php
40 lines (32 loc) · 1.13 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
</div><!-- #main -->
<div class="modal fade in" id="siteMapmodal" tabindex="-1" role="dialog" aria-labelledby="siteMapLabel" aria-hidden="false">
<div class="modal-dialog">
<div class="modal-content">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal"><span aria-hidden="true">X</span><span class="sr-only">Close</span></button>
<h2 class="modal-title" id="myModalLabel"><?PHP echo get_bloginfo ( 'name' ); ?></h2>
</div>
<div class="modal-body">
<?PHP
if(get_theme_mod("scan_page")=="on"):
$oeru_theme = get_option( 'oeru_theme' );
echo $oeru_theme['scan_page_html'];
else:
if(get_option('oeru_theme_scan_page_html')):
echo get_option( 'oeru_theme_scan_page_html');
endif;
endif;
?>
</div>
</div>
</div>
</div>
<footer id="colophon" class="site-footer" role="contentinfo">
<div class="entry-header container">
<?php get_sidebar("sidebar-1"); ?>
</div>
</footer><!-- #colophon -->
</div><!-- #page -->
<?php wp_footer(); ?>
</body>
</html>