mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-26 14:59:14 +01:00
24 lines
346 B
JavaScript
24 lines
346 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
markdownRemark: {
|
|
id: 'test-123',
|
|
html: '<p>test</p>',
|
|
fields: {
|
|
tagSlugs: [
|
|
'/test_0',
|
|
'/test_1'
|
|
]
|
|
},
|
|
frontmatter: {
|
|
date: '2016-09-01',
|
|
description: 'test',
|
|
title: 'test',
|
|
tags: [
|
|
'test_0',
|
|
'test_1'
|
|
]
|
|
}
|
|
}
|
|
};
|