missing config info

This commit is contained in:
ryliejamesthomas 2023-10-25 16:37:08 +11:00
parent 331305f363
commit ae808987ec
1 changed files with 10 additions and 3 deletions

View File

@ -5,11 +5,18 @@ Theme fitting the Mediawiki 'timeless' skin, for use with the [Game Making Tools
## Installation
- Requires the Mediawiki extension 'Theme': https://www.mediawiki.org/wiki/Extension:Theme <br>
See instructions behind that link (you just put stuff in a folder and add a line to LocalSettings.php).
See instructions behind that link (Skin is included by default, so you might just need to edit a line to LocalSettings.php).
- Place this stylesheet within your wiki's `extensions/Theme/timeless` directory ('Timeless' is the skin it modifies).
- Within `extensions/Theme` there's a file called `extension.json`. You need to find the `ResourceModules` bit and add the theme there. For example mine looks like this:
- Within `extensions/Theme` there's a file called `extension.json`.
- You need to find the `ThemeModules` bit and add the theme there. For example mine looks like this:
```json
"ThemeModules": {
"timeless": [ "gmt" ]
},
```
- Then you need to find the `ResourceModules` bit and add the theme there. For example mine looks like this:
```json
"ResourceModules": {
"themeloader.skins.timeless.gmt": {
"styles": {
@ -20,7 +27,7 @@ See instructions behind that link (you just put stuff in a folder and add a line
}
},
```
- NB: I only have one theme set-up though! Each theme you want to use needs it's own 'module'.
- NB: I only have one theme set-up though! Each theme you want to use needs it's own 'module'. You need to separate each module with a comma.
### Extensionless Alternative