当前位置:网站首页>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.

边栏推荐
- CIPU,对云计算产业有什么影响
- D39_向量
- Getting Started 03 Distinguish between development and production environments ("hot update" is performed only in the production environment)
- 新一代解析技术——云解析
- LeetCode面试题
- 解决这三大问题,运维效率将超90%的医院
- 网络布线与数制转换
- [Paper Intensive Reading] Rich Feature Hierarchies for Accurate Object Detection and Semantic Segmentation (R-CNN)
- [Pytorch study notes] 8. How to use WeightedRandomSampler (weight sampler) when the training category is unbalanced data
- 【Day8】使用LVM扩容所涉及的命令
猜你喜欢

lvm logical volume and disk quota

IP数据包格式(ICMP协议与ARP协议)

入门文档11 自动添加版本号

Getting Started Documentation 10 Resource Mapping

【Day8】Knowledge about disk and disk partition

阿里云视频点播

Hugo搭建个人博客

Introductory document 05-2 use return instructions the current task has been completed

线上问题排查流程
![[Paper Intensive Reading] The relationship between Precision-Recall and ROC curves](/img/8f/3c9944db96eef623779a5abe68355b.png)
[Paper Intensive Reading] The relationship between Precision-Recall and ROC curves
随机推荐
图片压缩失效问题
Apache configure reverse proxy
新一代解析技术——云解析
spark算子-repartition算子
专有宿主机CDH
D41_缓冲池
D39_坐标转换
Getting Started Documentation 10 Resource Mapping
LinkSLA坚持用户第一,打造可持续的运维服务方案
入门文档01 series按顺序执行
One-arm routing and 30% switch
Mongodb查询分析器解析
【机器学习】1单变量线性回归
js动态获取屏幕宽高度
硬盘分区和永久挂载
交换机原理
spark operator - map vs mapPartitions operator
I217-V network disconnection problem in large traffic under openwrt soft routing
腾讯云云函数SCF—入门须知
D39_欧拉角与四元数