Below is my code with the template. I have included pagination but not working.
<?php
/*
Template Name: bydate
*/
?>
<?php get_header(); ?>
<div id="primary" class="content-area clear">
<main id="main" class="site-main clear">
<div id="recent-content" class="content-list">
<?php
$args = array(
'posts_per_page' => 2,
'orderby' => 'endon',
'order' => 'ASC',
'meta_type' => 'DATE',
'meta_key' => 'endon',
);
$news = new WP_Query($args);
?>
<?php
if ( have_posts() ) :
/* Start the Loop */
while ($news->have_posts()) : $news->the_post();
get_template_part('template-parts/content', 'list');
endwhile;
else :
get_template_part( 'template-parts/content', 'none' );
endif;
?>
</div><!-- #recent-content -->
</main><!-- .site-main -->
<?php get_template_part( 'template-parts/pagination', '' ); ?>
</div><!-- #primary -->
<?php get_sidebar(); ?>
<?php get_footer(); ?>
thank's