Looking to build and publish a new Hugo Blox?
Hugo Blox makes it easy to create a beautiful website for free, customizing your site without code by using drag-and-drop blocks (aka blox) rendered with Hugo.
- Each blox consists of an HTML file and an optional CSS style file
- Design your blox with Go Templating, CSS, and Tailwind
- Unless you are already familiar with Tailwind, it's recommended to use vanilla CSS as Tailwind styles require an extra compilation step prior to use
- Click the Use This Template button on GitHub
- Name your repository with an appropriate name for your blox collection, such as
johns-hugo-blox
- Name your repository with an appropriate name for your blox collection, such as
- Browse your new GitHub project, click the
go.mod
file, and then the βοΈ pencil button to edit it- Replace the placeholder URL in
go.mod
with your new GitHub URL in the formmodule github.com/<USERNAME>/<COLLECTION-NAME>
where<USERNAME>
is your GitHub username and<COLLECTION-NAME>
is a name for your collection of blox - Scroll to the bottom and click Commit Changes to save
- Replace the placeholder URL in
- Browse to the
blox/
folder, clickmy-block.html
, and click the βοΈ pencil button to edit it- Rename
my-block.html
in the text box to a unique ID in the formgithub.<USERNAME>.<BLOCK-NAME>.html
, again replacing<USERNAME>
with your GitHub username and<BLOCK-NAME>
with your block name. It's important to provide this globally unique block name, otherwise another block can conflict with your block. - Repeat the above step to rename the style file,
my-block.css
- Scroll to the bottom and click Commit Changes to save
- Rename
- Edit the HTML for your new block
- Design your blox with Go Templating, CSS, and Tailwind
- You can access page and block (page section) variables using
$page
and$block
, respectively - Check out the built-in blocks for inspiration
Say your GitHub username is pikachu
and you wish to create a block named pokemon
:
- We click Use This Template and enter
pokemon-hugo-blox
as the project name - We replace the first line of
go.mod
with the GitHub repository URLmodule github.com/pikachu/hugo-blox-pokemon
- We browse to the
blox/
folder, and renamemy-block.html
togithub.pikachu.pokemon.html
- We rename
my-block.css
togithub.pikachu.pokemon.css
- We customize the HTML in
github.pikachu.pokemon.html
and the style ingithub.pikachu.pokemon.css
- We add the block to our site and share the block with the community following the guide below
- Install the block by referencing it in your
config/_defaults/config.yaml
:module: imports: # Your block's GitHub URL (replace <USERNAME> and <COLLECTION-NAME> with your GitHub username and block collection name) - path: github.com/<USERNAME>/hugo-blox-<COLLECTION-NAME>
- Create an instance of your block in a landing page, such as in your homepage at
content/_index.md
:--- title: My page type: landing # Add your page sections below # Replace <USERNAME> and <BLOCK-NAME> with your GitHub username and block name, respectively. sections: - block: 'github.<USERNAME>.<BLOCK-NAME>' content: title: My title text: Add any **markdown** formatted content here - text, images, videos, galleries - and even HTML code! ---
Add the hugo-blox tag to your block's GitHub repository to help other users find it.