https://rococo-khapse-98117f.netlify.app/

ID de exploración:
b6bd22eb-caf8-4406-9cb8-d3cf03cd3210Finalizado
URL enviada:
https://rococo-khapse-98117f.netlify.app/
Informe finalizado:

Enlaces: 3 encontrados

Los enlaces salientes identificados en la página

EnlaceTexto
https://bearblog.dev/Go to the original bear blog
https://alanpearce.euAlan Pearce
https://codeberg.org/alanpearce/zola-bearblogZola ʕ•ᴥ•ʔ Bear

Variables JavaScript: 3 encontradas

Las variables JavaScript globales cargadas en el objeto de ventana de una página son variables declaradas fuera de las funciones y a las que se puede acceder desde cualquier lugar del código en el ámbito actual

NombreTipo
onbeforetoggleobject
documentPictureInPictureobject
onscrollendobject

Mensajes de registro de la consola: 13 encontrados

Mensajes registrados en la consola web

TipoCategoríaRegistro
warningother
Texto
Error with Permissions-Policy header: Origin trial controlled feature not enabled: 'interest-cohort'.
warningother
Texto
Error with Permissions-Policy header: Unrecognized feature: 'ambient-light-sensor'.
warningother
Texto
Error with Permissions-Policy header: Unrecognized feature: 'battery'.
warningother
Texto
Error with Permissions-Policy header: Unrecognized feature: 'bluetooth'.
warningother
Texto
Error with Permissions-Policy header: Origin trial controlled feature not enabled: 'browsing-topics'.
warningother
Texto
Error with Permissions-Policy header: Unrecognized feature: 'document-domain'.
warningother
Texto
Error with Permissions-Policy header: Unrecognized feature: 'execution-while-not-rendered'.
warningother
Texto
Error with Permissions-Policy header: Unrecognized feature: 'execution-while-out-of-viewport'.
warningother
Texto
Error with Permissions-Policy header: Unrecognized feature: 'publickey-credentials-create'.
warningother
Texto
Error with Permissions-Policy header: Unrecognized feature: 'usb'.
warningother
Texto
Error with Permissions-Policy header: Unrecognized feature: 'web-share'.
warningother
Texto
Error with Permissions-Policy header: Unrecognized feature: 'xr-spatial-tracking'.
errornetwork
URL
https://rococo-khapse-98117f.netlify.app/favicon.ico
Texto
Failed to load resource: the server responded with a status of 404 ()

HTML

El cuerpo HTML sin procesar de la página

<!DOCTYPE html><html lang="en"><head>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <title>Zola ʕ•ᴥ•ʔ Bear Blog</title>
  <meta name="title" content="Zola ʕ•ᴥ•ʔ Bear Blog">
<meta name="description" content="A Zola-theme based on Bear Blog.">
<meta name="referrer" content="strict-origin-when-cross-origin">
  <style>
    :root {
    --width: 800px;
    --font-main: Verdana, sans-serif;
    --font-secondary: Verdana, sans-serif;
    --font-scale: 1em;
    --background-color: #fff;
    --heading-color: #222;
    --text-color: #444;
    --link-color: #3273dc;
    --visited-color: #8b6fcb;
    --code-background-color: #f2f2f2;
    --code-color: #222;
    --blockquote-color: #222;
  }

  @media (prefers-color-scheme: dark) {
    :root {
      --background-color: #01242e;
      --heading-color: #eee;
      --text-color: #ddd;
      --link-color: #8cc2dd;
      --visited-color: #8b6fcb;
      --code-background-color: #000;
      --code-color: #ddd;
      --blockquote-color: #ccc;
    }
  }

  body {
    font-family: var(--font-secondary);
    font-size: var(--font-scale);
    margin: auto;
    padding: 20px;
    max-width: var(--width);
    text-align: left;
    background-color: var(--background-color);
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.5;
    color: var(--text-color);
  }

  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-family: var(--font-main);
    color: var(--heading-color);
  }

  a {
    color: var(--link-color);
    cursor: pointer;
    text-decoration: none;
  }

  a:hover {
    text-decoration: underline;
  }

  nav a {
    margin-right: 8px;
  }

  nav span.active {
    font-weight: bold;
    margin-right: 10px;
  }
  strong,
  b {
    color: var(--heading-color);
  }

  button {
    margin: 0;
    cursor: pointer;
  }

  main {
    line-height: 1.6;
  }

  table {
    width: 100%;
  }

  hr {
    border: 0;
    border-top: 1px dashed;
  }

  img {
    max-width: 100%;
  }

  pre code {
    background-color: var(--code-background-color);
    color: var(--code-color);
    display: block;
    padding: 20px;
    white-space: pre-wrap;
    font-size: 0.875rem;
    overflow-x: auto;
  }

  code {
    font-family: monospace;
    padding: 2px;
    background-color: var(--code-background-color);
    color: var(--code-color);
    border-radius: 3px;
  }

  blockquote {
    border-left: 1px solid #999;
    color: var(--code-color);
    padding-left: 20px;
    font-style: italic;
  }

  footer {
    padding: 25px 0;
    text-align: center;
  }

  .title:hover {
    text-decoration: none;
  }

  .title h1 {
    font-size: 1.5em;
  }

  .inline {
    width: auto !important;
  }

  .highlight,
  .code {
    padding: 1px 15px;
    background-color: var(--code-background-color);
    color: var(--code-color);
    border-radius: 3px;
    margin-block-start: 1em;
    margin-block-end: 1em;
    overflow-x: auto;
  }

  /* blog post list */
  ul.blog-posts {
    list-style-type: none;
    padding: unset;
  }

  ul.blog-posts li {
    display: flex;
  }

  ul.blog-posts li span {
    flex: 0 0 130px;
  }

  ul.blog-posts li a:visited {
    color: var(--visited-color);
  }

  .tags {
    font-size: smaller;
  }

  </style>
</head>
<body>
  <header>
  <nav class="lang" aria-label="language">
        <span class="active">English</span>
        <a href="/de/" hreflang="de" lang="de">Deutsch</a>
  </nav>
  <a href="/" class="title">
    <h1>Zola ʕ•ᴥ•ʔ Bear Blog</h1>
  </a>
  <nav aria-label="site">
      <a href="/">Home</a>
      <a href="/bear/">Bear</a>
      <a href="/zola/">Zola</a>
      <a href="/blog/">Blog</a>
  </nav>
</header>

  <main>
    <h1 id="a-match-made-in-heaven">A match made in heaven</h1>
<p>There is a website obesity crisis. Bloated websites full of scripts, ads, and trackers are slowing your readers down every time they try to read your well-crafted content.</p>
<p>Zola Bear Blog is all you need to build a fantastic and optimized site or blog. It works perfectly on <strong>any</strong> viewing device. All you need to focus on is writing good content.</p>
<p><a href="https://bearblog.dev/">Go to the original bear blog</a>.</p>
<hr>
<p>What happens when you combine the worlds' fastest, most lightweight static site generator with a design theme built to provide you with free, no-nonsense, super-fast blogging capabilities?</p>
<p><strong>Use this theme, and find out!</strong></p>
<p>Made with 💚 by <a href="https://alanpearce.eu">Alan Pearce</a>.</p>
<hr>
<p>Simply publish content online, grow an audience, and keep your pages tiny, fast, and <strong>optimized for search engines</strong>.</p>
<p>Each page is ~5kb, and you can <strong>host your blog yourself</strong>.</p>

  </main>
<footer>
    Made with <a href="https://codeberg.org/alanpearce/zola-bearblog">Zola ʕ•ᴥ•ʔ Bear</a>
</footer>


</body></html>