Standard Wordpress page.
<?php get_header(); ?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<!--- Page content goes here -->
<?php the_title(); ?>
<?php the_contnet(); ?>
<?php endwhile; else: ?>
<?php endif; ?>
<?php get_footer(); ?>