Page Template

<?php
/*
Template Name: Resume
*/
?>
<?php get_header(); ?>

<div class="content">
<div id="primary">
<div id="notices"></div>
<a name="startcontent" id="startcontent"></a>

<div id="current-content" class="hfeed">

<?php while (have_posts()): the_post(); ?>
<div id="post-<?php the_ID(); ?>" class="<?php k2_post_class(); ?>">

<div class="page-head">
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title='<?php printf( __('Permanent Link to "%s"','k2_domain'), wp_specialchars(strip_tags(the_title('', '', false)),1) ); ?>'><?php the_title(); ?></a></h2>
<?php edit_post_link(__('Edit','k2_domain'), '<span class="entry-edit">','</span>'); ?>
</div>

<div class="entry-content">
<?php the_content(); ?>

<?php link_pages('<p><strong>'.__('Pages:','k2_domain').'</strong> ', '</p>', 'number'); ?>
</div>

</div> <!-- #post-ID -->
<?php endwhile; ?>

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

<div id="dynamic-content"></div>
</div> <!-- #primary -->

</div> <!-- .content -->

<?php get_footer(); ?>

source

Leave a Reply