Hugo使い方メモ

Page content

使用テーマ

https://themes.gohugo.io/themes/github-style/#setup-readme

新規記事作成

$ hugo new post/title_of_the_post.md

静的ページ作成

$ hugo

Hugoサーバ立ち上げ

$ hogo server -D

別マシンからHugoサーバにアクセス

通常はローカルマシンでしかアクセスできないので、bind設定とURLを変更する。
baseURLはHugoサーバが動作しているIPを指定する。

$ hugo server -D --bind="0.0.0.0" --baseURL="http://192.168.*.*/"

記事の更新日を有効にする

config.tomlに以下の設定を追加することで更新日が追加される。
参考:アロハル

[frontmatter]
  lastmod = ':fileModTime'

画像貼り付け

https://hugo-de-blog.com/hugo-img/