https://github.com/gkevinb/developers-journal
A Developer's Journal
https://github.com/gkevinb/developers-journal
hugo journal
Last synced: 3 months ago
JSON representation
A Developer's Journal
- Host: GitHub
- URL: https://github.com/gkevinb/developers-journal
- Owner: gkevinb
- Created: 2020-04-26T14:56:54.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-03-17T18:58:23.000Z (over 3 years ago)
- Last Synced: 2025-02-07T16:48:26.366Z (5 months ago)
- Topics: hugo, journal
- Language: JavaScript
- Homepage: https://gaborkevinbarta.com/developers-journal/
- Size: 3.67 MB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# A Developer's Journal
My journal about my software development experiences. A collection of notes, tutorials, and tips about software developement.
https://gaborkevinbarta.com/developers-journal
## Project Structure
- `archetypes`: Templates for when new sections are created
- `content`: Markdown content of website
- `data`: Unused and unknown
- `docs`: Production build that is deployed to Github Pages
- `layout/partial`: Custom code to inject into theme
- `resources/gen`: Unused and unknown
- `static`: Custom css and images
- `themes/hugo-theme-learn`: Source code for theme## Commmands
- `hugo server`: Run development
- `hugo server -D`: Run development with drafts
- `hugo`: Build production code into `docs` directory
- `hugo new --kind chapter chapter-name/_index.md`: Create new chapter markdown
- `hugo new chapter-name/section-name/_index.md`: Create new section markdown under a specific chapter## Themes
### Learn
https://themes.gohugo.io/theme/hugo-theme-learn/en
https://github.com/matcornic/hugo-theme-learn
### Compose
https://themes.gohugo.io/compose/
## Hugo Shortcodes
https://gohugo.io/content-management/shortcodes/