kaslaanka
A minimalist and text oriented blog/personal website theme for Hugo.
File Explorer
- 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
# Use via CDN
jsDelivrjsDelivr serves any public GitHub repository as a CDN with zero setup. Pick a version and a file to get a ready-to-paste link and snippet.
Command Glossary
Commands referenced in this DOCs, explained below.
edit
View Details ▼
edit
A terminal-based text editor from Microsoft.
edit {{path/to/file}}
Open a file:
tldr run-mailcap
View documentation for the original command:
<Ctrl f>{{pattern}}<Enter>
Search for a pattern:
git init
View Details ▼
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
View Details ▼
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
View Details ▼
hugo serve
This command is an alias of `hugo server`.
tldr hugo server
View documentation for the original command:
hugo
View Details ▼
hugo
Template-based static site generator.
Uses modules, components, and themes.
Some subcommands such as `server` have their own usage documentation.
hugo new site {{path/to/site}}
Create a new Hugo site:
hugo new theme {{theme_name}}
Create a new Hugo theme (themes may also be downloaded from <https://themes.gohugo.io/>):
hugo new {{section_name}}/{{page_name}}
Create a new page:
link
View Details ▼
link
Create a hard link to an existing file.
For more options, see the `ln` command.
link {{path/to/existing_file}} {{path/to/new_file}}
Create a hard link from a new file to an existing file:
