https://github.com/grantbirki/log
A personal web blog based on my Dario Hugo theme.
https://github.com/grantbirki/log
github-pages hugo website
Last synced: over 1 year ago
JSON representation
A personal web blog based on my Dario Hugo theme.
- Host: GitHub
- URL: https://github.com/grantbirki/log
- Owner: GrantBirki
- License: mit
- Created: 2025-02-07T20:29:27.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-07T19:23:19.000Z (over 1 year ago)
- Last Synced: 2025-04-02T13:12:54.574Z (over 1 year ago)
- Topics: github-pages, hugo, website
- Language: CSS
- Homepage: https://log.birki.io/
- Size: 21 MB
- Stars: 2
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
- Codeowners: .github/CODEOWNERS
Awesome Lists containing this project
README
# log
[](https://github.com/GrantBirki/log/actions/workflows/deploy.yml)
[](https://github.com/GrantBirki/log/actions/workflows/unlock-on-merge.yml)
[](https://github.com/GrantBirki/log/actions/workflows/ci.yml)
A personal web log based on my [Dario](https://github.com/GrantBirki/dario) Hugo theme.
View the [live demo](https://log.birki.io) to see what it looks like.

## Development
To run the site locally, simply run:
```bash
hugo server -D
```
Now you can visit [`localhost:1313`](http://localhost:1313/) to see the site.
### Open Graph Images
If you wish to render open graph images, you can use the following commands:
```bash
npm install
script/images
```
Then copy the resulting PNGs that got generated from the front matter of your blog posts into their corresponding `content/posts/` directories.
The text on the open graph images comes from the following front matter fields of a blog post:
```yaml
ogTitle: Grant Birkinbine
ogDescription: "An example of using the Dario hugo theme"
```
After you drop the resulting PNGs into your `content/posts/` directories, you can point the following front matter field to the PNG file:
```yaml
ogImage: /posts/example/og.png
```