more stuffs
This commit is contained in:
parent
b78172476f
commit
afc2b61576
3 changed files with 39 additions and 1 deletions
|
@ -1,4 +1,7 @@
|
|||
<body>
|
||||
<h1>Terrible Blog</h1>
|
||||
<p>Ven Will Die</p>
|
||||
<ul>
|
||||
<li><a href="/posts/hi">first post</a></li>
|
||||
</ul>
|
||||
</body>
|
|
@ -1,5 +1,7 @@
|
|||
---
|
||||
|
||||
const nuclearLaunchCodes = "below"
|
||||
// this will never be revealed :meowlien:
|
||||
const actualLaunchCodes = ["54", "29", "69", "19", "11", "234"]
|
||||
---
|
||||
|
||||
<html lang="en">
|
||||
|
@ -14,5 +16,8 @@
|
|||
<h1>Astro 2</h1>
|
||||
<a href="/about">second page idk</a>
|
||||
<a href="/blog">Cool blog</a>
|
||||
<p>The nukes are {nuclearLaunchCodes}</p>
|
||||
<p>The actual code is {actualLaunchCodes.map((code) => <pre>{code}</pre> )}</p>
|
||||
{actualLaunchCodes.length >= 6 && <p>Enough codes to obliterate humanity</p>}
|
||||
</body>
|
||||
</html>
|
||||
|
|
30
src/pages/posts/hi.md
Normal file
30
src/pages/posts/hi.md
Normal file
|
@ -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";
|
||||
```
|
Loading…
Reference in a new issue