n_itsuki / Hugoの公開

Created Mon, 03 Jun 2024 19:17:54 +0900
306 Words

クイックスタート出来ない…

公式のQuick Start通りにやると上手く行かない

echo "theme = 'ananke'" >> hugo.toml

これを実行すると

WARN **** found no layout file for "HTML" for kind "page": You should create a template file which matches Hugo Layouts Lookup Rules for this combination.

正しくは

echo "theme = 'ananke'" >> config.toml

画像が表示されない…

<img src="/images/path-to-image"><br>

上記のように・普段HTMLに画像を埋め込むように書いても、画像が表示されなかった tomlファイルに以下を追記する

[markup]
    [markup.goldmark]
        [markup.goldmark.renderer]
            unsafe = true

記事が公開されない…

  • draftの設定をdraft:false -> draft: true に変更する
  • hugo コマンドを走らせる
    • これで書いた記事がpublicに生成される

メモ

tags: [hugo, taxonomy]
categories: [hugo]

``toml [taxonomies] category = ‘categories’ tag = ’tags'


上記のように書くと、タグ・カテゴリーを設定できる
url/categories/CATEGORY_NAME でアクセス可能。タグも同様