-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathfooter.php
More file actions
34 lines (30 loc) · 1.1 KB
/
footer.php
File metadata and controls
34 lines (30 loc) · 1.1 KB
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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package Melany
*/
?>
</main><!-- #main -->
</section><!-- #content -->
</div><!-- #page -->
<footer id="colophon" <?php melany_footer_class(); ?> role="contentinfo">
<div class="site-info navbar-text text-center">
<small>
<?php melany_copy(); ?>
<span class="sep"> - </span>
<?php $credits = get_theme_mod('melany_footer_credits');
if ( ! empty($credits) )
echo $credits . '<span class="sep"> - </span>'; ?>
<?php printf( __( 'Powered by ', 'melany' )); ?><a href="http://wordpress.org/" class="navbar-link" target="_blank" title="<?php esc_attr_e( 'A Semantic Personal Publishing Platform', 'melany' ); ?>" rel="generator">WordPress</a>
<span class="sep"> - </span>
<?php printf( __( '%1$s theme by %2$s', 'melany' ), 'Melany', '<a href="http://www.deshack.net" class="navbar-link" target="_blank" rel="nofollow">deshack</a>' ); ?>
</small>
</div><!-- .site-info -->
</footer><!-- #colophon -->
</div><!-- #scroll -->
<?php wp_footer(); ?>
</body>
</html>