-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpage-home-sidebar.php
49 lines (34 loc) · 1.62 KB
/
page-home-sidebar.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
<?php
/*
Template Name: Home Page - Sidebar
*/
/**
* The template for displaying home landing page with sidebar.
*
* @package symbiostock
* @since symbiostock 1.0
*/
get_header(); ?>
<div class="home row-fluid">
<div id="primary" class="content-area span8">
<div id="content" class="site-content" role="main">
<?php while ( have_posts() ) : the_post(); ?>
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<header class="entry-header">
</header><!-- .entry-header -->
<div class="entry-content">
<?php the_content(); ?>
<?php wp_link_pages( array( 'before' => '<div class="page-links">' . __( 'Pages:', 'symbiostock' ), 'after' => '</div>' ) ); ?>
<?php edit_post_link( __( 'Edit', 'symbiostock' ), '<span class="edit-link">', '</span>' ); ?>
</div><!-- .entry-content -->
</article><!-- #post-<?php the_ID(); ?> -->
<?php comments_template( '', true ); ?>
<?php endwhile; // end of the loop. ?>
</div><!-- #content .site-content -->
<?php dynamic_sidebar( 'Featured Posts (Below Content)' ) ?>
</div><!-- #primary .content-area -->
<div class="span4">
<?php get_sidebar(); ?>
</div>
</div>
<?php get_footer(); ?>