Files
web/README.md

22 lines
330 B
Markdown

# Trude's Website
Welcome to my personal website!
Here you will find my blog, computer science notes,
## Start Server
```sh
git submodule update --init --recursive
hugo server --disableFastRender -D #D to include drafts
```
## New Post
```sh
hugo new content directory/name.md
```
## Generate Site to Publish
```sh
hugo
```