💡 Hexo is a straightforward and fast blog static site framework with various themes you can select from. The following will introduce how I build this blog site with Hexo and hexo-theme-cactus.
Now, you can visit your basic Hexo blog at http://localhost:4000. Hexo will watch for all file changes and automatically render the site. You can press Ctrl+C to stop the server.
2.3. Posting your first blog
1
$ hexo new post "my first post"
Restart the hexo server, and you will see your first post!
2.4. Let’s write something
Before writing the first blog, let’s take a look at the Hexo file structure.
As we can see, the new post “my first post” has been created inside the source/_posts folder, and all of your posts will be stored in this folder if not assigned categories. By default, Hexo has created a hello-world.md tutorial post for us.
Now, you can add any content to this new post.
1 2 3 4 5 6 7 8 9
$ vim ~/blog/source/_posts/my-first-post.md
--- title: my first post date: 2022-08-21 00:50:27 tags: ---
Ciao! This is my first Hexo blog post!
Press Esc and then type :wq to quit Vim. Restart Hexo server and refresh http://localhost:4000, you will see the post.
2.5. Generating static files
1
$ hexo generate
All static files will be generated under /blog/public/ folder.
3. Changing the theme
3.1. installing hexo-theme-cactus
1 2
$ cd ~/blog $ git clone https://github.com/probberechts/hexo-theme-cactus.git themes/cactus
3.2. Setting the Theme
Modify the value of theme: in _config.yml file to cactus, and restart Hexo server.
Create a new public repo named username.github.io on your Github, make sure to get the username right, if the repo name doesn’t match with your username, it won’t work.
1 2
$ cd ~ $ git clone https://github.com/username/username.github.io
Generating Hexo public files
1 2 3
$ cd ~/blog $ hexo clean $ hexo generate
Copy all the files generated under ~/blog/public to ~ @/username.github.io
1
$ cp -r ~/blog/public/* ~/username.github.io/
Push it
1 2 3 4
$ cd ~/username.github.io/ $ git add . $ git commit -m "Initial commit" $ git push -u origin main
Wait for a few minutes, then go to username.github.io on a browser, you can see your new blog on Github Pages, and you’re done!
4.2. One-command deployment
Hexo provides a more straightforward way to deploy your site. First, install hexo-deployer-git
1 2
$ cd ~/blog $ npm install hexo-deployer-git --save
Next, add configs to the bottom of the _config.yml file as follows.
1 2 3 4
deploy: type: git repo: https://github.com/<username>/<project> branch: main