You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Sequence of pages where each one can have a previous sibling and a next sibling should implement HTML elements <link rel="prev" href="..." /> and <link rel="next" href="..." /> to indicate the relationship among them.
Search engines use this information to consolidate indexing properties and send users to the most relevant page (typically the first page of the series).
We propose to implement this in both Plone 4.3 and Plone 5.0.
At my first attempt with this issue, I try to add a new viewlet at plone.batching package to try to use the batch object to get when should I add the next and prev links in the head. After reading some code I saw that I could not share the batch object between the navigation view (or macro) and the viewlet.
Than I try to fill the head_slot in the navigation macro, and it broke the folder_contents view because it could not insert the main_template macro in the folder_contents view.
The last attempt was to set a request parameter in the view and try to get it into the viewlet.. and it didn't work too. the viewlet is evaluated first and the request still didn't have the variables set.
My other idea was to use a transform, like we do into collective.lazysizes, but didn't try it yet.
Sequence of pages where each one can have a previous sibling and a next sibling should implement HTML elements
<link rel="prev" href="..." />
and<link rel="next" href="..." />
to indicate the relationship among them.Search engines use this information to consolidate indexing properties and send users to the most relevant page (typically the first page of the series).
We propose to implement this in both Plone 4.3 and Plone 5.0.
More information:
The text was updated successfully, but these errors were encountered: