get_template_part() to render single page Theme

Something like this if you want to call mytemplate.php:

get_template_part( 'template');

Or something like this if you want to call content-mytemplate.php:

get_template_part( 'content', 'mytemplate' );

I hope that this will help you.