yandex metrica
All checks were successful
continuous-integration/drone/push Build is passing
continuous-integration/drone Build is passing

This commit is contained in:
Struchkov Mark 2024-09-06 00:46:35 +03:00
parent f2d7a4739a
commit aade5a390c
No known key found for this signature in database
GPG Key ID: A3F0AC3F0FA52F3C
2 changed files with 10 additions and 11 deletions

View File

@ -75,6 +75,7 @@ const config: QuartzConfig = {
Plugin.ComponentResources(),
Plugin.ContentPage(),
Plugin.FolderPage(),
Plugin.TagPage(),
Plugin.ContentIndex({
enableSiteMap: true,
enableRSS: true,

View File

@ -14,17 +14,15 @@ export const sharedPageComponents: SharedLayout = {
locale: 'ru',
}
}),
Component.YandexMetrika(),
],
footer: [
Component.Footer({
footer: Component.Footer({
links: {
"About Me": "https://mark.struchkov.dev/cv/",
"B.log": "https://struchkov.dev",
"CV": "https://mark.struchkov.dev/cv/?utm_source=gardenru&utm_medium=organic&utm_campaign=static",
},
}),
Component.YandexMetrika()
],
}
const githubSourceConfig = {
repoLink: "https://github.com/upagge/digital-garden",
@ -41,7 +39,7 @@ export const defaultContentPageLayout: PageLayout = {
Component.PageTitle(),
Component.MobileOnly(Component.Spacer()),
Component.Search(),
Component.DesktopOnly(Component.RecentNotes({showTags: false, limit: 4})),
Component.DesktopOnly(Component.RecentNotes({ showTags: false, limit: 4 })),
Component.Ads(),
Component.Darkmode(),
],