-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathsidebar.php
More file actions
19 lines (15 loc) · 721 Bytes
/
Copy pathsidebar.php
File metadata and controls
19 lines (15 loc) · 721 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<div class="sidebar">
<?php dynamic_sidebar( 'sidebar' ); ?>
<footer class="footer" role="contentinfo">
<p>Theme <a href="http://blog.dimpurr.com/slackview">Slackview</a> by <a href="http://dimpurr.com">Dimpurr</a></p>
<p>Proudly powered by <a href="http://wordpress.org">WordPress</a></p>
<script src="<?php if ($_SERVER['HTTPS'] != "on")
{echo "http://lib.sinaapp.com/js/jquery/2.0/jquery.min.js";}
else
{echo "https://lib.sinaapp.com/js/jquery/2.0/jquery.min.js";} ?>">
</script>
<script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/jquery.sticky.js"></script>
<script src="<?php echo esc_url( get_template_directory_uri() ); ?>/js/script.js"></script>
</footer>
</div>
<?php wp_footer(); ?>