-
-
-
-
+
{SITE_TITLE}
@@ -50,17 +44,6 @@ stripesHTML += DopeStripesHTML(['#ffd273', '#ffbf57', '#ffa43b', '#ff8920', '#ff
height: 100%;
}
}
-
- dope-stripes {
- position: absolute;
- width: 100%;
- }
- dope-stripes::part(stripes) {
- --left-width: 7em;
- --angle-width: 73px;
- --stripe-height: 16px;
- --stripe-angle: 20deg;
- }
h2 {
margin: 0;
padding-top: 3.3em;
diff --git a/workspaces/website/src/pages/_rss.xml.js b/workspaces/website/src/pages/_rss.xml.js
deleted file mode 100644
index 1e4ab58..0000000
--- a/workspaces/website/src/pages/_rss.xml.js
+++ /dev/null
@@ -1,16 +0,0 @@
-import rss from '@astrojs/rss';
-import { getCollection } from 'astro:content';
-import { SITE_TITLE, SITE_DESCRIPTION } from '../consts';
-
-export async function get(context) {
- const posts = await getCollection('blahg');
- return rss({
- title: SITE_TITLE,
- description: SITE_DESCRIPTION,
- site: context.site,
- items: posts.map((post) => ({
- ...post.data,
- link: `/blahg/${post.slug}/`,
- })),
- });
-}