veltiosoft / vss

Easy-to-use static site generator
MIT License
32 stars 3 forks source link

設計: vss で取り扱うファイル構造などについて #15

Closed zztkm closed 1 year ago

zztkm commented 2 years ago

Webサイト構築の参考

https://developer.mozilla.org/ja/docs/Learn/Getting_started_with_the_web

zztkm commented 2 years ago

hugo の theme は以下のような構成でデフォルト生成される

hugo new theme test
cd themes/test

hugo/themes/test on  main [!?] on ☁️  (ap-northeast-1) 
❯ tree
.
├── LICENSE
├── archetypes
│   └── default.md
├── layouts
│   ├── 404.html
│   ├── _default
│   │   ├── baseof.html
│   │   ├── list.html
│   │   └── single.html
│   ├── index.html
│   └── partials
│       ├── footer.html
│       ├── head.html
│       └── header.html
├── static
│   ├── css
│   └── js
└── theme.toml

7 directories, 11 files