grav-plugin-pagination icon indicating copy to clipboard operation
grav-plugin-pagination copied to clipboard

Grav Pagination Plugin

Results 18 grav-plugin-pagination issues
Sort by recently updated
recently updated
newest added

I am having nearly 60 posts, and the pagination ul at the bottom shows 9 pages. While this doesn't sound like a lot, but when I viewed the blog on...

The plugin checks for pagination variable directly and ignores the twig syntax: `if ($page && ($page->value('header.content.pagination') || $page->value('header.pagination'))) {` So if you have something like that in a twig template:...

When doing pagination using the Twig function `paginate()`, the plugin's CSS is not being added as an asset. This is probably, because onPageInitialized() checks if the page header has `header.content.pagination`...

On a twig template i use the '[Collection Object Methods](https://learn.getgrav.org/content/collections#collection-object-methods)' to difine a collection like it states in the GRAV documentation: {% set collection = page.collection({ 'items': '@self.children', 'pagination': true,...

Hi pagination error my header ``` --- title: Home body_classes: 'title-center title-h1h2' content: items: - '@self.children' limit: 16 order: by: date dir: desc pagination: true url_taxonomy_filters: true --- ``` I...

### i've created feature modular page and add some of data using grav admin theme tabs my markdown file data is below. > title: Features > media_order: 'pexels-photo-1040157.jpeg,pexels-photo-1509428.jpeg,pexels-photo-2076622.jpeg' > published:...

The previous 'unfix' of pagination urls unfixed my application :-). Since the resulting urls are in fact malformed when base_url contains a scheme id and some browsers don't like this,...

For an article index page that lists blog posts, I was using: ``` twig {% for article of page.collection %} {# Show link to article #} {% endfor %} {%...

enhancement