This all should be pretty simple, which is why I'm kicking myself here. I am simply trying to make a Contact page for my site. I've made a contact.php file which has basically the same layout as the main index.php file, and consists of:
<?php
/*
Template Name: Contact Page
*/
?>
<?php get_header(); ?>
<?php include('leftsidebar.php'); ?>
<div id="main-content" class="contact">
<div class="maintitle"><?php the_title(); ?></div>
<?php the_content(); ?>
</div>
<?php include('rightsidebar.php'); ?>
<?php get_footer(); ?>
And then I write a page, give the Contact Page Template, and publish it. When I go to my Contact page, everything looks fine, and it even inserts the Title of the Page I wrote, but the content is conspicuously absent. Just...nothingness.
I'm sure I'm an idiot, but why?