コマンドプロンプトのウィンドウを一番上にします。 Hugo\Sitesディレクトリに移動します
cd c:\Hugo\Sites
C:\Hugo\Sites>
と表示されれば、ディレクトリ移動は完了です
まず、example.org 用のwebページを作るとします。
C:\Hugo\Sites>
と出ているところから
hugo new site example1
と入力しリターンを押して
C:\Hugo\Sites>hugo new site example1
Congratulations! Your new Hugo site is created in C:\Hugo\Sites\example1.
Just a few more steps and you're ready to go:
1. Download a theme into the same-named folder.
Choose a theme from https://themes.gohugo.io/, or
create your own with the "hugo new theme <THEMENAME>" command.
2. Perhaps you want to add some content. You can add single files
with "hugo new <SECTIONNAME>\<FILENAME>.<FORMAT>".
3. Start the built-in live server via "hugo server".
Visit https://gohugo.io/ for quickstart guide and full documentation.
と表示されれば、新しいサイト example1 用に基本的なファイルの生成が成功しました。 生成したファイルは huge new site example1 の “example1” から C:\Hugo\Sites\example1 になります。
現在のワークディレクトリは C:\Hugo\Sites
ですので、
example1 に移動します
cd example1
プロンプトが
C:\Hugo\Sites\example1>
になります。