From dfc06b64a2b78229cab88753743c5650edd72b6a Mon Sep 17 00:00:00 2001 From: Struchkov Mark Date: Sun, 1 Sep 2024 18:49:53 +0300 Subject: [PATCH] vault backup: 2024-09-01 18:49:53 --- .DS_Store | Bin 10244 -> 10244 bytes garden/ru/.DS_Store | Bin 0 -> 6148 bytes garden/ru/.quartz/quartz.config.ts | 93 +++++++++++++++++++++++++++++ garden/ru/.quartz/quartz.layout.ts | 76 +++++++++++++++++++++++ 4 files changed, 169 insertions(+) create mode 100644 garden/ru/.DS_Store create mode 100644 garden/ru/.quartz/quartz.config.ts create mode 100644 garden/ru/.quartz/quartz.layout.ts diff --git a/.DS_Store b/.DS_Store index c309a68db4d2cf5af7b898cc5bafb2b3f502e3c8..8e1f4b640afb4142e7b4c7749aa2a3b0a22d26e6 100644 GIT binary patch delta 94 zcmZn(XbG6$&uFtTU^hRb&1N0}Z#GFbhIEERh9ZU(hE#^Uvf!e;ocz3W1_lPk$>+qx SHfM=7a&Bf<2q3Jkju8OI2pM_+ delta 37 rcmZn(XbG6$&uG0dU^hRb^=2LcZ??_FVpBLLHppydR|o)c)-nPB?b8ek diff --git a/garden/ru/.DS_Store b/garden/ru/.DS_Store new file mode 100644 index 0000000000000000000000000000000000000000..96e9bd5e0946deee007a196766ac93205c0af811 GIT binary patch literal 6148 zcmeHKOHRWu5S@WaL}Jq=OP>I#H!x8+LDxu7D#4;r3Tij3awJZ`lCy9O-t!D7p;@p% z2%#Cteq+za&XZz$L`3WTdLc3wkqV8dR3?Pelcpngo&mMwc$A$yZSEG!+ioJ!U!3CJ zPvl%4WG^=|*nhhnZ1;;t+cnK<)2-l9z3rY~uIkr|!#r)b{)X4~o@|X)8!Q}ZFc1s` z1HnKr@Z${N&ZbnShS3KD!9XzZ$pFuXghtGcy>>LrF+IOdc4Wyjvo!bQFKP+$3@c+s*t@~7f1nhm2527-Yx1IIR;^ZviYFEd%> zk3(V<3#1D+#i#c1|K9e&xdH)Iyh RmvCS_1PUS11p~jpz&pZ-E_eU{ literal 0 HcmV?d00001 diff --git a/garden/ru/.quartz/quartz.config.ts b/garden/ru/.quartz/quartz.config.ts new file mode 100644 index 00000000..e8d00b89 --- /dev/null +++ b/garden/ru/.quartz/quartz.config.ts @@ -0,0 +1,93 @@ +import { QuartzConfig } from "./quartz/cfg" +import * as Plugin from "./quartz/plugins" + +/** + * Quartz 4.0 Configuration + * + * See https://quartz.jzhao.xyz/configuration for more information. + */ +const config: QuartzConfig = { + configuration: { + pageTitle: "🪴 Struchkov's Garden", + enableSPA: false, + enablePopovers: true, + analytics: { + provider: "plausible", + }, + locale: "ru-RU", + baseUrl: "garden.struchkov.dev", + ignorePatterns: ["private", "templates", ".obsidian"], + defaultDateType: "created", + theme: { + fontOrigin: "googleFonts", + cdnCaching: true, + typography: { + header: "Schibsted Grotesk", + body: "Source Sans Pro", + code: "IBM Plex Mono", + }, + colors: { + lightMode: { + light: "#faf8f8", + lightgray: "#e5e5e5", + gray: "#b8b8b8", + darkgray: "#4e4e4e", + dark: "#2b2b2b", + secondary: "#284b63", + tertiary: "#84a59d", + highlight: "rgba(143, 159, 169, 0.15)", + textHighlight: "#fff23688", + }, + darkMode: { + light: "#161618", + lightgray: "#393639", + gray: "#646464", + darkgray: "#d4d4d4", + dark: "#ebebec", + secondary: "#7b97aa", + tertiary: "#84a59d", + highlight: "rgba(143, 159, 169, 0.15)", + textHighlight: "#b3aa0288", + }, + }, + }, + }, + plugins: { + transformers: [ + Plugin.FrontMatter(), + Plugin.CreatedModifiedDate({ + priority: ["frontmatter", "filesystem"], + }), + Plugin.SyntaxHighlighting({ + theme: { + light: "github-light", + dark: "github-dark", + }, + keepBackground: false, + }), + Plugin.ObsidianFlavoredMarkdown({ enableInHtmlEmbed: false }), + Plugin.GitHubFlavoredMarkdown(), + Plugin.TableOfContents(), + Plugin.CrawlLinks({ markdownLinkResolution: "shortest" }), + Plugin.Description(), + Plugin.Latex({ renderEngine: "katex" }), + ], + filters: [Plugin.RemoveDrafts()], + emitters: [ + Plugin.AliasRedirects(), + Plugin.ComponentResources(), + Plugin.ContentPage(), + Plugin.FolderPage(), + Plugin.TagPage(), + Plugin.ContentIndex({ + enableSiteMap: true, + enableRSS: true, + }), + Plugin.Assets(), + Plugin.Static(), + Plugin.NotFoundPage(), + ], + }, +} + +export default config diff --git a/garden/ru/.quartz/quartz.layout.ts b/garden/ru/.quartz/quartz.layout.ts new file mode 100644 index 00000000..b2d11966 --- /dev/null +++ b/garden/ru/.quartz/quartz.layout.ts @@ -0,0 +1,76 @@ +import { PageLayout, SharedLayout } from "./quartz/cfg" +import * as Component from "./quartz/components" + +// components shared across all pages +export const sharedPageComponents: SharedLayout = { + head: Component.Head(), + header: [], + afterBody: [], + footer: Component.Footer({ + links: { + "B.log": "https://struchkov.dev" + }, + }), +} + +// components for pages that display a single page (e.g. a single note) +export const defaultContentPageLayout: PageLayout = { + beforeBody: [ + Component.Breadcrumbs(), + Component.ArticleTitle(), + Component.ContentMeta(), + Component.TagList(), + ], + left: [ + Component.PageTitle(), + Component.MobileOnly(Component.Spacer()), + Component.Search(), + Component.Darkmode(), + Component.DesktopOnly(Component.Explorer()), + ], + right: [ + Component.Graph({ + localGraph: { + drag: true, // whether to allow panning the view around + zoom: true, // whether to allow zooming in and out + depth: 1, // how many hops of notes to display + scale: 1.1, // default view scale + repelForce: 0.5, // how much nodes should repel each other + centerForce: 0.3, // how much force to use when trying to center the nodes + linkDistance: 30, // how long should the links be by default? + fontSize: 0.3, // what size should the node labels be? + opacityScale: 1, // how quickly do we fade out the labels when zooming out? + removeTags: [], // what tags to remove from the graph + showTags: true, // whether to show tags in the graph + }, + globalGraph: { + drag: true, + zoom: true, + depth: -1, + scale: 0.9, + repelForce: 0.5, + centerForce: 0.3, + linkDistance: 30, + fontSize: 0.3, + opacityScale: 1, + removeTags: [], // what tags to remove from the graph + showTags: true, // whether to show tags in the graph + }, +}), + Component.DesktopOnly(Component.TableOfContents()), + Component.Backlinks(), + ], +} + +// components for pages that display lists of pages (e.g. tags or folders) +export const defaultListPageLayout: PageLayout = { + beforeBody: [Component.Breadcrumbs(), Component.ArticleTitle(), Component.ContentMeta()], + left: [ + Component.PageTitle(), + Component.MobileOnly(Component.Spacer()), + Component.Search(), + Component.Darkmode(), + Component.DesktopOnly(Component.Explorer()), + ], + right: [], +}