kaslaanka
A minimalist and text oriented blog/personal website theme for Hugo.
파일 탐색기
- hugo.yml
- default.md
- site.css
- default.md
- hidden.md
- kaslaanka-theme-demo.md
- lorem-ipsum.md
- readme.md
- unlisted.md
- hello.ru.md
- _index.md
- about.md
- single.html
- meta.html
- custom.css
- config.yml
- screenshot.png
- tn.png
- baseof.html
- list.html
- rss.xml
- section.html
- single.html
- sitemap.xml
- sitemapindex.xml
- taxonomy.html
- section.html
- single.html
- categories.html
- content.html
- face.html
- footer.html
- globallist.html
- header.html
- listlanguages.html
- meta.html
- projects.html
- scripts.html
- styles.html
- tag.html
- unlistedlist.html
- img.html
- readfile.html
- 404.html
- index.html
- custom.css
- custom.js
- .gitignore
- config.toml
- LICENSE
- README.md
- theme.toml
# CDN으로 사용하기
jsDelivrjsDelivr는 공개 GitHub 리포지토리를 별도 설정 없이 CDN으로 즉시 서빙합니다. 버전과 파일을 고르면 웹페이지에 바로 붙일 수 있는 링크와 예시 코드가 만들어집니다.
명령어 용어집
이 문서에서 사용된 명령어를 모아봤습니다. 낯선 명령어가 있다면 펼쳐서 확인해보세요.
edit
설명 보기 ▼
edit
Microsoft에서 만든 터미널 기반 텍스트 편집기.
더 많은 정보: <https://github.com/microsoft/edit>.
edit {{path/to/file}}
파일 열기:
tldr run-mailcap
자세한 내용은 원본 명령을 참고하세요:
<Ctrl f>{{pattern}}<Enter>
패턴 검색:
git init
설명 보기 ▼
git init
Initialize a new local Git repository.
git init
Initialize a new local repository:
git init {{[-b|--initial-branch]}} {{branch_name}}
Initialize a repository with the specified name for the initial branch:
git init --object-format sha256
Initialize a repository using SHA256 for object hashes (requires Git version 2.29+):
git submodule
설명 보기 ▼
git submodule
Inspect, update, and manage submodules.
git submodule
View existing submodules and the checked-out commit for each one:
git submodule update --init --recursive
Install a repository's submodules (listed in `.gitmodules`):
git submodule add {{repository_url}}
Add a Git repository as a submodule of the current one:
hugo serve
설명 보기 ▼
hugo serve
This command is an alias of `hugo server`.
tldr hugo server
View documentation for the original command:
hugo
설명 보기 ▼
hugo
템플릿 기반 정적 사이트 생성기. 모듈, 구성 요소 및 테마를 사용.
`server`와 같은 일부 하위 명령에는 자체 사용법 문서가 있음.
더 많은 정보: <https://gohugo.io/commands/>.
hugo new site {{path/to/site}}
새로운 Hugo 사이트 생성:
hugo new theme {{theme_name}}
새로운 Hugo 테마를 생성 (테마는 <https://themes.gohugo.io/>에서도 다운로드 할 수 있음):
hugo new {{section_name}}/{{page_name}}
새로운 페이지 생성:
link
설명 보기 ▼
link
기존 파일에 대한 하드 링크 생성.
더 많은 옵션은 `ln` 명령을 참조하세요.
더 많은 정보: <https://www.gnu.org/software/coreutils/manual/html_node/link-invocation.html>.
link {{path/to/existing_file}} {{path/to/new_file}}
기존 파일에 새로운 파일로 하드 링크 생성:
