Ok, so I would like to post content on a fresh and new page. The trick is, I want that Content to be posted along with my new template I made. The template would consist of a static content article with blog posts to a specific category underneath. If anyone could help me figure it out, I would greatly appreciate it. Here's the code.
<?php
/*
Template Name: Example Template
*/
?>
<?php get_header(); ?>
<div id="content">
<?php include('picturearea.php') ?>
<h1>Insert static content header here.</h1>
<div id="entry">
<p>Insert static content here.</p>
</div>
<?php query_posts("category_name=example"); ?>
<?php while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<div id="entry">
<?php the_content(); ?>
</div>
<?php endwhile; ?>
<div id="navigation">
<div id="alignleft"><?php next_posts_link('« Previous Entries') ?></div>
<div id="alignright"><?php previous_posts_link('Next Entries »') ?></div>
</div>
</div> <!-- content -->
<?php get_footer(); ?>