Hi there ,
just try figure out this code below, it should help:
<?php
$args = array(
'post_type' => 'art', //custom post type name
'orderby' => 'title',
'order' => 'ASC'
);
$the_query = new WP_Query( $args );
?>
<?php if ( have_posts() ) : while ( $the_query->have_posts() ) : $the_query->the_post(); ?>
<?php get_template_part( 'content', 'art' ); ?>
<?php endwhile; endif; ?>
This is part of copied page.php with changed posts section. File name in this case is art.php
I hope it help
Best Regards