diff --git a/src/components/Header.astro b/src/components/Header.astro index 6aae114..5b7c79a 100644 --- a/src/components/Header.astro +++ b/src/components/Header.astro @@ -2,7 +2,7 @@ const subtitle = "a digital minimalist."; --- -
+
  ______     __  __     ______     __    __  ______     ______    __
 /\  ___\   /\ \/ /    /\  __ \   /\ \  / / /\  __ \   /\__  _\  /\ \
 \ \___  \  \ \  _'-.  \ \ \/\ \  \ \ \/ /  \ \  __ \  \/_/\ \/  \ \ \
@@ -16,5 +16,16 @@ const subtitle = "a digital minimalist.";
 
 
posts + pics tags
+ + diff --git a/src/pages/intro.md b/src/pages/intro.md index f49c418..abfd4ea 100644 --- a/src/pages/intro.md +++ b/src/pages/intro.md @@ -1,7 +1,3 @@ ---- -draft: true ---- - ## hi, i'm skovati i'm a computer engineer and amatuer mathematician from the great lakes diff --git a/src/pages/posts/[...slug].astro b/src/pages/posts/[...slug].astro index 057c497..bb24550 100644 --- a/src/pages/posts/[...slug].astro +++ b/src/pages/posts/[...slug].astro @@ -21,7 +21,7 @@ const { Content } = await entry.render(); { entry.data.tags.map(t => - {` ${t} `} + {` ${t} `} ) } {entry.data.author && `- ${entry.data.author}`} diff --git a/src/pages/tags/[tag].astro b/src/pages/tags/[tag].astro index ecc337c..31277a0 100644 --- a/src/pages/tags/[tag].astro +++ b/src/pages/tags/[tag].astro @@ -8,10 +8,9 @@ export async function getStaticPaths() { const uniqueTags = [...new Set(allPosts.map((post) => post.data.tags).flat())]; return uniqueTags.map((tag) => { - const filteredPosts = allPosts.filter((post) => - post.data.tags.includes(tag) - ) - .sort((a, b) => b.data.date.valueOf() - a.data.date.valueOf()) + const filteredPosts = allPosts + .filter((post) => post.data.tags.includes(tag)) + .sort((a, b) => b.data.date.valueOf() - a.data.date.valueOf()) return { params: { tag }, props: { posts: filteredPosts }, @@ -26,11 +25,11 @@ const { posts } = Astro.props;

{tag} tagged posts

diff --git a/src/styles/global.css b/src/styles/global.css index 1fa3538..7b6c765 100644 --- a/src/styles/global.css +++ b/src/styles/global.css @@ -42,11 +42,3 @@ h1, h2, h3, h4, h5 { padding: 0; margin: 0.3em 0em; } - -.header-art { - user-select: none; - display: flex; - justify-content: center; - font-size: min(1.8vw, 12px); - overflow: hidden; -}