I understand your point. JA Titan uses infinite scroll for this layout, but you can easily disable it to bring back the default pagination.
For example, in the podcast layout, edit the file:
/templates/ja_titan/html/com_content/category/podcast.php
Then remove or comment out the following snippet:
<!-- Show load more use infinitive-scroll -->
<?php
HTMLHelper::script('templates/ja_titan/js/jquery.infinitescroll.js');
HTMLHelper::script('templates/ja_titan/js/infinitive-paging.js');
$mode = 'manual';
if ($this->pagination->pagesTotal > 1) :
?>
<script>
/*Hide the pagination*/
$(".pagination-wrap").css('display', 'none');
$(".pagination-wrap").removeClass('d-flex');
</script>
<div class="bottom-actions text-center">
<div id="infinity-next" class="btn btn-primary hide" data-limit="<?php echo $this->pagination->limit; ?>" data-url="<?php echo Uri::current(); ?>" data-mode="<?php echo $mode ?>" data-pages="<?php echo $this->pagination->pagesTotal; ?>" data-finishedmsg="<?php echo Text::_('TPL_LOADMORE_END_MSG'); ?>">
<?php echo Text::_('TPL_LOAD_MORE') ?>
<span class="loader"></span>
</div>
</div>
<?php else : ?>
<div class="infinity-wrap">
<div id="infinity-next" class="btn btn-outline-primary disabled" data-pages="1"><?php echo Text::_('TPL_LOADMORE_END_MSG'); ?></div>
</div>
<?php endif; ?>
