kaslaanka

(★ 25)

A minimalist and text oriented blog/personal website theme for Hugo.

File Explorer

  • .gitignore
  • config.toml
  • LICENSE
  • README.md
  • theme.toml

# Use via CDN

jsDelivr

jsDelivr 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 ▼

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 ▼

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 ▼

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 ▼

This command is an alias of `hugo server`.

tldr hugo server

View documentation for the original command:

🔍

hugo

View Details ▼

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 ▼

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:

// repository documentation