fixed lastmod.ts
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
Struchkov Mark 2024-09-07 19:29:51 +03:00
parent 7e8995ef2e
commit 441148fe84
No known key found for this signature in database
GPG Key ID: A3F0AC3F0FA52F3C
2 changed files with 1 additions and 5 deletions

View File

@ -30,8 +30,8 @@ export default ((opts?: Partial<ContentMetaOptions>) => {
const segments: (string | JSX.Element)[] = [] const segments: (string | JSX.Element)[] = []
if (fileData.dates) { if (fileData.dates) {
segments.push("Создана: " + formatDate(fileData.dates.created!, cfg.locale))
segments.push("Обновлена: " + formatDate(fileData.dates.modified!, cfg.locale)) segments.push("Обновлена: " + formatDate(fileData.dates.modified!, cfg.locale))
segments.push("Создана: " + formatDate(fileData.dates.created!, cfg.locale))
} }
// Display reading time if enabled // Display reading time if enabled

View File

@ -1,9 +1,5 @@
@use "./base.scss"; @use "./base.scss";
article {
font-size: 1.1em;
}
a[href^=http]:not([href*=garden\.struchkov\.dev]):after { a[href^=http]:not([href*=garden\.struchkov\.dev]):after {
content: " ↗" content: " ↗"
} }