mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-27 07:18:17 +01:00
23 lines
326 B
JavaScript
23 lines
326 B
JavaScript
|
'use strict';
|
||
|
|
||
|
module.exports = {
|
||
|
markdownRemark: {
|
||
|
html: '<p>test</p>',
|
||
|
fields: {
|
||
|
tagSlugs: [
|
||
|
'/test_0',
|
||
|
'/test_1'
|
||
|
]
|
||
|
},
|
||
|
frontmatter: {
|
||
|
date: '2016-09-01',
|
||
|
description: 'test',
|
||
|
title: 'test',
|
||
|
tags: [
|
||
|
'test_0',
|
||
|
'test_1'
|
||
|
]
|
||
|
}
|
||
|
}
|
||
|
};
|