-
Notifications
You must be signed in to change notification settings - Fork 0
3. Structure
Rick Cogley edited this page Nov 11, 2024
·
1 revision
サイトファイルは次の通り:
.
├── .github // GHワークフロー用スクリップト
│ └── workflows
│ └── deploy.yml
├── .vscode // VSコード設定
│ ├── julie_portfolio.code-workspace
│ └── settings.json
├── _site // ビルド済みサイトファイル
│ ├── about
│ │ ├── index.html
│ │ └── index.html.br // Brotli圧縮済みファイル
│ ├── archive
│ │ └── oldindex.zip
│ ├── assets
│ │ ├── Git-icon-white.svg
│ │ ├── Hibiscus.jpg
│ │ ├── Hibiscus.png
│ │ ├── Hibiscus.webp
...
│ ├── portfolio
│ │ ├── corolla_lp
│ │ └── nn-2024
│ ├── showcase
│ │ ├── hachijojima-sunset_watercolor
│ │ │ ├── index.html
│ │ │ └── index.html.br
...
│ │ ├── private //パスワード掛かっている
│ │ │ ├── fire-extinguisher_flyer
│ │ │ │ ├── index.html
│ │ │ │ └── index.html.br
│ │ │ ├── kanshin-breaker-shikyuu_flyer
│ │ │ │ ├── index.html
│ │ │ │ └── index.html.br...
│ │ ├── index.html
│ │ └── index.html.br
│ ├── feed.rss
│ ├── index.html
│ ├── index.html.br
│ ├── julie_cogley_jp_site.zip //毎ビルド作成されるZIP
│ ├── julie_cogley_jp_tree.html //サイトファイルのTree
│ ├── robots.txt
│ ├── sitemap.xml
│ ├── styles.css
│ ├── styles.css.br
│ └── styles.css.map
├── src //ビルド前ファイル
│ ├── _data
│ │ └── jp-holidays.json //コンフィグで引っ張っている祭日/祝日データ
│ ├── _includes
│ │ ├── layouts
│ │ │ └── base.vto //ベースとなるVento Layout
│ │ └── templates //ベースで使うテンプレート
│ │ ├── footer.vto
│ │ ├── ld-person.vto
│ │ └── nav.vto
│ ├── archive
│ │ └── oldindex.zip
│ ├── assets //色んな画像など、ビルド済みサイトにコピー
│ │ ├── Git-icon-white.svg
│ │ ├── Hibiscus.jpg...
│ ├── showcase //各ショーケースページ
│ │ ├── _data.yml
│ │ ├── fire-extinguisher_flyer.vto
│ │ ├── hachijojima-sunset_watercolor.vto
│ │ ├── index.vto
│ │ ├── kanshin-breaker-shikyuu_flyer.vto
│ │ ├── kanshin-breaker_flyer.vto
│ │ ├── maruntain-top_tshirt.vto
│ │ ├── nn-2024.vto
│ │ ├── sea-turtle_painting.vto
│ │ ├── whitening_flyer.vto
│ │ └── youtube-gadget_flyer.vto
│ ├── static //そのままコピー、静的ファイル
│ │ └── portfolio
│ │ ├── corolla_lp
│ │ └── nn-2024
│ ├── _data.ts //Ventoで使うConstant
│ ├── _data.yml //サイトで使う変数
│ ├── about.vto //アバウトページ
│ ├── index.vto //トップページ
│ └── styles.css //CSS
├── .editorconfig
├── .gitattributes
├── .gitignore
├── README.md //リポトップに表示される情報
├── _cms.ts //CMSのコンフィグ
├── _config.ts //サイトのルメコンフィグ
├── deno.json //Deno設定
├── deno.lock
└── serve.ts //ウェブサーバー