forked from mindctrl/alienship
-
Notifications
You must be signed in to change notification settings - Fork 0
/
page.php
33 lines (28 loc) · 1.02 KB
/
page.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
<?php
/**
* The template is for displaying all pages.
*
* This is the template that displays all pages by default.
* Please note that this is the WordPress construct of pages
* and that other 'pages' on your WordPress site will use a
* different template.
*
* @package Alien Ship
* @since Alien Ship 0.1
*/
get_header(); ?>
<!-- Main -->
<?php do_action( 'alienship_content_before' ); ?>
<div class="row-fluid">
<div id="content" class="<?php echo apply_filters( 'alienship_content_container_class', 'span9' ); ?>">
<?php while ( have_posts() ) : the_post(); ?>
<?php do_action( 'alienship_loop_before' ); ?>
<?php get_template_part( '/inc/parts/content', 'page' ); ?>
<?php do_action( 'alienship_loop_after' ); ?>
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
<?php do_action( 'alienship_content_after' ); ?>
</div><!-- #content -->
<?php get_sidebar(); ?>
</div><!-- .row-fluid -->
<?php get_footer(); ?>