Remove $wgScriptExtension (deprecated and ignored since 1.25)
[lhc/web/wiklou.git] / includes / templates / NoLocalSettings.mustache
1 <!DOCTYPE html>
2 <html lang="en" dir="ltr">
3 <head>
4 <meta charset="UTF-8" />
5 <title>MediaWiki {{wgVersion}}</title>
6 <style media="screen">
7 html, body {
8 color: #000;
9 background-color: #fff;
10 font-family: sans-serif;
11 text-align: center;
12 }
13
14 h1 {
15 font-size: 150%;
16 }
17 </style>
18 </head>
19 <body>
20 <img src="{{path}}resources/assets/mediawiki.png" alt="The MediaWiki logo" />
21
22 <h1>MediaWiki {{wgVersion}}</h1>
23 <div class="error">
24 {{#localSettingsExists}}
25 <p>LocalSettings.php not readable.</p>
26 <p>Please correct file permissions and try again.</p>
27 {{/localSettingsExists}}
28 {{^localSettingsExists}}
29 <p>LocalSettings.php not found.</p>
30 {{#installerStarted}}
31 <p>Please <a href="{{path}}mw-config/index.php">complete the installation</a> and download LocalSettings.php.</p>
32 {{/installerStarted}}
33 {{^installerStarted}}
34 <p>Please <a href="{{path}}mw-config/index.php">set up the wiki</a> first.</p>
35 {{/installerStarted}}
36 {{/localSettingsExists}}
37 </div>
38 </body>
39 </html>