Oops! Something went wrong while submitting the form.
By clicking "Accept All Cookies", you agree to the storing of cookies on your device to enhance site navigation, analyse site usage, and assist in our marketing efforts.
// Primary pagination param currently used on the Provaris news archive
let page = params.get('57a14e69_page');
// Fallback in case the pagination key changes later
if (!page) {
for (const [key, value] of params.entries()) {
if (key.endsWith('_page') && /^\d+$/.test(value)) {
page = value;
break;
}
}
}
const pageNum = Number(page || 1);
if (Number.isInteger(pageNum) && pageNum > 1) {
document.title = `News & Media - Page ${pageNum} | Provaris Energy`;
}
});