blog系统-安装hugo
作者:互联网
文章目录
hugo搭建静态博客,这里演示mac
工具
- go
- hugo
安装
- mac自带go,因此win平台需要安装go
- mac采用brew的方式安装hugo:
brew install hugo
使用
建立站点
hugo new site blogs
看一下目录
.
├── archetypes
│ └── default.md // 这里是模版文件
├── config.toml // 这里是配置文件
├── content // 这里是文件内容
├── data
├── layouts
├── static
└── themes
6 directories, 2 files
安装一个主题,比较简单
- 推荐PaperMod:网站demo
// 这个主题比较简洁一点
git clone https://github.com/adityatelange/hugo-PaperMod themes/hugo-PaperMod --depth=1
- 替换配置文件
config.yom
为config.yml
baseURL: "http://dreamcat.ink/blog"
title: Dreamcat
paginate: 8
theme: hugo-PaperMod
enableInlineShortcodes: true
enableRobotsTXT: true
# googleAnalytics: UA-123-45
minify:
disableXML: true
# minifyOutput: true
languages:
en:
languageName: "English"
weight: 1
menu:
main:
- name: Archive
url: archives
weight: 5
- name: Search
url: search/
weight: 10
- name: Tags
url: tags/
weight: 10
l2:
languageName: "Lang2"
weight: 2
title: PaperModL2
profileMode:
enabled: true
title: PaperMod
# imageUrl: "#"
# imageTitle: my image
# imageWidth: 120
# imageHeight: 120
subtitle: "☄️ Fast | ☁️ Fluent | 标签:name,weight,url,安装,PaperMod,hugo,blog,true
来源: https://blog.csdn.net/weixin_43884073/article/details/115047713