From afc2b61576cf26d492a9f3d4a6cb5d19c3e9567b Mon Sep 17 00:00:00 2001 From: nin0dev Date: Mon, 29 Jul 2024 08:07:09 -0400 Subject: [PATCH] more stuffs --- src/pages/blog.astro | 3 +++ src/pages/index.astro | 7 ++++++- src/pages/posts/hi.md | 30 ++++++++++++++++++++++++++++++ 3 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 src/pages/posts/hi.md diff --git a/src/pages/blog.astro b/src/pages/blog.astro index 00945bd..6f11383 100644 --- a/src/pages/blog.astro +++ b/src/pages/blog.astro @@ -1,4 +1,7 @@

Terrible Blog

Ven Will Die

+ \ No newline at end of file diff --git a/src/pages/index.astro b/src/pages/index.astro index b5ec68c..a40beb2 100644 --- a/src/pages/index.astro +++ b/src/pages/index.astro @@ -1,5 +1,7 @@ --- - +const nuclearLaunchCodes = "below" +// this will never be revealed :meowlien: +const actualLaunchCodes = ["54", "29", "69", "19", "11", "234"] --- @@ -14,5 +16,8 @@

Astro 2

second page idk Cool blog +

The nukes are {nuclearLaunchCodes}

+

The actual code is {actualLaunchCodes.map((code) =>

{code}
)}

+ {actualLaunchCodes.length >= 6 &&

Enough codes to obliterate humanity

} diff --git a/src/pages/posts/hi.md b/src/pages/posts/hi.md new file mode 100644 index 0000000..8879ea4 --- /dev/null +++ b/src/pages/posts/hi.md @@ -0,0 +1,30 @@ +--- +title: 'My First Blog Post' +pubDate: 2022-07-01 +description: 'This is the first post of my new Astro blog.' +author: 'Astro Learner' +image: + url: 'https://docs.astro.build/assets/rose.webp' + alt: 'The Astro logo on a dark background with a pink glow.' +tags: ["astro", "blogging", "learning in public"] +--- + +# Insane + +## h2 + +### h3 + +#### h4 + +##### h5 + +##### h6 + +text is now a thing? + +`i @m a 1337 haxx0r` + +```js +const venExplosionDate = "now"; +``` \ No newline at end of file