diff options
author | Jorge Ou <8276144+jpokan@users.noreply.github.com> | 2022-06-27 11:16:51 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-27 11:16:51 -0500 |
commit | 81eda36285e1a6a2fb98201655d86114e75a74ef (patch) | |
tree | 19fa3719fce44e88c5eed90f82cc4a055f06b6f8 /docs | |
parent | 9eb6c4a0dfaed86713952da19a8aa5079e97addb (diff) | |
download | gitea-81eda36285e1a6a2fb98201655d86114e75a74ef.tar.gz gitea-81eda36285e1a6a2fb98201655d86114e75a74ef.zip |
Fix custom folder name in customization docs (#20148)
Diffstat (limited to 'docs')
-rw-r--r-- | docs/content/doc/advanced/customizing-gitea.en-us.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/doc/advanced/customizing-gitea.en-us.md b/docs/content/doc/advanced/customizing-gitea.en-us.md index b97ba03482..3381c66d84 100644 --- a/docs/content/doc/advanced/customizing-gitea.en-us.md +++ b/docs/content/doc/advanced/customizing-gitea.en-us.md @@ -335,8 +335,8 @@ The list of themes a user can choose from can be configured with the `THEMES` va To make a custom theme available to all users: -1. Add a CSS file to `$GITEA_PUBLIC/public/css/theme-<theme-name>.css`. - The value of `$GITEA_PUBLIC` of your instance can be queried by calling `gitea help` and looking up the value of "CustomPath". +1. Add a CSS file to `$GITEA_CUSTOM/public/css/theme-<theme-name>.css`. + The value of `$GITEA_CUSTOM` of your instance can be queried by calling `gitea help` and looking up the value of "CustomPath". 2. Add `<theme-name>` to the comma-separated list of setting `THEMES` in `app.ini` Community themes are listed in [gitea/awesome-gitea#themes](https://gitea.com/gitea/awesome-gitea#themes). |