Ejemplo n.º 1
0
 * The template for displaying the footer.
 *
 * Contains the closing of the id=main div and all content after
 *
 * @package Alien Ship
 */
?>

	</div><!-- #content -->

	<?php 
/**
 * Displays the footer widgets.
 * @see inc/template-tags.php
 */
alienship_do_sidebar('footer');
?>

</div><!-- #page -->

<footer class="site-footer" id="colophon" role="contentinfo">
	<div class="container">
		<div class="row">
			<div class="bottom-navigation col-sm-6 col-sm-push-6">
				<?php 
if (has_nav_menu('bottom')) {
    wp_nav_menu(array('theme_location' => 'bottom', 'container' => false, 'menu_class' => 'footer-nav mobile'));
}
?>
			</div><!-- .bottom-navigation -->
			<div class="footer-text col-sm-6 col-sm-pull-6">
Ejemplo n.º 2
0
<?php

/**
 * Template Name: Hero
 * The template for displaying full-width Hero pages.
 *
 * @package Alien Ship
 */
get_header('hero');
?>
	<div class="container">
		<?php 
while (have_posts()) {
    the_post();
    do_action('alienship_loop_before');
    get_template_part('/templates/parts/content', 'heropage');
    do_action('alienship_loop_after');
}
?>
	</div><!-- /container -->
</div><!-- #content -->

<div id="hero-widgets-container" class="widget widget-area container" role="complementary">
	<?php 
alienship_do_sidebar('herowidgets');
?>
</div>


<?php 
get_footer('hero');