Sha256: 7ccf5c1fe43f836354eb0d4d3a285293c8eb701c7c51b847af6aad4e2315f367

Contents?: true

Size: 1.42 KB

Versions: 4

Compression:

Stored size: 1.42 KB

Contents

<head>
  <meta charset="utf-8" />
  <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  <meta name="viewport" content="width=device-width, initial-scale=1" />
  <link
    rel="preload"
    href="/assets/theme-assets/theme-fonts/Excalifont-Regular.woff2"
    as="font"
    type="font/ttf"
    crossorigin
  />
  <link
    rel="preload"
    href="/assets/theme-assets/theme-fonts/comic shanns.otf"
    as="font"
    type="font/otf"
    crossorigin
  />
  {%- seo -%} <link rel="stylesheet" href="{{ "/assets/main.css" | relative_url
  }}">
  <script>
    const colors = {
      "dark-pink": "#f0b3e7",
      "dark-green": "#b1d18a",
      "dark-yellow": "#dbc66e",
      "dark-blue": "#aac7ff",
      "dark-cyan": "#81d5cd",
    };
    const root = document.querySelector("html");
    const theme = window.localStorage.getItem("theme");
    if (theme === null) {
      window.localStorage.setItem("theme", "dark-pink");
      root.className = "dark-pink";
      root.style.setProperty("--current-color", colors["dark-pink"]);
    } else {
      root.className = theme;
      root.style.setProperty("--current-color", colors[theme]);
    }
  </script>
  <script src="/assets/theme-assets/js/theme.js" defer></script>
  {% comment %} {%- feed_meta -%} {% endcomment %} {%- if jekyll.environment ==
  'production' and site.google_analytics -%} {%- include google-analytics.html
  -%} {%- endif -%}
</head>

Version data entries

4 entries across 4 versions & 2 rubygems

Version Path
jekyll-theme-doodle-4.4.2 _includes/head.html
jekyll-theme-doodle-4.4.1 _includes/head.html
jekyll-theme-doodle-4.4.0 _includes/head.html
jekyll-theme-handwritten-4.3.6 _includes/head.html