当前位置:网站首页>Hugo builds a personal blog
Hugo builds a personal blog
2022-08-05 06:13:00 【CrazyQiQi】
Introduction
If you want to build a static website, one way is to write your own creation, which has a lot of room to play, but the workload is relatively large; if you want to have a website of your own in a short time, you canUse a static site generator.
Here is a summary of static website generatorsGitHub address, there are indeed too many website generators now.
I chose Hugo implemented in Go language as my static website generator. On the one hand, it was the first generator I came into contact with.As a rising star, it is increasingly accepted by everyone.
Here I will introduce how to build a static web page with hugo. There are many tutorials about building a personal blog with Hugo on the Internet, but I will take the trouble to record it.
My blog addresshttps://crazyqii.github.ioh6>
Of course, this article is based on Windows operation. For macOS system, please refer to Hugo official websiteHugo
By default you have installed Git and registered github
Of course, this article is based on Windows operation. For macOS system, please refer to Hugo official websiteHugo
By default you have installed Git and registered github
Quick Start
1. Download Hugo
I chose hugo_0.55.6_Windows-64bit.zip
- Create Hugo/bin directory and download to bin file
- We can see a hugo.exe executable file about hugo, add the download path to the system environment variable.
- Open the cmd console to check if the installation is successful, as shown below

2. Generate website
- Create a sites folder dedicated to the website under the Hugo file.
- The cmd console enters the current folder path, and as an administrator, enter hugo new site myblog (custom) to create a site.
- Of course, there is also an easy way to do that, if you have Git bash, right-click on the current folder, select Git bash and enter the command, it will be OK

- In this way, a blank site is quickly generated. At this time, if you enter the hugo server command (run Hugo), and then enter localhost:1313 in the browser, you will find that it is blank, mainly because everything in it is empty.No, we need to download the theme ourselves.
3. Download the skin theme
- Select your favorite theme in Hugo theme, jump to the relevant github page, clone to your own blog/themes filein the folder.
git clone https://github.com/spf13/hyde.git
4. Create an article
- cd to the /myblog path, enter the command, create the article
$ hugo new first.md
- You will see the article you just created in the Hugo\Sites\myblog\content path, which is a document in Markdown format
— — —
title: “First”
date: 2019-06-17T12:52:29+08:00
draft: false
— — —
- At this point, re-enter localhost:1313 in the browser to see the content
5. Deploy the website
Blogging is for sharing, so you need to deploy your website for more people to see
- Create a new repository Repository on github and name it crazyqii.github.io (crazyqii is your github username)
- Enter the command to automatically generate static files public
$ hugo --theme=hyde --baseUrl="http://crazyqii.github.io/”
- cd into the public folder and push the files in public to the remote repository
$ git init
$ git remote add origin h ttps://github.com/crazyqii/crazyqii.github.io.git
$ git add -A
$ git commit -m “firstcommit"
$ git push -u origin master
- Visit https://crazyqii.github.io , you can see the website generated by the quick build
An important message is inserted here!!!
If you like cold knowledge,
eager to explore the magical world,
want to be an omniscient scholar,
come and follow us.

边栏推荐
猜你喜欢

ACLs and NATs

Autoware--北科天绘rfans激光雷达使用相机&激光雷达联合标定文件验证点云图像融合效果

IP地址及子网的划分

硬盘分区和永久挂载
![[Day6] File system permission management, file special permissions, hidden attributes](/img/ec/7fb3fa671fac8abf389844c0f4fbe7.png)
[Day6] File system permission management, file special permissions, hidden attributes

传输层协议(TCP3次握手)

入门文档12 webserve + 热更新

TCP/IP四层模型

Getting Started Documentation 10 Resource Mapping

Getting Started Document 09 Standalone watch
随机推荐
Image compression failure problem
Getting Started 11 Automatically add version numbers
【Day1】VMware软件安装
Servlet跳转到JSP页面,转发和重定向
spark算子-map vs mapPartitions算子
Getting Started Document 09 Standalone watch
什么是阿里云·速成美站?
入门文档05-2 使用return指示当前任务已完成
[Pytorch study notes] 8. How to use WeightedRandomSampler (weight sampler) when the training category is unbalanced data
【Machine Learning】1 Univariate Linear Regression
Introductory document 05-2 use return instructions the current task has been completed
One-arm routing and 30% switch
The problem of redirecting to the home page when visiting a new page in dsf5.0
Apache configure reverse proxy
运维的高光时刻,从智能化开始
Unity中的GetEnumerator 方法及MoveNext、Reset方法
spark算子-parallelize算子
Getting Started Document 01 series in order
洞察互联网大趋势,读完这篇文章你就彻底了解中文域名
spark源码-任务提交流程之-7-流程梳理总结