hugo是快速的静态博客系统,可部署于github。我选择的是LoveIt主题,当然even也是很好的主题,但更适合文字博客,偏技术类博客loveit更现代,更适合。loveit功能很全,评论,搜索简单设置开箱即用,比较方便,设置文档也比较丰富。
安装hugo
archlinux下安装hugo非常简单,只需一条命令,一个文件。
配置hugo
- 建立博客
使用hugo建立名为blog的本地博客。
进入blog目录,初始化git,下载主题,可以使用github的submodule功能添加你喜欢的主题。下面以LoveIt主题为例,一般主题设置可以copy主题目录内 examplesite内内容到blog下使用。比较重要的是config.coml内设置。
1
2
3
|
cd blog
git init
git submodule add https://github.com/dillonzq/LoveIt.git themes/LoveIt
|
- 建文章并编译
不同主题要求的位置不同,需要注意,这点可以参照主题说明。
1
2
|
hugo new posts/<文章名>.md
hugo
|
1
|
hugo serve --buildDrafts
|
使用gihub管理blog和文章
我们需要建立两个repo,分别用于文章管理和博客发布。其中博客发布我使用的是建立<用户名>.github.io,相对比较简单。
1
2
3
4
5
6
|
cd publc
git init
git remote add <用于发布的repo地址>
git -u orgin push
rm -rf public
git submodule add <用于发布的repo地址> public
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#!/bin/sh
# If a command fails then the deploy stops
set -e
# Print out commands before executing them
set -x
printf "\033[0;32mDeploying updates to GitHub...\033[ 0m\n"
# Build the project.
hugo
# Go To Public folder
cd public
# Add changes to git.
git add .
# Commit changes.
msg="rebuilding site $(date)"
if [ -n "$*" ]; then
msg="$*"
fi
git commit -m "$
# Push source and build repos.
git push origin master
# Back to the origin folder
# cd ..
# rm -rf public
|
至此设置基本完成,如需上传文章需在blog下执行:
1
2
3
|
git add .
git commit ""
git push -u origin master
|
如需更新博客,需提前为的deploy.sh增加可运行属性:
1
2
|
chmod +x deploy.sh
./deploy.sh
|
LoveIt设置
编辑config.coml,
1
2
|
baseURL = "https://gihub博客repo/"
defaultContentLanguage = "zh-cn"
|
1
|
logo = "/images/kiss-wink-heart-regular.svg
|
此svg可从awesome font网站下载放入images目录。
其他机器使用
1
2
3
4
5
6
7
8
9
|
git clone <文章管理repo> blog
cd blog
git submodule init
git submodule update
cd public
git checkout master
cd ..
cd themes/LoveIt
git checkout master
|
配置自己域名
- 设置域名CNAME
在域名管理页面设置域名CNAME指向你的博客eopo。
- 设置博客repo
在博客仓库设置页面custom domain处填入你的域名,可勾选下面enforce HTTPS。