How to create site like this one!

create a blog like this

This website is generated with Hugo and Firebase in general.

How To

Using this documentation to create the blog.

Install hugo choosing one of this options.

Install the hugo theme:

git init
git submodule add https://github.com/hugo-fixit/FixIt.git themes/FixIt
git submodule update --remote --merge

Posts

To add a new post:

hugo new posts/first_post.md

Then add some informations in it. To make the post available change the field draft to true.

Serve

Run this command:

hugo server

Then go to localhost:1313 to see the website.

Deployment methods

There are some ways to make the blog available over the internet.

GCP Cloudbuild

Create the cloudbuild.yaml file.

0%