Compare commits
2 Commits
c140f855d7
...
85c51aea14
Author | SHA1 | Date |
---|---|---|
David Thurstenson | 85c51aea14 | |
David Thurstenson | 9ea466d5fb |
|
@ -9,18 +9,18 @@ A fork of [risotto](https://github.com/joeroe/risotto).
|
|||
The easiest way to install the theme is to clone this repository into your site's `themes` directory:
|
||||
|
||||
```shell
|
||||
git clone https://git.thurstylark.com/thurstylark/tlwiki-hugo-theme.git
|
||||
git clone https://git.thurstylark.com/thurstylark/tlwiki-hugo-theme.git themes/tlwiki
|
||||
```
|
||||
|
||||
If your site is already a git repository, you can add the theme as a submodule instead:
|
||||
|
||||
```shell
|
||||
git submodule add https://git.thurstylark.com/thurstylark/tlwiki-hugo-theme.git
|
||||
git submodule add https://git.thurstylark.com/thurstylark/tlwiki-hugo-theme.git themes/tlwiki
|
||||
```
|
||||
|
||||
## Configure
|
||||
|
||||
To use the theme, add `theme = tlwiki-hugo-theme` to your site's `config.toml` or `config.yaml`.
|
||||
To use the theme, add `theme = tlwiki` to your site's `config.toml` or `config.yaml`.
|
||||
|
||||
See `exampleSite/config.toml` for the theme-specific parameters you need to add to your site's `config.toml` or `config.yaml` to configure the theme.
|
||||
|
||||
|
@ -29,7 +29,7 @@ See `exampleSite/config.toml` for the theme-specific parameters you need to add
|
|||
If you installed the theme using `git clone`, pull the repository to get the latest version:
|
||||
|
||||
```shell
|
||||
cd themes/tlwiki-hugo-theme
|
||||
cd themes/tlwiki
|
||||
git pull
|
||||
```
|
||||
|
||||
|
|
15
theme.toml
15
theme.toml
|
@ -1,16 +1,15 @@
|
|||
name = "risotto"
|
||||
name = "tlwiki"
|
||||
license = "MIT"
|
||||
licenselink = "https://github.com/joeroe/risotto/blob/master/LICENSE"
|
||||
description = "A minimalist, responsive theme inspired by terminal ricing aesthetics."
|
||||
licenselink = "https://git.thurstylark.com/thurstylark/tlwiki-hugo-theme/src/branch/main/LICENSE"
|
||||
description = "The style and layout for Thurstylark's Wiki"
|
||||
|
||||
homepage = "https://github.com/joeroe/risotto"
|
||||
demosite = "https://risotto.joeroe.io"
|
||||
homepage = "https://git.thurstylark.com/thurstylark/tlwiki-hugo-theme"
|
||||
demosite = "https://wiki.thurstylark.com/"
|
||||
|
||||
tags = ["responsive", "minimal", "dark mode"]
|
||||
features = []
|
||||
min_version = "0.41.0"
|
||||
|
||||
[author]
|
||||
name = "Joe Roe"
|
||||
homepage = "https://joeroe.io"
|
||||
|
||||
name = "Thurstylark"
|
||||
homepage = "https://wiki.thurstylark.com/"
|
||||
|
|
Loading…
Reference in New Issue