-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfooter.php
42 lines (37 loc) · 1.1 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
<?php
$ef_options = EF_Event_Options::get_theme_options();
?>
<footer>
<div class="container">
<div class="row row-sm">
<?php dynamic_sidebar('footer'); ?>
</div>
</div>
<div class="credits">
<?php
if ( isset( $ef_options['ef_footer_content'] ) ) {
echo stripslashes( $ef_options['ef_footer_content'] );
}
?>
<div class="footer-tyler-event">
Powered by <a href="http://eventmanagerblog.com/event-wordpress-theme-tyler">Tyler WordPress Theme</a>
</div>
</div>
</footer>
<?php wp_footer(); ?>
<!-- SCROLL UP BTN -->
<a href="#" id="scroll-up"><?php _e('UP', 'tyler'); ?></a>
<!-- The Gallery as lightbox dialog, should be a child element of the document body -->
<div id="blueimp-gallery" class="blueimp-gallery blueimp-gallery-controls">
<div class="slides"></div>
<h3 class="title"></h3>
<a class="prev">‹</a>
<a class="next">›</a>
<a class="close">×</a>
<a class="play-pause"></a>
<ol class="indicator"></ol>
</div>
<!-- backdrop -->
<div id="backdrop"></div>
</body>
</html>