add: blog
blog post
This commit is contained in:
parent
6c68f3afb1
commit
e46242578f
4 changed files with 6 additions and 8 deletions
|
@ -4,7 +4,7 @@ thumbnail: '/img/blog/posts/0000.start_thumb.webp'
|
|||
title: 'Blogfussel - schon wieder'
|
||||
description: 'Warum ich mich dazu entschlossen habe, jetzt doch wieder mit dem Bloggen anzufangen? Da muss ich etwas ausholen.'
|
||||
navigation: true
|
||||
date: 2025-06-14
|
||||
date: 2025-07-11
|
||||
category: 'story'
|
||||
author:
|
||||
name: 'webfussel'
|
||||
|
@ -15,7 +15,7 @@ schemaOrg:
|
|||
author:
|
||||
type: 'Person'
|
||||
name: 'Fiona Urban aka webfussel'
|
||||
datePublished: '2025-07-14'
|
||||
datePublished: '2025-07-11'
|
||||
---
|
||||
|
||||
Ich habe schon häufig versucht zu bloggen, bin aber leider am Ende nie so richtig reingekommen. Trotz allem habe ich jetzt große Hoffnung, dass es
|
||||
|
|
|
@ -24,7 +24,8 @@
|
|||
"vue": "^3.5.15"
|
||||
},
|
||||
"dependencies": {
|
||||
"@nuxt/content": "^3.5.1"
|
||||
"@nuxt/content": "^3.5.1",
|
||||
"better-sqlite3": "^12.2.0"
|
||||
},
|
||||
"trustedDependencies": [
|
||||
"@parcel/watcher"
|
||||
|
|
|
@ -1,9 +1,6 @@
|
|||
import { BlogCollectionItem } from '@nuxt/content'
|
||||
|
||||
|
||||
const simpleDate = (date: Date) => {
|
||||
date.setDate(date.getDate() + 1)
|
||||
return `${date.getFullYear()}-${`${date.getMonth() + 1}`.padStart(2, '0')}-${date.getDate()}`
|
||||
return `${date.getFullYear()}-${`${date.getMonth() + 1}`.padStart(2, '0')}-${`${date.getDate()}`.padStart(2, '0')}`
|
||||
}
|
||||
|
||||
const author = (baseUrl: string) => ({
|
||||
|
|
|
@ -19,7 +19,7 @@ const makeItem = (article: BlogCollectionItem, base: string) => `
|
|||
|
||||
const simpleDate = (date: Date) => {
|
||||
date.setDate(date.getDate() + 1)
|
||||
return `${date.getFullYear()}-${`${date.getMonth() + 1}`.padStart(2, '0')}-${date.getDate()}`
|
||||
return `${date.getFullYear()}-${`${date.getMonth() + 1}`.padStart(2, '0')}-${`${date.getDate()}`.padStart(2, '0')}`
|
||||
}
|
||||
|
||||
export default defineEventHandler(async event => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue