码迷,mamicode.com
首页 > 其他好文 > 详细

hugo搭建个人博客

时间:2019-11-26 13:15:26      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:ldd   win7 64   theme   art   tee   内容   short   https   文章   

本地先安装git

1. 下载hugo,并配置好环境变量

我这里win7 64位,选择该版本下载

技术图片

将解压后的hugo.exe,配置到环境变量中,如下图所示表明配置成功

hugo version

技术图片

2. 生成本地站点

hugo new site wiki

技术图片

3. 选择主题

这里选择其中一款

cd wiki
cd themes
git clone https://github.com/dplesca/purehugo.git

4. 新建文章

hugo new post/my_first_blog.md

写入markdown内容

5. 预览

hugo server --theme=purehugo --buildDrafts
http://localhost:1313/purehugo/

技术图片
至此本地编写博客基本完成

6. 创建码云项目

可以参考该文档
这里创建项目名应为an1993不需要an1993.gitee.io
技术图片

配置config.toml

baseurl = "https://an1993.gitee.io/"
languageCode = "zh-CN"
title = "足迹人生"
theme = "purehugo"
Paginate = 10
disqusShortname = "john"

[params]

7. 生成静态页面

hugo --theme=purehugo

此时生成public目录
技术图片

8. 将public目录push到码云创建的仓库中去

cd public/
git init
git add .
git commit -m "first commit"
git remote add origin git@gitee.com:an1993/an1993.gitee.io.git
git push -u origin master

技术图片

9.开启码云的page服务

技术图片

技术图片

10. 部署完成

技术图片

hugo搭建个人博客

标签:ldd   win7 64   theme   art   tee   内容   short   https   文章   

原文地址:https://www.cnblogs.com/ifme/p/11934711.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!