wp_blog/wp-content/themes/Bootstrap-for-WordPress-master/footer.php

34 lines
849 B
PHP
Raw Permalink Normal View History

2020-01-02 23:15:16 +07:00
<?php
/**
* The template for displaying the footer.
*
*/
?>
<footer id="footer" role="contentinfo">
<p>
&copy; <?php echo date('Y'); ?> <a href="<?php echo home_url( '/' ); ?>" title="<?php echo esc_attr( get_bloginfo( 'name', 'display' ) ); ?>" rel="home"><?php bloginfo( 'name' ); ?></a>
</p>
</footer><!-- footer -->
</div><!-- #main -->
<?php
/* Always have wp_footer() just before the closing </body>
* tag of your theme, or you will break many plugins, which
* generally use this hook to reference JavaScript files.
*/
wp_footer();
?>
<script src="<?php bloginfo( 'template_url' ); ?>/js/jquery.js"></script>
<script src="<?php bloginfo( 'template_url' ); ?>/js/bootstrap-collapse.js"></script>
<script src="<?php bloginfo( 'template_url' ); ?>/js/bootstrap-dropdown.js"></script>
</body>
</html>