53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
baseURL = 'http://localhost:1313'
|
||
languageCode = 'ru-ru'
|
||
title = 'Мой блог'
|
||
theme = 'PaperMod'
|
||
|
||
[params]
|
||
mainSections = ['posts']
|
||
ShowReadingTime = true
|
||
ShowShareButtons = true
|
||
ShowPostNavLinks = true
|
||
ShowBreadCrumbs = true
|
||
ShowCodeCopyButtons = true
|
||
ShowWordCount = true
|
||
|
||
homeInfoParams.Title = 'Добро пожаловать в мой блог'
|
||
homeInfoParams.Content = 'Здесь я пишу о своих проектах и идеях'
|
||
|
||
[[params.socialIcons]]
|
||
name = "github"
|
||
url = "https://github.com/ваш-профиль"
|
||
|
||
[[params.socialIcons]]
|
||
name = "mastodon"
|
||
url = "https://mastodon.social/@ваш_профиль"
|
||
|
||
[[params.socialIcons]]
|
||
name = "telegram"
|
||
url = "https://t.me/ваш-профиль"
|
||
|
||
[menu]
|
||
[[menu.main]]
|
||
identifier = 'posts'
|
||
name = 'Все посты'
|
||
url = '/posts/'
|
||
weight = 1
|
||
|
||
[[menu.main]]
|
||
identifier = 'about'
|
||
name = 'Обо мне'
|
||
url = '/about/'
|
||
weight = 2
|
||
|
||
[[menu.main]]
|
||
identifier = 'services'
|
||
name = 'Услуги'
|
||
url = '/services/'
|
||
weight = 3
|
||
|
||
[[menu.main]] # ← НОВЫЙ ПУНКТ
|
||
identifier = 'library'
|
||
name = 'Библиотека'
|
||
url = '/library/'
|
||
weight = 4 |