Sha256: a9333c244cda4ff5985099b763609e9f6fca6fee62148a7ff32577fb99cb2982

Contents?: true

Size: 1.25 KB

Versions: 12

Compression:

Stored size: 1.25 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/Virgil.woff2"
    as="font"
    type="font/woff2"
    crossorigin
  >
  {% comment %} {%- seo -%} {% endcomment %}
  <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

12 entries across 12 versions & 2 rubygems

Version Path
jekyll-theme-handwritten-4.2.0 _includes/head.html
jekyll-theme-handwritten-4.1.0 _includes/head.html
jekyll-theme-handwritten-4.0.1 _includes/head.html
dark-blog-theme-4.0.1 _includes/head.html
dark-blog-theme-4.0.0 _includes/head.html
dark-blog-theme-3.9.4 _includes/head.html
dark-blog-theme-3.9.3 _includes/head.html
dark-blog-theme-3.9.2 _includes/head.html
dark-blog-theme-3.9.1 _includes/head.html
dark-blog-theme-3.8.0 _includes/head.html
dark-blog-theme-3.4.0 _includes/head.html
dark-blog-theme-3.0.1 _includes/head.html