feat: add a friend link (blogroll) shortcode
This commit is contained in:
parent
6a2d5fd912
commit
de4de10703
6 changed files with 54 additions and 13 deletions
|
@ -1,17 +1,28 @@
|
|||
import { defineCollection } from 'astro:content';
|
||||
import { posts } from './posts/_schemas';
|
||||
import { pages } from "./pages/_schemas";
|
||||
import {defineCollection} from 'astro:content';
|
||||
import {posts} from './posts/_schemas';
|
||||
import {pages} from "./pages/_schemas";
|
||||
import {file} from 'astro/loaders';
|
||||
import { z } from 'astro:content';
|
||||
|
||||
const blogCollection = defineCollection({
|
||||
type: 'content',
|
||||
schema: posts,
|
||||
type: 'content',
|
||||
schema: posts,
|
||||
});
|
||||
const pageCollection = defineCollection({
|
||||
type: 'content',
|
||||
schema: pages,
|
||||
});
|
||||
const blogRollData = defineCollection({
|
||||
loader: file("src/data/links.yaml"),
|
||||
schema: z.object({
|
||||
link: z.string(),
|
||||
avatar: z.string().optional(),
|
||||
description: z.string().optional(),
|
||||
})
|
||||
});
|
||||
|
||||
export const collections = {
|
||||
'posts': blogCollection,
|
||||
'pages': pageCollection,
|
||||
'posts': blogCollection,
|
||||
'pages': pageCollection,
|
||||
'links': blogRollData,
|
||||
};
|
|
@ -1,5 +0,0 @@
|
|||
---
|
||||
title: 'Test Page'
|
||||
description: 'This is a test page'
|
||||
---
|
||||
testestestest
|
9
src/content/pages/test.mdx
Normal file
9
src/content/pages/test.mdx
Normal file
|
@ -0,0 +1,9 @@
|
|||
---
|
||||
title: 'Test Page'
|
||||
description: 'This is a test page'
|
||||
---
|
||||
import BlogRoll from "../../components/shortcodes/BlogRoll.astro"
|
||||
|
||||
testestestest
|
||||
|
||||
<BlogRoll/>
|
|
@ -1,6 +1,6 @@
|
|||
import { z } from 'astro:content';
|
||||
|
||||
export const posts = ({ image }:{image: ()=> z.ZodAny}) => z.object({
|
||||
export const posts = ({ image }) => z.object({
|
||||
title: z.string(),
|
||||
description: z.string(),
|
||||
pubDate: z.coerce.date(),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue