Remove individual blog posts
This commit is contained in:
parent
b2d3d1e8fd
commit
f558c7c5d0
|
|
@ -1,32 +0,0 @@
|
||||||
---
|
|
||||||
title: "My First Blog Post"
|
|
||||||
date: 2025-10-16
|
|
||||||
description: "This is my first blog post"
|
|
||||||
---
|
|
||||||
|
|
||||||
# This is an example blog post.
|
|
||||||
|
|
||||||
This is the content of my first example blog post. Just trying to see how this looks on my webpage. Not much to look at here. A "work in progress" as they say.
|
|
||||||
|
|
||||||
## Features
|
|
||||||
|
|
||||||
- Yes!
|
|
||||||
- No!
|
|
||||||
- Maybe!
|
|
||||||
|
|
||||||
### Python Code:
|
|
||||||
```python
|
|
||||||
def print_asterisk_tree(height):
|
|
||||||
for i in range(1, height + 1):
|
|
||||||
spaces = ' ' * (height - i)
|
|
||||||
asterisks = '*' * (2 * i - 1)
|
|
||||||
print(spaces + asterisks)
|
|
||||||
|
|
||||||
# Example usage:
|
|
||||||
print_asterisk_tree(5)
|
|
||||||
```
|
|
||||||
|
|
||||||
### Javascript Code:
|
|
||||||
```javascript
|
|
||||||
console.log("Hello, world!");
|
|
||||||
```
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
title: "My Fourth Blog Post"
|
|
||||||
date: 2025-10-16
|
|
||||||
description: "This is my fourth blog post"
|
|
||||||
---
|
|
||||||
|
|
||||||
# This is an example blog post.
|
|
||||||
|
|
||||||
This is the content of my fourth example blog post.
|
|
||||||
|
|
@ -1,10 +0,0 @@
|
||||||
---
|
|
||||||
slug: "second-post"
|
|
||||||
title: "My Second Post"
|
|
||||||
description: "This is the description of my second post."
|
|
||||||
date: "2025-04-05"
|
|
||||||
---
|
|
||||||
|
|
||||||
# My Second Post
|
|
||||||
|
|
||||||
This is the content of my second post.
|
|
||||||
|
|
@ -1,9 +0,0 @@
|
||||||
---
|
|
||||||
title: "My Third Blog Post"
|
|
||||||
date: 2025-10-16
|
|
||||||
description: "This is my third blog post"
|
|
||||||
---
|
|
||||||
|
|
||||||
# This is an example blog post.
|
|
||||||
|
|
||||||
This is the content of my third example blog post.
|
|
||||||
Loading…
Reference in New Issue