Links page template help needed?
i have created a page called
http://www.zaukjobs.com/links/
i have created link categories and now want to asign a linkpagetemplate to this page so that it shows the links like my other site at
http://www.studentsinsport.com/?page_id=236
i thought that if i downloaded the page.php file and inserted some code i could then upload this template and then asign this template to my links page and it wiuld show the links under each link category.
i have done something wrong somewhere...
can someone please help me edit the linkp[agetemplate so that the link page works?
many thanks
Efrem
This is the linkpagetemplate file i have created...
<?php
/*
Template Name: Links Template
*/
?>
<?php get_header(); ?>
<div class="section">
<div class="section_content">
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(); ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.', 'appthemes'); ?></p>
<?php endif; ?>
<div class="clear"></div>
</div>
</div>
<?php if (have_posts()) : ?>
<div class="post">
<div id="archivebox">
<h2>Links</h2>
</div><!--/archivebox-->
<?php while (have_posts()) : the_post(); ?>
<div class="post-alt blog" id="post-<?php the_ID(); ?>">
<div class="entry">
<?php wp_list_bookmarks(''); ?>
</div>
</div>
<?php if (comments_open()) comments_template(); ?>
<div class="clear"></div>
</div><!-- end main content -->
<?php if (get_option('jr_show_sidebar')!=='no') { ?>
<div id="sidebar">
<?php get_sidebar('page'); ?>
</div><!-- end sidebar -->
<?php } ?>
<?php get_footer(); ?>