NoLocalSettings.mustache 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  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. h1 {
  14. font-size: 150%;
  15. }
  16. </style>
  17. </head>
  18. <body>
  19. <img src="{{path}}resources/assets/mediawiki.png" alt="The MediaWiki logo" />
  20. <h1>MediaWiki {{wgVersion}}</h1>
  21. <div class="error">
  22. {{#localSettingsExists}}
  23. <p>LocalSettings.php not readable.</p>
  24. <p>Please correct file permissions and try again.</p>
  25. {{/localSettingsExists}}
  26. {{^localSettingsExists}}
  27. <p>LocalSettings.php not found.</p>
  28. {{#installerStarted}}
  29. <p>Please <a href="{{path}}mw-config/index.php">complete the installation</a> and download LocalSettings.php.</p>
  30. {{/installerStarted}}
  31. {{^installerStarted}}
  32. <p>Please <a href="{{path}}mw-config/index.php">set up the wiki</a> first.</p>
  33. {{/installerStarted}}
  34. {{/localSettingsExists}}
  35. </div>
  36. </body>
  37. </html>