mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-27 07:18:17 +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
|
||
|
}
|
||
|
};
|