You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
73 lines
2.0 KiB
73 lines
2.0 KiB
// @ts-check
|
|
|
|
/**
|
|
* The blog's configuration. Start here after cloning the repo.
|
|
* Hovering over the properties (in an editor like VSCode) will provide additional information about them.
|
|
*/
|
|
|
|
/** @type {import('./types').BlogConfig} */
|
|
const blogConfig = {
|
|
url: 'https://edu.krasnikov.pro',
|
|
title: '‹edu/блог›',
|
|
titleParts: ['edu', 'blog'],
|
|
author: 'Красников Павел',
|
|
pages: {
|
|
home: {
|
|
title: 'Блог Красникова Павла',
|
|
description:
|
|
"Меня зовут Павел, и я преподаватель пишу про робототехнику, программирование, информатику..",
|
|
},
|
|
posts: {
|
|
url: '/posts',
|
|
title: 'Posts',
|
|
description:
|
|
"Все мои записи в блоге. Я пишу о робототехнике и других темах, которые меня интересуют",
|
|
},
|
|
informatics: {
|
|
url: '/posts/informatics',
|
|
title: 'Posts',
|
|
description:
|
|
"Все мои записи в блоге. Я пишу о робототехнике и других темах, которые меня интересуют",
|
|
},
|
|
},
|
|
theme: {
|
|
accentColor: {
|
|
light: '#be123c',
|
|
dark: '#fda4af',
|
|
},
|
|
codeBlockTheme: {
|
|
light: 'github-light',
|
|
dark: 'github-dark',
|
|
},
|
|
},
|
|
giscus: {
|
|
repo: 'kfirfitousi/blg',
|
|
repoId: 'R_kgDO',
|
|
category: 'Comments',
|
|
categoryId: 'DIC_kwM7JM4CTdK0',
|
|
mapping: 'title',
|
|
theme: {
|
|
light: 'light',
|
|
dark: 'dark_dimmed',
|
|
},
|
|
},
|
|
footerLinks: {
|
|
twitter: 'https://vk.com/krasnikov_pro',
|
|
github: 'https://git.krasnikov.pro',
|
|
linkedin: 'https://www.linkedin.com/in/kfirp',
|
|
email: 'crapsh@gmail.com',
|
|
storybook: '',
|
|
buyMeAPizza: '',
|
|
},
|
|
topics: [
|
|
'Робототехнику',
|
|
'Программирование',
|
|
'Информатику',
|
|
'Python',
|
|
'LEGO EV3',
|
|
'VEX IQ',
|
|
'mBlock',
|
|
],
|
|
};
|
|
|
|
module.exports = { blogConfig };
|
|
|