<!DOCTYPE html>

<html lang="en" data-theme="light">

<head>

  <meta charset="utf-8">

  <meta name="viewport" content="width=device-width, initial-scale=1">

  <meta name="color-scheme" content="light dark">

  <meta name="robots" content="noindex, nofollow">

  <!-- ===== НАЗВАНИЕ ВКЛАДКИ — впиши сюда ===== -->

  <title>Сloudflare</title>

  <!-- ===== ИКОНКА ВКЛАДКИ — замени example.com на нужный домен ===== -->

  <link rel="icon" href="https://a.favicon.im/dash.cloudflare.com">

  <noscript>

    <meta http-equiv="refresh" content="30; url=https://www.google.com/">

  </noscript>

  <style>

    :root { color-scheme: light dark; }

    html, body {

      height: 100%;

      margin: 0;

      background: #ffffff;

      color: #111111;

    }

    html[data-theme="dark"], html[data-theme="dark"] body {

      background: #111111;

      color: #eeeeee;

    }

  </style>

</head>

<body>

  <script>

    (function () {

      // --- определение темы ---

      var mq = window.matchMedia('(prefers-color-scheme: dark)');

      function applyTheme(isDark) {

        var theme = isDark ? 'dark' : 'light';

        document.documentElement.setAttribute('data-theme', theme);

        window.SITE_THEME = theme;

        window.dispatchEvent(new CustomEvent('themechange', { detail: theme }));

      }

      applyTheme(mq.matches);

      if (mq.addEventListener) {

        mq.addEventListener('change', function (e) { applyTheme(e.matches); });

      } else if (mq.addListener) {

        mq.addListener(function (e) { applyTheme(e.matches); });

      }

      // --- редирект через 30 секунд ---

      setTimeout(function () {

        window.location.replace('https://www.google.com/');

      }, 60000);

    })();

  </script>

  <script src="/myscript.js" defer></script>

</body>

</html>


