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