first commit

This commit is contained in:
EFEELE
2025-04-07 15:50:13 -06:00
commit c2421d79c5
124 changed files with 12129 additions and 0 deletions

11
src/pages/rss.xml.js Normal file
View File

@@ -0,0 +1,11 @@
import rss, { pagesGlobToRssItems } from '@astrojs/rss';
export async function GET(context) {
return rss({
title: 'Web Development and Technology Blog | Fernando López | EFEELE',
description: 'Welcome to my blog, where I share my passion for frontend development, web design, and the latest technology trends.',
site: context.site,
items: await pagesGlobToRssItems(import.meta.glob('./**/*.md')),
customData: `<language>es</language>`,
});
}