開発環境
- macOS Catalina - Apple (OS)
- Emacs (Text Editor)
- Windows 10 Pro (OS)
- Visual Studio Code (Text Editor)
- Hugo
Build Websites With Hugo: Fast Web Development With Markdown (Brian P. Hogan(著)、Pragmatic Bookshelf)のChapter 3(Building a Basic Theme)、Your Turn 3.の解答を求めてみる。
portfolio/config.toml
baseURL = "http://example.org/"
languageCode = "ja-jp"
title = "Kamimura's Site"
theme = "hello-friend-ng"
入出力結果(Zsh、PowerShell、Terminal)
% tree themes/hello-friend-ng
themes/hello-friend-ng
├── CHANGELOG.md
├── CONTRIBUTING.md
├── LICENSE.md
├── README.md
├── archetypes
│ ├── default.md
│ └── posts.md
├── assets
│ ├── js
│ │ ├── main.js
│ │ ├── menu.js
│ │ ├── prism.js
│ │ └── theme.js
│ └── scss
│ ├── _buttons.scss
│ ├── _fonts.scss
│ ├── _footer.scss
│ ├── _header.scss
│ ├── _list.scss
│ ├── _logo.scss
│ ├── _main.scss
│ ├── _menu.scss
│ ├── _mixins.scss
│ ├── _normalize.scss
│ ├── _prism.scss
│ ├── _sharing-buttons.scss
│ ├── _single.scss
│ ├── _variables.scss
│ └── main.scss
├── data
│ └── langFlags.yaml
├── docs
│ ├── config.md
│ ├── favicons.md
│ └── svgs.md
├── exampleSite
│ ├── config.toml
│ ├── content
│ │ ├── about.md
│ │ └── posts
│ │ ├── creating-a-new-theme.fr.md
│ │ ├── creating-a-new-theme.md
│ │ ├── goisforlovers.fr.md
│ │ ├── goisforlovers.md
│ │ ├── hugoisforlovers.fr.md
│ │ ├── hugoisforlovers.md
│ │ ├── migrate-from-jekyll.fr.md
│ │ └── migrate-from-jekyll.md
│ └── resources
│ └── _gen
│ └── assets
│ └── scss
│ └── scss
│ ├── main.scss_de1a7f5f1c8c46959803c429bb697ff0.content
│ └── main.scss_de1a7f5f1c8c46959803c429bb697ff0.json
├── i18n
│ ├── de.toml
│ ├── en.toml
│ ├── es.toml
│ ├── fr.toml
│ ├── hi.toml
│ ├── it.toml
│ ├── lmo.toml
│ ├── ml.toml
│ ├── pt-br.toml
│ └── tr.toml
├── images
│ ├── screenshot.png
│ └── tn.png
├── layouts
│ ├── 404.html
│ ├── _default
│ │ ├── baseof.html
│ │ ├── list.html
│ │ └── single.html
│ ├── index.html
│ ├── partials
│ │ ├── favicons.html
│ │ ├── footer.html
│ │ ├── head.html
│ │ ├── header.html
│ │ ├── javascript.html
│ │ ├── logo.html
│ │ ├── menu.html
│ │ ├── pagination.html
│ │ ├── sharing-buttons.html
│ │ ├── social-icons.html
│ │ ├── svg.html
│ │ └── theme-icon.html
│ ├── posts
│ │ ├── rss.xml
│ │ └── single.html
│ └── shortcodes
│ └── image.html
├── static
│ └── fonts
│ ├── Inter-UI-Bold.woff
│ ├── Inter-UI-Bold.woff2
│ ├── Inter-UI-BoldItalic.woff
│ ├── Inter-UI-BoldItalic.woff2
│ ├── Inter-UI-Italic.woff
│ ├── Inter-UI-Italic.woff2
│ ├── Inter-UI-Medium.woff
│ ├── Inter-UI-Medium.woff2
│ ├── Inter-UI-MediumItalic.woff
│ ├── Inter-UI-MediumItalic.woff2
│ ├── Inter-UI-Regular.woff
│ └── Inter-UI-Regular.woff2
└── theme.toml
23 directories, 86 files
%
0 コメント:
コメントを投稿