Compare commits
No commits in common. "3f866e5a77432865d65442e67a8bd25b08c04b9c" and "f0753ac18ced08509880b9ef77c35d29ecbd55d0" have entirely different histories.
3f866e5a77
...
f0753ac18c
10 changed files with 461 additions and 531 deletions
|
@ -1,2 +0,0 @@
|
|||
.astro
|
||||
dist
|
|
@ -1,5 +0,0 @@
|
|||
{
|
||||
"singleQuote": false,
|
||||
"useTabs": true,
|
||||
"tabWidth": 4
|
||||
}
|
|
@ -12,8 +12,5 @@
|
|||
"dependencies": {
|
||||
"@fontsource/atkinson-hyperlegible": "^4.5.11",
|
||||
"astro": "^2.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"prettier": "3.0"
|
||||
}
|
||||
}
|
||||
|
|
905
pnpm-lock.yaml
905
pnpm-lock.yaml
File diff suppressed because it is too large
Load diff
|
@ -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>
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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.
|
|
@ -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>
|
||||
|
|
|
@ -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>
|
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue