I did it!
For those who want to create normal page template. Go into your cpanel, folder under your themes folder (wp-content/themes/mediaphase-lite) , create a php page. I called mine basicpage.php
then enter this:
<?php
/*
Template Name: Basic Page
*/
?>
<?php
get_header();
get_template_part( 'inc/partials/content', 'inner-navigation' );
?>
<div id="main">
<div class="wrap">
<?php
get_sidebar();?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php
/*
Template Name: Basic Page
*/
?>
<?php
get_header();
get_template_part( 'inc/partials/content', 'inner-navigation' );
?>
<div id="main">
<div class="wrap">
<?php
get_sidebar();?>
<?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
<?php the_content('
Read the rest of this page ?</p>'); ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
<?php endwhile; else: ?>
<p><?php _e('Sorry, no posts matched your criteria.'); ?></p>
<?php endif; ?>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
</div>
<?php
get_template_part( 'inc/partials/content', 'home-bottom-ribbon' );
get_template_part( 'inc/partials/content', 'home-logos' );
get_footer();
[Moderator Note: Please post code & markup between backticks or use the code button. Your posted code may now have been damaged by the forum’s parser.]