29 lines
1.1 KiB
HTML
29 lines
1.1 KiB
HTML
<!doctype html>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="initial-scale=1.0, width=device-width">
|
|
<link rel="icon" href="data:,">
|
|
<title>Údržba / Maintenance</title>
|
|
<style>
|
|
h1 { font-size: xxx-large; }
|
|
body { font: 20px Helvetica, sans-serif; color: #333; }
|
|
main { width: min(50ch, 90vw); margin: 4em auto 0; }
|
|
a { color: #dd3344; text-decoration: none; }
|
|
a:hover { color: inherit; }
|
|
@media (prefers-color-scheme: dark) { body { background: #111; color: #eee; } }
|
|
</style>
|
|
|
|
<main lang="en">
|
|
<h1>We'll be right back.</h1>
|
|
<p>This service is currently under maintenance. Check again in a few minutes!</p>
|
|
<p>— <a href="https://nolog.cz"><b>NoLog.cz collective</b></a></p>
|
|
</main>
|
|
<main lang="cs" hidden>
|
|
<h1>Hned budeme zpět.</h1>
|
|
<p>Zrovna probíhá nezbytná údržba. Za chvíli bude služba opět dostupná.</p>
|
|
<p>— <a href="https://nolog.cz"><b>NoLog.cz kolektiv</b></a></p>
|
|
</main>
|
|
|
|
<script>
|
|
if (document.body.querySelectorAll(`[lang="${navigator.language.slice(0, 2)}"]`).length)
|
|
document.querySelectorAll('[lang]').forEach(el => navigator.language.startsWith(el.lang) ? el.removeAttribute('hidden') : el.remove());
|
|
</script>
|