Hello @cdnwhite,
Thanks for writing in!
Be advised that the “Blank, No Container | Header Footer” and other page templates were only available for the pages by default. There are no Post templates available in theme. If you want to apply it for a post, you will have to create your own custom Blank, No Container | Header Footer post template.
To resolve your issue, assuming taht you have your child theme active and ready, please follow these steps below:
1] Using Notepad or TextEdit or Sublime Text or any text editor, please create a new file in your local machine.
2] Insert the following code into that new file
<?php
// =============================================================================
// TEMPLATE NAME: Blank - No Container for Posts
// TEMPLATE POST TYPE: post
// -----------------------------------------------------------------------------
// A post template with no featured image, blank and no container.
// =============================================================================
get_header();
?>
<div class="x-main full" role="main">
<article id="post-<?php the_ID(); ?>" <?php post_class(); ?>>
<div class="entry-content">
<?php while ( have_posts() ) : the_post(); ?>
<?php the_content(); ?>
<?php x_link_pages(); ?>
<?php endwhile; ?>
</div>
</article>
</div>
<?php get_footer(); ?>
3] Save the file named as post-template.php
4] Upload this file to your server in the child theme’s folder wp-content/themes/x-child/
When you edit a post, you should be seeing a Post Template that is named as “Blank - No Container for Posts”.
We would love to know if this has worked for you. Thank you.