https://github.com/bonniss/deva
4 3 2 1
https://github.com/bonniss/deva
blog hugo
Last synced: about 1 month ago
JSON representation
4 3 2 1
- Host: GitHub
- URL: https://github.com/bonniss/deva
- Owner: bonniss
- Created: 2021-01-21T01:02:33.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-03-13T16:50:32.000Z (about 2 months ago)
- Last Synced: 2025-03-20T08:48:24.607Z (about 1 month ago)
- Topics: blog, hugo
- Language: HTML
- Homepage: https://nauda.dev
- Size: 28.8 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bonniss Blog
[nauda.dev](https://nauda.dev) - my personal blog powered by [Hugo](https://gohugo.io/getting-started/quick-start/)
## Getting started
```zsh
# download all themes, use one of these
git submodule update --init --recursive
git submodule update --remote# or download a single theme
git submodule update --init --remote themes/digitalgarden# start the server with `draft` enabled
hugo server -D# build static pages
# Output will be in `./public/` directory by default (`-d`/`--destination` flag to change it, or set `publishdir` in the config file)
hugo -D
```## FAQ
### How to install new theme
```bash
# clone as simple folder
cd themes
git clone https://github.com/apvarun/digital-garden-hugo-theme.git# clone as a submodule
git submodule add https://github.com/apvarun/digital-garden-hugo-theme.git themes/digitalgarden# with depth
git submodule add --depth 1 -b main https://github.com/nunocoracao/blowfish.git themes/blowfish
```### How to change highlight.js style
[Download styles here](https://github.com/highlightjs/highlight.js/tree/main/src/styles), and copy to `assets/css/extended`.
### Ideas
- Dùng biểu thức toán học trong Hugo: Katex và Papermod
- Dùng petite-vue và alpine.js trong Hugo: xung đột templating delimiter
- Tích hợp codemirror
- Learn golang
- [Official docs]()
- https://github.com/SimonWaldherr/golang-examples
- https://github.com/Alikhll/golang-developer-roadmap
- https://www.youtube.com/watch?v=1MXIGYrMk80### Recipes
#### New content
```sh
hugo new content/blog/lap-trinh/my-awesome-post.md
```