Compare commits

..

No commits in common. "3f866e5a77432865d65442e67a8bd25b08c04b9c" and "f0753ac18ced08509880b9ef77c35d29ecbd55d0" have entirely different histories.

10 changed files with 461 additions and 531 deletions

View file

@ -1,2 +0,0 @@
.astro
dist

View file

@ -1,5 +0,0 @@
{
"singleQuote": false,
"useTabs": true,
"tabWidth": 4
}

View file

@ -12,8 +12,5 @@
"dependencies": {
"@fontsource/atkinson-hyperlegible": "^4.5.11",
"astro": "^2.1.0"
},
"devDependencies": {
"prettier": "3.0"
}
}

File diff suppressed because it is too large Load diff

View file

@ -1,6 +1,16 @@
<nav aria-label="a navigation bar with links">
<nav id="nav-container" aria-label="a navigation bar with links">
<a href="/">Home</a>
<a href="/blog">Blog</a>
<a href="/projects">Projects</a>
<a href="/friends">Friends</a>
</nav>
<style>
#nav-container {
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
}
</style>

View file

@ -2,10 +2,8 @@ import { defineCollection } from "astro:content";
const homepageCollection = defineCollection({});
const friendsCollection = defineCollection({});
const projectsCollection = defineCollection({});
export const collections = {
homepage: homepageCollection,
friends: friendsCollection,
projects: projectsCollection,
};
'homepage': homepageCollection,
'friends': friendsCollection
}

View file

@ -1,14 +0,0 @@
---
title: "Meowy Webring"
description: "a little webring project me and my friends are making in rust :3!"
---
# [Meowy Webring](https://git.solarpunk.moe/Solarpunk/meowy-webring)
a little webring project me and my friends are making in rust :3!
this webring works by having a server that reads from a json file containing the url of the site and an optional name.
you can go to the next or previous site with just pointing a link in your page to next or previous http routes on the webrings url which will redirect to that page.
there is also a names api you can GET request and it will return json with the names of the previous or next site or if the sites don't have a name, it will return the url of the site.
the reason i made this an api is so you don't have to use javascript if you don't want to, you can just point a link to the previous or next routes and it will work. but, if you want to showcase the names of the site, you can either use javascript or if you're using a server side rendered webpage, you can use that too.

View file

@ -1,19 +1,8 @@
---
import WorkInProgress from "../components/WorkInProgress.astro";
import Layout from "../layouts/Layout.astro";
import { getCollection, getEntryBySlug } from "astro:content";
const projects = await getCollection("projects");
---
<Layout title="fries gay projects">
<main>
<h1>Projects</h1>
<p>a page where i show off my projects!</p>
{projects.map(project => (
<section>
<h2><a href={`/projects/${project.slug}`}>{project.data.title}</a></h2>
<p>{project.data.description}</p>
</section>
))}
</main>
<WorkInProgress />
</Layout>

View file

@ -1,19 +0,0 @@
---
import Layout from "../../layouts/Layout.astro";
import { getCollection } from "astro:content";
export async function getStaticPaths() {
const projects = await getCollection("projects");
return projects.map(project => ({
params: {page: project.slug}, props: {project}
}));
}
const { project } = Astro.props;
const { Content } = await project.render();
---
<Layout title={project.data.title}>
<article>
<Content />
</article>
</Layout>

View file

@ -82,12 +82,3 @@ hr {
hr {
border: 1px solid;
}
nav {
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
gap: 20px;
padding-top: 10px;
}