forked from mindctrl/alienship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
footer-hero.php
executable file
·35 lines (33 loc) · 1.25 KB
/
footer-hero.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
<?php
/**
* The template for displaying the footer.
*
* Contains the closing of the id=main div and all content after
*
* @package Alien Ship
* @since Alien Ship 0.1
*/
?>
<?php do_action( 'alienship_footer_before' ); ?>
<footer class="colophon" id="colophon" role="contentinfo">
<?php do_action( 'alienship_footer_inside ' ); ?>
<div class="container-fluid">
<div class="row-fluid">
<div class="span6">
<?php edit_post_link( __( 'Edit page', 'alienship' ), '<span class="edit-link"><i class="icon-pencil"></i> ', ' - </span>' ); ?>
<?php if ( of_get_option('alienship_custom_footer_toggle') ) {
echo '' . of_get_option('alienship_custom_footer_text') . '';
} else {
echo 'Copyright © ' . date('Y') . ' ' . get_bloginfo('name') . '. All Rights Reserved.'; } ?>
</div><!-- span6 -->
<div class="span6">
<?php if ( has_nav_menu( 'bottom' ) ) { wp_nav_menu(array('theme_location' => 'bottom', 'container' => false, 'menu_class' => 'footer-nav mobile')); } ?>
</div>
</div><!-- row-fluid -->
</div><!-- container-fluid -->
</footer><!-- #colophon -->
<?php do_action( 'alienship_footer_after' ); ?>
<?php wp_footer(); ?>
<?php do_action( 'alienship_footer' ); ?>
</body>
</html>