32 lines
867 B
PHP
32 lines
867 B
PHP
<?php
|
|
/**
|
|
* Template Name: Link Template
|
|
* Description: This is the template for links
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Eleven
|
|
* @since Twenty Eleven 1.0
|
|
*/
|
|
|
|
get_header(); ?>
|
|
|
|
<div id="primary">
|
|
<div id="content" role="main">
|
|
<?php while ( have_posts() ) : the_post(); ?>
|
|
|
|
<?php get_template_part( 'content', 'page' ); ?>
|
|
|
|
<?php comments_template( '', true ); ?>
|
|
|
|
<?php endwhile; // end of the loop. ?>
|
|
<div class="widget-area" role="complementary">
|
|
<?php if ( ! dynamic_sidebar( 'sidebar-2' ) ) : ?>
|
|
<?php
|
|
the_widget( 'Twenty_Eleven_Ephemera_Widget', '', array( 'before_title' => '<h3 class="widget-title">', 'after_title' => '</h3>' ) );
|
|
?>
|
|
<?php endif; // end sidebar widget area ?>
|
|
</div><!-- .widget-area -->
|
|
</div><!-- #content -->
|
|
</div><!-- #primary -->
|
|
|
|
<?php get_footer(); ?>
|