* Add centered avatar to homepage * Fix sizes css * Fix fonts * Post page layout fixes * Add blockquote to first post and styling
53 lines
588 B
Markdown
53 lines
588 B
Markdown
---
|
|
title: "First Post"
|
|
date: 2021-05-15T23:39:49+05:30
|
|
tags: ["abc", "def"]
|
|
type: post
|
|
---
|
|
|
|
Yo yo yo
|
|
|
|
# This is a heading
|
|
|
|
- And
|
|
- this
|
|
- is
|
|
- a
|
|
- list
|
|
|
|
1. This
|
|
2. is
|
|
3. a
|
|
4. numbered
|
|
5. list
|
|
|
|
> And this is a really really really really really long blockquote which spans across multple lines
|
|
|
|
```py
|
|
# Codeblocks look like this
|
|
|
|
def print():
|
|
print('Hello world!')
|
|
```
|
|
|
|
```golang
|
|
package main
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
// This is a comment
|
|
func main () {
|
|
fmt.Println("Hello, world!")
|
|
}
|
|
```
|
|
|
|
```bash
|
|
PATH=$HOME
|
|
|
|
cat $HOME/file.txt | while read -n data; do
|
|
echo $data
|
|
done
|
|
```
|