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
						
					
					
						
							1.9 KiB
						
					
					
				
			
		
		
	
	
							73 lines
						
					
					
						
							1.9 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:
 | |
|         "Сайт edu.krasnikov.pro - это образовательный портал, который предоставляет доступ к широкому спектру материалов по информатике, робототехнике и программированию.",
 | |
|     },
 | |
|     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 };
 | |
| 
 |