<?php
/**
* Template name: Page Name // page-abc.php 
* Template Post Type: page
*/
if( !defined('ABSPATH') ){ exit(); }
// get_header(); or get_header('abc'); // header-abc.php
if( have_posts() ) : while( have_posts() ) : the_post();
    the_title('<h1>', '</h1>');
    the_content(); // echo get_the_content();
endwhile;endif;
// get_template_part('path/in/theme.php');
get_sidebar();
get_footer();
?>