From b4ba7b44fd407ce535202b04ee99a2d43751d4f4 Mon Sep 17 00:00:00 2001 From: LimePotato Date: Wed, 17 Apr 2024 04:20:56 -0600 Subject: [PATCH] 202404170420 --- dist/about/index.html | 206 ------------------------- src/pages/blog.astro | 5 +- src/pages/{blog => posts}/post-1.astro | 8 + 3 files changed, 10 insertions(+), 209 deletions(-) delete mode 100644 dist/about/index.html rename src/pages/{blog => posts}/post-1.astro (86%) diff --git a/dist/about/index.html b/dist/about/index.html deleted file mode 100644 index 7e0a30c..0000000 --- a/dist/about/index.html +++ /dev/null @@ -1,206 +0,0 @@ - - - - - - - - - - - - - - LimePot - About - - - - - - - - - -
-
- -
-
-
- -

Howdy Traveller!

-
- -

- I do a lot of tinkering with various things, hardware and software. - Currently messing around with Web Development, Minecraft mods, 3D - Printing, Linux, and Game Design. Checkout my Projects to see what I'm currently working on. -

-
- -

-

- Where to find/contact me: -


- -
-
- -
-
-
- -
- - \ No newline at end of file diff --git a/src/pages/blog.astro b/src/pages/blog.astro index b9a41ee..153d5bd 100644 --- a/src/pages/blog.astro +++ b/src/pages/blog.astro @@ -1,7 +1,7 @@ --- import Layout from "../layouts/Layout.astro"; import Card from "../components/Card-noimg.astro"; -const allPosts = await Astro.glob("../pages/posts/*.md"); +const allPosts = await Astro.glob("../pages/posts/*.astro"); --- @@ -12,8 +12,7 @@ const allPosts = await Astro.glob("../pages/posts/*.md"); )) diff --git a/src/pages/blog/post-1.astro b/src/pages/posts/post-1.astro similarity index 86% rename from src/pages/blog/post-1.astro rename to src/pages/posts/post-1.astro index ac364c6..6e57784 100644 --- a/src/pages/blog/post-1.astro +++ b/src/pages/posts/post-1.astro @@ -1,5 +1,13 @@ --- import Layout from "../../layouts/Layout.astro"; +title: 'My First Blog Post' +pubDate: 2023-10-29 +description: 'This is the first post of my new blog.' +author: 'LimePotato' +image: + url: '/assets/branding/obo.svg' + alt: 'Website Icon' +tags: ["first", "blogging"] ---