Welcome to my website, a personal notebook and place to show off.
See wiki/Initial-Setup.
From the repo root, start the dev server:
hugo serverThen open http://localhost:1313/. The site live-reloads on save.
To also preview drafts, future-dated, and expired content (e.g. posts with a publishDate in the future), add:
hugo server -D -F -ENote: Thumbnails in the homepage grids come from a page-bundle image named
featured.*(e.g.featured.webp) inside the post/project folder β not from thefeatured_imagefrontmatter field, which the theme ignores.
- Hugo site generator
- wirtten in Go
- extendable with "hugo modules" (based on Go Modules)
- Hugo Blox Builder block builder
- Hugo Academic CV Theme
- Mermaid to generate charts, diagrams and mindmaps
- Posts with custom JS, HTML & CSS
- π Get Started
- π View the documentation
- π¬ Chat with the Hugo Blox Builder community or Hugo community
- π¦ Twitter: @GetResearchDev @GeorgeCushen #MadeWithHugoBlox
- β¬οΈ Automatically import your publications from BibTeX with the Hugo Academic CLI
- π‘ Suggest an improvement
- β¬οΈ Updating? View the Update Guide and Release Notes
- Icons available by default (source):
- hb - the Hugo Blox Icon Pack
- brands - the Brands Icon Pack
- custom - use your own SVG icons - see guide below
- devicon - the Developer Icon Pack which includes Python, RStudio, etc.
- hero - the Hero Icon Pack (outline variant)
- academicons - the Academicons Icon Pack
- Hugo Icons Module
- Is this an official module? - Yes, it's published by the official hugomods.com site, which features third party modules.
-
Built in Blocks
-
You can add text, images, videos, galleries, and HTML/CSS/JS, to the
Markdownblock -
Otherwise create your own block which can easily started with this GitHub template
-
Wowchemy Page Builder is Hugo
Bloxown page builder- shortcode GitHub Template (uses legacy Bootstrap styling?!?)
- Hugo Blox GitHub Template (uses Tailwind styling)
- This site uses Tailwind (v0.3.1) which works with the
page type: landingparameter - Older sites used Bootstrap styling.
see Hugo Blox | Docs
Hugo doesn't support this is highlighted syntax for inline code highlighting. Even using double or tripple code, code is always rendered with `` around code.
Instead it only supports code blocks:
# Example of code highlighting
input_string_var = input("Enter some data: ")
print("You entered: {}".format(input_string_var))