mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-26 23:09:16 +01:00
14 lines
220 B
JavaScript
14 lines
220 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
pageContext: {
|
|
tag: 'test',
|
|
category: 'test',
|
|
currentPage: 1,
|
|
prevPagePath: '/page/1',
|
|
nextPagePath: '/page/3',
|
|
hasNextPage: true,
|
|
hasPrevPage: true
|
|
}
|
|
};
|