This is the source code for my personal website (https://jaydson.com/). I'm using Hugo static site generator.
If you're interested to build your website based on mine, feel free and follow the guidelines below.
Hugo is a general-purpose website framework. Technically speaking, Hugo is a static site generator. Unlike other systems which dynamically build a page every time a visitor requests one, Hugo does the building when you create your content. Since websites are viewed far more often than they are edited, Hugo is optimized for website viewing while providing a great writing experience.
Please check Hugo installing page -> https://gohugo.io/overview/installing/
Hugo is written in Go, so you'll first need to install it.
hugo new post/my-first-post.md
First, clone this repo and then.
I'm using the Casper theme, which is a "copy" of Ghost Casper theme (which I was using previously).
If you want to use Casper, just clone it to the themes
directory.
hugo server --theme=paper
Navigate to localhost:1313
and you'll probably see my personal blog locally.
I'm using Netlify, so the deploy is just a simple git push
.
Feel free to open issues ralated to my website or if you have any questions about the steps to get this thing working.