diff --git a/.vitepress/theme/composables/useAllPosts.ts b/.vitepress/theme/composables/useAllPosts.ts index 4c3922a..03169aa 100644 --- a/.vitepress/theme/composables/useAllPosts.ts +++ b/.vitepress/theme/composables/useAllPosts.ts @@ -3,6 +3,7 @@ import { ref, Ref } from "vue"; type Data = { title: string; description?: string; + impression?: string; date?: string; timestamp?: number; url: string; @@ -68,6 +69,7 @@ export function useAllPosts(asRef = false) { timestamp, url, content: typeof content === "string" ? content : undefined, + impression: frontmatter.impression, }; return po;