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

加载中...
此文章数据所有权由区块链加密技术和智能合约保障仅归创作者所有。