Jask

Jask

记录简简单单的生活
twitter
follow
email
telegram
tg_channel

搭建hugo靜態博客(搭建篇)

1. 準備工作#

2. 搭建站點#

新建 hugo 站點hugo new site your-blog-site

目錄格式應該是這樣的

---archetypes

---assets

---content

---date

---i18n

---layout

---static

---themes

---hugo.toml

3. 更改主題#

  • 將主題文件拖入themes

  • 在 hugo.toml 中添加如下代碼:

    baseURL = "https://your-site.com"
    title = "your-site-name"
    languageCode = "en-us"
    theme = "name"#主題文件夾名字需要和這個一致
    

4. 新建頁面#

  • 在 content 中新建一個archive.md
title: "archive"
layout: "archives"
url: "/archives/"
summary: archives

5. 新建文章#

在 git 中輸入

hugo new /content/posts/the-first-post.md

6. 部署站點到本地#

hugo server -D

載入中......
此文章數據所有權由區塊鏈加密技術和智能合約保障僅歸創作者所有。