forked from mirrors/hugo-theme-terminal
Compare commits
7 Commits
Author | SHA1 | Date | |
---|---|---|---|
5a2b4c0f1f | |||
973642048a | |||
855bbc2f09 | |||
2cbfdf00f6 | |||
ba3681ca55 | |||
50d2f96b2d | |||
a2daa38408 |
13
README.md
13
README.md
@ -23,6 +23,7 @@
|
|||||||
- [How to edit the theme](#how-to-edit)
|
- [How to edit the theme](#how-to-edit)
|
||||||
- [Found a bug?](#bug)
|
- [Found a bug?](#bug)
|
||||||
- [New cool idea or feature](#feature)
|
- [New cool idea or feature](#feature)
|
||||||
|
- [Support](#support)
|
||||||
- [License](#license)
|
- [License](#license)
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
@ -129,7 +130,7 @@ This will clone the repository directly to the `themes/terminal` directory.
|
|||||||
git submodule add -f https://github.com/panr/hugo-theme-terminal.git themes/terminal
|
git submodule add -f https://github.com/panr/hugo-theme-terminal.git themes/terminal
|
||||||
```
|
```
|
||||||
|
|
||||||
This will install the repository as a sumbodule in the `themes/terminal` directory.
|
This will install the repository as a submodule in the `themes/terminal` directory.
|
||||||
|
|
||||||
⚠️ If you encounter any issues with:
|
⚠️ If you encounter any issues with:
|
||||||
|
|
||||||
@ -159,6 +160,10 @@ languageCode = "en-us"
|
|||||||
theme = "terminal"
|
theme = "terminal"
|
||||||
pagination.pagerSize = 5
|
pagination.pagerSize = 5
|
||||||
|
|
||||||
|
# Required for Chroma and the custom syntax highlighting.
|
||||||
|
[markup.highlight]
|
||||||
|
noClasses = false
|
||||||
|
|
||||||
[params]
|
[params]
|
||||||
# dir name of your main content (default is `content/posts`).
|
# dir name of your main content (default is `content/posts`).
|
||||||
# the list of set content will show up on your index page (baseurl).
|
# the list of set content will show up on your index page (baseurl).
|
||||||
@ -303,8 +308,12 @@ This will help keeping the theme close to its roots, and also allow anyone who w
|
|||||||
|
|
||||||
Sounds OK? Cool, let's rock! 🤘
|
Sounds OK? Cool, let's rock! 🤘
|
||||||
|
|
||||||
|
## Support
|
||||||
|
|
||||||
|
If you like what I'm doing and want to support my work. You can do it [here](https://ko-fi.com/pan_r). Thank you! ♥️
|
||||||
|
|
||||||
## License
|
## License
|
||||||
|
|
||||||
Copyright © 2019-2025 Radosław Kozieł ([@panr](https://radoslawkoziel.pl/))
|
Copyright © 2019-2025 Radek Kozieł ([@panr](https://rkoziel.com/))
|
||||||
|
|
||||||
The theme is released under the MIT License. Check the [original theme license](https://github.com/panr/hugo-theme-terminal/blob/master/LICENSE.md) for additional licensing information.
|
The theme is released under the MIT License. Check the [original theme license](https://github.com/panr/hugo-theme-terminal/blob/master/LICENSE.md) for additional licensing information.
|
||||||
|
@ -3,7 +3,6 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
pre:not(.chroma) {
|
pre:not(.chroma) {
|
||||||
margin: 20px 0;
|
|
||||||
padding: 10px;
|
padding: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -20,6 +19,10 @@ pre code {
|
|||||||
|
|
||||||
code {
|
code {
|
||||||
color: var(--accent);
|
color: var(--accent);
|
||||||
|
text-size-adjust: 100%;
|
||||||
|
-ms-text-size-adjust: 100%;
|
||||||
|
-moz-text-size-adjust: 100%;
|
||||||
|
-webkit-text-size-adjust: 100%;
|
||||||
}
|
}
|
||||||
|
|
||||||
.highlight {
|
.highlight {
|
||||||
|
@ -15,6 +15,7 @@ html {
|
|||||||
*::before,
|
*::before,
|
||||||
*::after {
|
*::after {
|
||||||
box-sizing: inherit;
|
box-sizing: inherit;
|
||||||
|
word-break: break-word;
|
||||||
}
|
}
|
||||||
|
|
||||||
body {
|
body {
|
||||||
|
@ -10,5 +10,4 @@ min_version = 0.90
|
|||||||
|
|
||||||
[author]
|
[author]
|
||||||
name = "panr"
|
name = "panr"
|
||||||
homepage = "https://radoslawkoziel.pl"
|
homepage = "https://rkoziel.com"
|
||||||
twitter = "https://twitter.com/panr"
|
|
||||||
|
Reference in New Issue
Block a user