https://github.com/bbrks/hugo-gruvbox-theme
💻 Hugo theme inspired by gruvbox Retro groove color scheme for Vim
https://github.com/bbrks/hugo-gruvbox-theme
go golang gruvbox gruvbox-color-scheme gruvbox-dark hugo hugo-blog hugo-blog-theme hugo-theme static-site static-site-generator
Last synced: 6 months ago
JSON representation
💻 Hugo theme inspired by gruvbox Retro groove color scheme for Vim
- Host: GitHub
- URL: https://github.com/bbrks/hugo-gruvbox-theme
- Owner: bbrks
- License: mit
- Created: 2017-09-08T00:59:14.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2022-11-07T19:51:29.000Z (about 3 years ago)
- Last Synced: 2025-05-08T23:05:31.715Z (6 months ago)
- Topics: go, golang, gruvbox, gruvbox-color-scheme, gruvbox-dark, hugo, hugo-blog, hugo-blog-theme, hugo-theme, static-site, static-site-generator
- Language: HTML
- Homepage: https://bbrks.me
- Size: 434 KB
- Stars: 14
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Hugo Gruvbox theme
A responsive Hugo theme inspired by [gruvbox Retro groove color scheme](https://github.com/morhetz/gruvbox) for Vim.
## Demo
https://bbrks.me


## Installation
If you already have a working Hugo installation, skip to step 3.
1. Install [Hugo](https://gohugo.io/)
2. `hugo new site my\_new\_amazing\_blog.io`
3. `cd my\_new\_amazing\_blog.io/themes/`
4. `git clone git@github.com:bbrks/hugo-gruvbox-theme.git gruvbox`
5. `cd ..`
6. `echo 'theme = "gruvbox"' >> config.toml`
7. `hugo new posts/first-post.md`
8. `hugo server --watch --buildDrafts`
## Configuration
The following parameters can be specified and tweaked in your Hugo config for extra customisation.
```toml
paginate = 5
disqusShortname = ""
[params]
author = { name = "Ben Brooks" }
description = "Software Engineer & Gopher"
keywords = ["software engineering", "golang", "gopher", "blog", "programmer", "bbrks"]
titlePrefix = ""
titleSuffix = " | bbrks.me"
dateFormat = "2006-01-02"
menuItemPrefix = "~/"
postTruncateLength = 250
hideGopher = false
disqusAutoLoad = false
disqusAutoLoadCount = false
[[menu.links]]
name = "CV"
identifier = "cv.pdf"
url = "https://rawgit.com/bbrks/cv/master/cv.pdf"
weight = 9999
[[menu.social]]
name = "Twitter"
url = "https://twitter.com/bbrks_"
weight = 1
[[menu.social]]
name = "GitHub"
url = "https://github.com/bbrks"
weight = 10
[[menu.social]]
name = "Keybase"
url = "https://keybase.io/bbrks"
weight = 30
[[menu.social]]
name = "LinkedIn"
url = "https://uk.linkedin.com/in/bbrks"
weight = 100
```