-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
39 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
# あゆき's BLOG | ||
|
||
@aki と @sousuke0422 による共同ブログです。 | ||
このブログは Hugo を使用しています。 テーマは [hugo-theme-stack](https://github.com/CaiJimmy/hugo-theme-stack) を一部変更した上で使用しています。 | ||
実際に使用している[テンプレート](https://github.com/TeamBlackCrystal/hugo-theme-stack) | ||
|
||
## 動かし方・ビルド | ||
|
||
Hugoのインストール(scoop を使うことを想定しています) | ||
|
||
```bash | ||
# Windows | ||
scoop install hugo-extended | ||
``` | ||
|
||
ローカル用のサーバーを起動する | ||
|
||
```bash | ||
hugo server | ||
``` | ||
|
||
お試しビルドの方法 | ||
|
||
```bash | ||
hugo | ||
``` | ||
|
||
実行後に生成された `public` ディレクトリがビルド成果 | ||
|
||
## 記事の追加方法 | ||
|
||
> [!NOTE] | ||
> 記事の名前には英数記号のみがサポートされています。日本語はどうなるか分かりません。 | ||
```bash | ||
python helper.py new <post name> | ||
``` | ||
|
||
記事内の `draft = true` を `false` に変更すると表示されるようになります |