wiki.techinc.nl/skins
Translation updater bot dccd645af7 Update git submodules
* Update skins/MinervaNeue from branch 'REL1_43'
  to bd38c5b02e85cb0ca5408826c7e4cc871c91129f
  - Localisation updates from https://translatewiki.net.
    
    Change-Id: I00d9e1116abaabd67d495435736aecd107d462a1
2025-03-18 06:15:55 +00:00
..
MinervaNeue@bd38c5b02e Update git submodules 2025-03-18 06:15:55 +00:00
MonoBook@4f2266626b Update git submodules 2025-02-25 06:31:11 +00:00
Timeless@6f5de50f02 Update git submodules 2025-03-18 06:15:53 +00:00
Vector@c5ec057367 Update git submodules 2025-03-18 06:15:54 +00:00
.gitignore
.vsls.json
README

== User Information ==

Skins, such as the default skin Vector, are distributed separately. Drop them
into this directory and enable as per the skin's installation instructions.

You can find a list of available skins at
<https://www.mediawiki.org/wiki/Special:MyLanguage/Category:All_skins>,
and more information about installing and configuring skins at
<https://www.mediawiki.org/wiki/Special:MyLanguage/Manual:Skin_configuration>.

If you are a developer, you might want to fetch the skin tree in another
directory and make a symbolic link:

 mediawiki/skins$ ln -s ../../skins-trunk/FooBar

The default skin Vector can be installed by cloning from Git:
    git clone https://gerrit.wikimedia.org/g/mediawiki/extensions/Vector

Other skins are also available:
    https://gerrit.wikimedia.org/g/mediawiki/extensions


Please note that under POSIX systems (Linux...), parent of a symbolic path
refers to the link source, NOT to the target! You should check the env
variable MW_INSTALL_PATH in case the extension is not in the default location.

The following code snippet lets you override the default path:

 $IP = getenv( 'MW_INSTALL_PATH' );
 if ( $IP === false ) {
	$IP = __DIR__ . '/../..';
 }
 require_once "$IP/maintenance/Maintenance.php"; // a MediaWiki core file