Make blog generic template for anyone

This commit is contained in:
Cassidy Williams
2024-05-09 23:46:25 -05:00
parent 29bd249a37
commit 342f889e57
116 changed files with 141 additions and 5777 deletions

View File

@@ -16,17 +16,9 @@ const tags = getTags(posts);
<html lang="en-us">
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
<body>
<Header title={"Cassidy Williams"} />
<Header title={SITE_TITLE} />
<main>
lol hi
<br />
you found me
<br />
I am trapped inside of this website
404: Page not found
<Tags tags={tags} all />
</main>

View File

@@ -1,5 +1,9 @@
I'm Cassidy, and I like to make memes and dreams and software!
Welcome to this blog template by [cassidoo](https://cassidoo.co)!
If you want to see more from me outside of this _space_, [my website](https://cassidoo.co) has a bunch of links to follow! You should also check out my [newsletter](https://cassidoo.co/newsletter), or my word game [Jumblie](https://jumblie.com/?utm_campaign=blahg&utm_source=github), or my [GitHub profile](https://github.com/cassidoo). Or don't. Follow your dreams.
It's using Astro and TinaCMS. You can [clone it on GitHub](https://github.com/cassidoo/blahg) to use it for yourself, and see how it works! I would _love_ if you told me when you do use it, I love seeing variations on it!
Anyway, welcome to my blog AKA digital garden AKA mind dump land!
The tags at the bottom of the page are dynamically generated. The more tags you use, the more tags are added to the list! Posts are simple markdown files.
You should also check out [my newsletter](https://cassidoo.co/newsletter), or my word game [Jumblie](https://jumblie.com/?utm_campaign=blahgtmp&utm_source=github), or my [GitHub profile](https://github.com/cassidoo). Or don't. Follow your dreams.
Enjoy!

View File

@@ -18,7 +18,7 @@ const tags = getTags(posts);
<html lang="en-us">
<BaseHead title={SITE_TITLE} description={SITE_DESCRIPTION} />
<body>
<Header title={"Cassidy Williams"} />
<Header title={SITE_TITLE} />
<main>
<About />
@@ -29,7 +29,7 @@ const tags = getTags(posts);
<HomePosts allPosts={posts} />
<p class="center">
You can also <a href="https://blog.cassidoo.co/rss.xml">
You can also <a href="https://blahg.netlify.app/rss.xml">
subscribe with RSS!
</a>
</p>

View File

@@ -35,7 +35,7 @@ const posts = (await Astro.glob("../posts/*.md")).sort(
</content>
<p class="center">
You can also <a href="https://blog.cassidoo.co/rss.xml">
You can also <a href="https://blahg.netlify.app/rss.xml">
subscribe with RSS!
</a>
</p>