I created my own Blank Page template that seems to work just fine. Here’s the code:
<?php
/**
* Template Name: Blank Page
*
* A blank custom page template.
*
* The "Template Name:" bit above allows this to be selectable
* from a dropdown menu on the edit page screen.
*
*/
?>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
<?php endif; ?>
Just put that in a file with a name like: “template-blank.php” , and put that file in the “wp-content/themes/tempera/templates” folder on your server.
Seems to do the job and the content can be styled anyway you like using the WordPress editor.