# サイトの作成
$ hugo new site new-site --format yml
$ cd new-site
# テーマの追加
$ git clone https://github.com/minetaro12/hugo-osan-theme themes/hugo-osan-theme
# テーマの追加(Submodule)
$ git submodule add -b master https://github.com/minetaro12/hugo-osan-theme themes/hugo-osan-theme
# サンプル設定ファイルのコピー
$ cp themes/hugo-osan-theme/example.config.yml config.yml
# テンプレートファイルのコピー
$ cp themes/hugo-osan-theme/archetypes/default.md archetypes/default.md
# 記事の作成
$ hugo new posts/hello.md
content/archives.md
---
title: "Archives"
layout: "archive"
---
content/search.md
---
title: "Search"
layout: "search"
---