if you only need a blank template you can simply create one using any theme by creating additional template with combination of header.php and footer.php file plus defualt wordpress loop
<?php
/**
* Template Name: NAME
*
*/
get_header(); ?>
YOUR STUFF HERE
<?php get_footer(); ?>