mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2024-12-26 14:59:14 +01:00
39 lines
796 B
JavaScript
39 lines
796 B
JavaScript
'use strict';
|
|
|
|
module.exports = {
|
|
url: 'https://lumen.netlify.com',
|
|
title: 'Blog by John Doe',
|
|
subtitle: 'Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu.',
|
|
copyright: '© All rights reserved.',
|
|
disqusShortname: '',
|
|
postsPerPage: 4,
|
|
googleAnalyticsId: 'UA-73379983-2',
|
|
menu: [
|
|
{
|
|
label: 'Articles',
|
|
path: '/'
|
|
},
|
|
{
|
|
label: 'About me',
|
|
path: '/about'
|
|
},
|
|
{
|
|
label: 'Contact me',
|
|
path: '/contacts'
|
|
}
|
|
],
|
|
author: {
|
|
name: 'John Doe',
|
|
photo: '/photo.jpg',
|
|
bio: 'Pellentesque odio nisi, euismod in, pharetra a, ultricies in, diam. Sed arcu.',
|
|
contacts: {
|
|
email: '#',
|
|
telegram: '#',
|
|
twitter: '#',
|
|
github: '#',
|
|
rss: '#',
|
|
vkontakte: '#'
|
|
}
|
|
}
|
|
};
|