nextpre
Next Previous Post Block (Node or Page Pagination) is a Drupal module that lets visitors move to the next or previous post directly from a node page, without returning to the main listing page. It is designed for use with specific content types, so developers can enable pagination only where it is needed.
This module is useful when a site has large content collections, such as blogs, articles, or news posts. For example, if a visitor is reading Blog 56, they can use the next and previous links to move between blog posts seamlessly.
Installation
Install the module like any other Drupal module with Composer: composer require drupal/nextpre. Drupal projects commonly use composer require drupal/[module] to add a module dependency.
Example
Suppose you have a Blog content type with 100 nodes. When a visitor opens Blog 56, the module can display navigation links on that detail page so the visitor can jump to Blog 55 or Blog 57 without going back to the blog listing.
Install it like any other module
composer require drupal/nextpre
Similar projects
Difference from Flippy
Flippy provides its settings at the content-type level, while Nextpre provides configuration in a block. Flippy generates a unique pager for each content type, whereas Nextpre is configured one content type per block, so using it for another content type requires creating another block with separate settings.
Next Previous Post Block (Node or Page Pagination) is a Drupal module that adds next and previous navigation on node detail pages for selected content types. It helps visitors browse content continuously, such as moving between blog posts, without returning to the main listing page.