This commit is contained in:
Lain Iwakura 2025-07-25 22:26:16 +03:00
parent 55f17cf6f0
commit 29fe68aaf7
No known key found for this signature in database
GPG Key ID: C7C18257F2ADC6F8

View File

@ -1,25 +1,24 @@
--- ---
layout: base.vto layout: base.vto
title: Hello World title: Hello World
date: 2024-01-01 date: 2025-07-25
isBlogPage: true isBlogPage: true
description: First blog post description: First blog post
showFooter: true showFooter: true
--- ---
# Hello World # Hello World!!!
This is my first blog post using the pfckws-ng theme for Lume.
## Code Example
Hello world in bash:
```bash ```bash
echo "Hello from mybio!" echo "Hello from mybio!"
``` ```
## Features Hello world in go:
```go
package main
- Dark theme func main() {
- Minimal design fmt.Println("Hello, World!")
- Syntax highlighting }
- Responsive layout ```