https://github.com/gigio1023/gigio1023.github.io
Personal Blog for posting engineering
https://github.com/gigio1023/gigio1023.github.io
Last synced: 3 months ago
JSON representation
Personal Blog for posting engineering
- Host: GitHub
- URL: https://github.com/gigio1023/gigio1023.github.io
- Owner: gigio1023
- Created: 2020-01-15T07:32:38.000Z (over 5 years ago)
- Default Branch: main
- Last Pushed: 2025-03-12T17:27:28.000Z (3 months ago)
- Last Synced: 2025-03-12T17:36:27.633Z (3 months ago)
- Language: HTML
- Homepage: https://naem1023.github.io/
- Size: 132 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- Contributing: .github/CONTRIBUTING.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# Blog Settings
Summary of https://blowfish.page/docs/.
## Generaet a post
`hugo new --kind post test.md`
## Color schema
```
# config/_default/params.tomlcolorScheme = "blowfish"
```## Organising content
- https://blowfish.page/docs/getting-started/#organising-content
- https://gohugo.io/content-management/organization/
```
.
├── assets
│ └── img
│ └── author.jpg
├── config
│ └── _default
├── content
│ ├── _index.md
│ ├── about.md
│ └── posts
│ ├── _index.md
│ ├── first-post.md
│ └── another-post
│ ├── aardvark.jpg
│ └── index.md
└── themes
└── blowfish
```## Menus
- https://blowfish.page/docs/getting-started/#menus
```
# config/_default/menus.toml[[main]]
name = "Blog"
pageRef = "posts"
weight = 10[[main]]
name = "Topics"
pageRef = "topics"
weight = 20[[main]]
pre = "github"
name = "GitHub"
url = "https://github.com/nunocoracao/blowfish"
weight = 30[[main]]
identifier = "github2"
pre = "github"
url = "https://github.com/nunocoracao/blowfish"
weight = 40[[footer]]
name = "Privacy"
url = "https://external-link"```
### Site Configurations
- https://blowfish.page/docs/configuration### Thumbnails
- `feature*` image file is thumbnail.```
content
└── awesome_article
├── index.md
└── featured.png
```## Modify the theme
If I change the file of theme, it applys to all pages.
e.g., Apply common google analytics scripts