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: "アーカイブ"
layout: "archives"
url: "/archives/"
summary: アーカイブ

5. 記事の新規作成#

git に入力

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

6. サイトをローカルにデプロイ#

hugo server -D

読み込み中...
文章は、創作者によって署名され、ブロックチェーンに安全に保存されています。