├── web ├── 503.json ├── status.html ├── res │ ├── favicon.ico │ ├── favicon.png │ ├── apple-touch-icon.png │ ├── wikimedia_logo_black.png │ └── style.css ├── .htaccess └── 503.html └── README.md /web/503.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /web/status.html: -------------------------------------------------------------------------------- 1 | Status: MAINTENANCE 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # fundraising-maintenance 2 | Static pages for notices during maintenance 3 | -------------------------------------------------------------------------------- /web/res/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/fundraising-maintenance/master/web/res/favicon.ico -------------------------------------------------------------------------------- /web/res/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/fundraising-maintenance/master/web/res/favicon.png -------------------------------------------------------------------------------- /web/res/apple-touch-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/fundraising-maintenance/master/web/res/apple-touch-icon.png -------------------------------------------------------------------------------- /web/res/wikimedia_logo_black.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wmde/fundraising-maintenance/master/web/res/wikimedia_logo_black.png -------------------------------------------------------------------------------- /web/.htaccess: -------------------------------------------------------------------------------- 1 | DirectoryIndex 503.html 2 | ErrorDocument 503 /503.html 3 | RewriteEngine On 4 | 5 | RewriteCond %{HTTP_ACCEPT} application/(json|javascript) 6 | RewriteCond %{REQUEST_FILENAME} !-f 7 | RewriteCond %{REQUEST_FILENAME} !-d 8 | RewriteRule .* /503.json [L] 9 | 10 | RewriteCond %{REQUEST_FILENAME} !-f 11 | RewriteCond %{REQUEST_FILENAME} !-d 12 | RewriteRule .* - [R=503,L] 13 | -------------------------------------------------------------------------------- /web/res/style.css: -------------------------------------------------------------------------------- 1 | body { 2 | background-color: #f6f6f6; 3 | font-family: Helvetica, Arial, sans-serif; 4 | margin: 0 auto; 5 | } 6 | 7 | .maintenance-box { 8 | width: 45em; 9 | margin: 12em auto; 10 | } 11 | 12 | .maintenance-header { 13 | width: 45em; 14 | padding: 1em; 15 | font-size: 0.9em; 16 | font-weight: bold; 17 | border-radius: 0.4em 0.4em 0 0; 18 | border-color: #bac0cf; 19 | border-style: solid solid none; 20 | border-width: 0.1em 0.1em medium; 21 | background-color: #479ee7; 22 | color: white; 23 | text-align: center; 24 | } 25 | 26 | .maintenance-body { 27 | width: 38.5em; 28 | border-color: #bac0cf; 29 | border-style: solid; 30 | border-width: 0 0.1em 0.1em 0.1em; 31 | position: relative; 32 | padding: 1em 1.9em; 33 | background: #FFFFFF; 34 | display: flex; 35 | } 36 | 37 | .maintenance-body-logo { 38 | padding: 1em; 39 | } 40 | 41 | .maintenance-body-text { 42 | padding: 1em; 43 | } 44 | -------------------------------------------------------------------------------- /web/503.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | Spenden für Freies Wissen - Wikimedia Deutschland e.V. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 |
14 |
15 | Wartungsarbeiten 16 |
17 |
18 | 21 |
22 | Liebe Unterstützerin, lieber Unterstützer,

23 | toll, dass Sie heute bereit sind, sich für Freies Wissen einzusetzen. Leider müssen wir in diesem Moment im Hintergrund etwas aktualisieren. Daher können Sie jetzt nicht spenden. Bitte kommen Sie zu einem späteren Zeitpunkt wieder. Dann sollte alles wieder funktionieren.

24 | Wir danken Ihnen für Ihr Engagement. 25 |
26 |
27 |
28 | 29 | 30 | 31 | --------------------------------------------------------------------------------