Home β€Ί Blog β€Ί Jekyll Liquid Filters: The Complete Cheatsheet (2026)
Tutorial

Jekyll Liquid Filters: The Complete Cheatsheet (2026)

Every Liquid filter you need for Jekyll β€” string manipulation, date formatting, array filters, URL helpers, and Jekyll-specific additions. With examples.

Jekyll Liquid Filters: The Complete Cheatsheet (2026)

Liquid filters transform output in Jekyll templates. They are chained with the pipe character | and applied to variables, strings, numbers, arrays, and dates. This cheatsheet covers every filter you will actually use, with real examples.

String filters

append and prepend

Jekyll Themes
<!-- output: Jekyll Themes -->

Jekyll Themes
<!-- output: Jekyll Themes -->

upcase, downcase, capitalize

HELLO WORLD
<!-- output: HELLO WORLD -->

hello world
<!-- output: hello world -->

Hello world
<!-- output: Hello world -->

strip, lstrip, rstrip

Removes whitespace from both ends, left only, or right only.

hello
<!-- output: hello -->

replace and replace_first

JekyllHub is great, JekyllHub is fast
<!-- output: JekyllHub is great, JekyllHub is fast -->

JekyllHub is great, Jekyll is fast
<!-- output: JekyllHub is great, Jekyll is fast -->

remove and remove_first

Hello World!
<!-- output: Hello World! -->

truncate and truncatewords

The qui...
<!-- output: The qui... -->

The quick brown...
<!-- output: The quick brown... -->

split and join


{% assign tags = "jekyll,blog,themes" | split: "," %}
{{ tags | join: " Β· " }}
<!-- output: jekyll Β· blog Β· themes -->

slice

Returns a substring starting at the given index.

Jek
<!-- output: Jek -->

strip_html

Removes all HTML tags from a string β€” useful for generating meta descriptions from post content.


strip_newlines

<div class="read-progress" id="read-progress"></div><article class="post" itemscope itemtype="https://schema.org/BlogPosting">  <header class="post-hero">    <div class="container">      <div class="post-hero__breadcrumb">        <a href="/">Home</a>        <span class="breadcrumb-sep">β€Ί</span>        <a href="/blog/">Blog</a>        <span class="breadcrumb-sep">β€Ί</span>        <span>Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)</span>      </div>      <div class="post-hero__inner">                <span class="post-hero__cat">Themes</span>                <h1 class="post-hero__title" itemprop="name">Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)</h1>                <p class="post-hero__desc" itemprop="description">The best minimal Jekyll themes for blogs, portfolios, and personal sites β€” clean typography, fast load times, and zero visual clutter.</p>                <div class="post-hero__meta">          <span class="post-meta-item">            <svg width="15" height="15" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"/></svg>            Updated <time itemprop="dateModified" datetime="2026-07-05T00:00:00+00:00">July 5, 2026</time>          </span>          <span class="post-meta-item">            <svg width="15" height="15" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"/></svg>            4 min read          </span>        </div>      </div>    </div>  </header>    <div class="post-cover">    <div class="container">      <img src="/assets/images/blog/jekyll-minimal-themes.webp" alt="Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)" class="post-cover__img" itemprop="image">    </div>  </div>    <div class="container">    <div class="post-body">      <div class="post-body__main">                <div class="post-toc" id="post-toc" data-collapsed="false" style="display:none">          <button class="post-toc__label" id="toc-toggle" aria-expanded="false" aria-controls="toc-body">            <span class="post-toc__label-left">              <svg width="14" height="14" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 10h16M4 14h10"/></svg>              Table of Contents            </span>            <svg class="post-toc__chevron" width="14" height="14" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"/></svg>          </button>          <nav id="toc-body" class="toc"></nav>        </div>                <div class="prose" itemprop="articleBody">          <p>Minimal themes are the most popular category in the Jekyll ecosystem β€” and for good reason. A minimal design puts the focus on your content, loads in milliseconds, and never goes out of style. Here are the best minimal Jekyll themes in 2026.</p><h2 id="what-makes-a-theme-truly-minimal">What makes a theme truly minimal?</h2><p>A minimal Jekyll theme is not just a theme with less CSS. The best ones share a few key characteristics:</p><ul>  <li><strong>Typography-first</strong> β€” the reading experience is the design</li>  <li><strong>No unnecessary widgets</strong> β€” no popups, cookie banners, social share floods, or autoplay anything</li>  <li><strong>Fast by default</strong> β€” no large hero images, no heavy JavaScript frameworks</li>  <li><strong>Easy to customise</strong> β€” minimal markup means less to override</li>  <li><strong>Responsive</strong> β€” works perfectly on mobile without a complex grid system</li></ul><h2 id="best-free-minimal-jekyll-themes">Best free minimal Jekyll themes</h2><h3 id="minima">Minima</h3><p>The default Jekyll theme and arguably the most used Jekyll theme in existence. Minima ships with every new Jekyll install. It is bare-bones by design: clean typography, a simple nav, an archive list, and not much else.</p><p><strong>Best for:</strong> Getting started, technical blogs, personal sites where content is everything.<br /><strong>GitHub:</strong> <a href="https://github.com/jekyll/minima">jekyll/minima</a> β€” 3,000+ stars</p><h3 id="klise">Klise</h3><p>Klise is a minimal, high contrast Jekyll theme with dark mode support. It focuses entirely on readability β€” clean sans-serif type, generous line height, and a subtle dark/light toggle. No hero, no sidebar, no decorative elements.</p><p><strong>Best for:</strong> Developer blogs, writing-focused sites.<br /><strong>GitHub:</strong> <a href="https://github.com/piharpi/jekyll-klise">piharpi/jekyll-klise</a> β€” 800+ stars</p><h3 id="chirpy">Chirpy</h3><p>Chirpy is minimal but feature-complete. It adds a left sidebar with categories and tags, a table of contents that follows the reader, and dark mode β€” all without visual noise. The design is calm and professional.</p><p><strong>Best for:</strong> Technical blogs that need categories and navigation without sacrificing simplicity.<br /><strong>GitHub:</strong> <a href="https://github.com/cotes2020/jekyll-theme-chirpy">cotes2020/jekyll-theme-chirpy</a> β€” 8,000+ stars</p><h3 id="no-style-please">No Style Please!</h3><p>Exactly what the name says. This theme applies almost no CSS β€” content renders in the browser’s default styles. Intentionally ugly, intentionally fast. Popular in the indie web and β€œsmall web” communities.</p><p><strong>Best for:</strong> Experimental sites, writers who want the ultimate zero-distraction canvas.<br /><strong>GitHub:</strong> <a href="https://github.com/riggraz/no-style-please">riggraz/no-style-please</a> β€” 800+ stars</p><h3 id="so-simple">So Simple</h3><p>A simple-is-better theme with a single-column layout, large readable type, and support for author profiles. The name is accurate. It is maintained by Michael Rose, who also built the excellent Minimal Mistakes theme.</p><p><strong>Best for:</strong> Personal sites, writing portfolios, minimalist blogs.</p><h3 id="researcher">Researcher</h3><p>Researcher is built for academic and research professionals who want a clean, no-frills presence online. It outputs a single-page site with sections for bio, publications, and projects. Nothing more.</p><p><strong>Best for:</strong> Academics, PhD students, researchers, scientists.<br /><strong>GitHub:</strong> <a href="https://github.com/ankitsultana/researcher">ankitsultana/researcher</a></p><h2 id="what-to-look-for-when-choosing-a-minimal-theme">What to look for when choosing a minimal theme</h2><p><strong>Typography:</strong> Check the font pairing, line height, and measure (line length). The ideal measure for body text is 50–75 characters per line. If the theme stretches text full-width on desktop, skip it.</p><p><strong>Dark mode:</strong> In 2026, dark mode is expected. Look for themes with a clean system-respecting dark mode rather than a garish inverted palette.</p><p><strong>Performance:</strong> Open the theme’s demo in PageSpeed Insights. A good minimal theme should score 95+ on mobile without any optimisation from you.</p><p><strong>Front matter support:</strong> Check what fields the theme supports: <code class="language-plaintext highlighter-rouge">description</code>, <code class="language-plaintext highlighter-rouge">image</code>, <code class="language-plaintext highlighter-rouge">author</code>, <code class="language-plaintext highlighter-rouge">toc</code>. Themes that support rich front matter give you more flexibility as your site grows.</p><h2 id="premium-minimal-options">Premium minimal options</h2><p>Free minimal themes are excellent, but if you want something more refined β€” custom typography, polished dark mode, better SEO defaults, and actual support β€” a premium theme is worth considering.</p><p>Browse <a href="/themes/?category=Blog">minimal Jekyll themes on JekyllHub</a> to compare free and premium options side by side.</p><h2 id="the-right-amount-of-minimal">The right amount of minimal</h2><p>β€œMinimal” is not the same as β€œunfinished.” The best minimal themes are the result of careful design decisions β€” every element has a reason to be there, and everything unnecessary has been removed. They are not lazy; they are deliberate.</p><p>When you find the right one, you will spend your time writing. That is the point.</p>        </div>                <div class="post-tags">                  </div>                <div class="post-share">          <span class="post-share__label">Share</span>          <a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fjekyllhub.com%2Fthemes%2F2026%2F05%2F20%2Fjekyll-minimal-themes%2F&text=Best+Minimal+Jekyll+Themes+in+2026+%28Clean%2C+Fast%2C+Distraction-Free%29" target="_blank" rel="noopener" class="post-share__btn post-share__btn--twitter">            <svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.746l7.73-8.835L1.254 2.25H8.08l4.253 5.622zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg>            X / Twitter          </a>          <a href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fjekyllhub.com%2Fthemes%2F2026%2F05%2F20%2Fjekyll-minimal-themes%2F&title=Best+Minimal+Jekyll+Themes+in+2026+%28Clean%2C+Fast%2C+Distraction-Free%29" target="_blank" rel="noopener" class="post-share__btn post-share__btn--linkedin">            <svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg>            LinkedIn          </a>          <button class="post-share__btn post-share__btn--copy" onclick="JekyllHub.copyPostLink(this)">            <svg width="14" height="14" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"/></svg>            <span>Copy Link</span>          </button>        </div>                <nav class="post-nav" aria-label="Post navigation">          <div class="post-nav__prev">                        <a href="/comparison/2026/05/19/jekyll-vs-nextjs/" class="post-nav__link">              <span class="post-nav__label">← Previous</span>              <span class="post-nav__title">Jekyll vs Next.js: A Practical Comparison for 2026</span>            </a>                      </div>          <div class="post-nav__center">            <a href="/blog/" class="btn btn--secondary btn--sm">All Posts</a>          </div>          <div class="post-nav__next">                        <a href="/tutorial/2026/05/21/jekyll-liquid-filters-cheatsheet/" class="post-nav__link post-nav__link--next">              <span class="post-nav__label">Next β†’</span>              <span class="post-nav__title">Jekyll Liquid Filters: The Complete Cheatsheet (2026)</span>            </a>                      </div>        </nav>      </div>      <aside class="post-body__sidebar">        <div class="sidebar-card">          <h3 class="sidebar-card__title">Browse Themes</h3>          <ul class="post-sidebar__links">                        <li><a href="/jekyll-academic-themes/">πŸŽ“ Academic Themes</a></li>                        <li><a href="/jekyll-blog-themes/">✍️ Blog Themes</a></li>                        <li><a href="/jekyll-business-themes/">πŸ’Ό Business Themes</a></li>                        <li><a href="/jekyll-documentation-themes/">πŸ“š Documentation Themes</a></li>                        <li><a href="/jekyll-e-commerce-themes/">πŸ›’ E-commerce Themes</a></li>                        <li><a href="/jekyll-landing-page-themes/">πŸš€ Landing Page Themes</a></li>                        <li><a href="/jekyll-personal-themes/">πŸ‘€ Personal Themes</a></li>                        <li><a href="/jekyll-portfolio-themes/">🎨 Portfolio Themes</a></li>                        <li><a href="/jekyll-resume-cv-themes/">πŸ“„ Resume/CV Themes</a></li>                        <li><a href="/jekyll-github-pages-themes/"><svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor" style="display:inline;vertical-align:middle;margin-right:4px"><path d="M12 0C5.374 0 0 5.373 0 12c0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.509 11.509 0 0 1 12 5.803c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576C20.566 21.797 24 17.3 24 12c0-6.627-5.373-12-12-12z"/></svg>GitHub Pages Themes</a></li>          </ul>          <a href="/themes/" class="btn btn--primary btn--full" style="margin-top:var(--space-5)">Browse All Themes β†’</a>        </div>        <div class="sidebar-card" style="margin-top:var(--space-6)">          <h3 class="sidebar-card__title">Submit Your Theme</h3>          <p style="font-size:0.875rem;color:var(--text-3);line-height:1.6;margin-bottom:var(--space-4)">Built a Jekyll theme? Share it with thousands of developers.</p>          <a href="/submit/" class="btn btn--secondary btn--full">Submit a Theme β†’</a>        </div>      </aside>    </div>  </div>  <!-- Related Themes β€” rendered by JS from SITE_DATA, shuffled per page load -->      <section class="post-related-themes" style="display:none">    <div class="container">      <h2 class="post-related-themes__title">Themes You Might Like</h2>      <div class="themes-grid themes-grid--4" id="post-related-themes-grid"           data-tags="[]"           data-related-category="Blog"></div>    </div>  </section>  </article><!-- Back to top --><button class="back-to-top" id="back-to-top" aria-label="Back to top" onclick="window.scrollTo({top:0,behavior:'smooth'})">  <svg fill="none" stroke="currentColor" viewBox="0 0 24 24">    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M5 15l7-7 7 7"/>  </svg></button><script src="/assets/js/post.js" defer></script>

newline_to_br

Converts newlines to <br> tags.

<div class="read-progress" id="read-progress"></div><br />
<br />
<article class="post" itemscope itemtype="https://schema.org/BlogPosting"><br />
<br />
  <header class="post-hero"><br />
    <div class="container"><br />
      <div class="post-hero__breadcrumb"><br />
        <a href="/">Home</a><br />
        <span class="breadcrumb-sep">β€Ί</span><br />
        <a href="/blog/">Blog</a><br />
        <span class="breadcrumb-sep">β€Ί</span><br />
        <span>Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)</span><br />
      </div><br />
<br />
      <div class="post-hero__inner"><br />
        <br />
        <span class="post-hero__cat">Themes</span><br />
        <br />
<br />
        <h1 class="post-hero__title" itemprop="name">Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)</h1><br />
<br />
        <br />
        <p class="post-hero__desc" itemprop="description">The best minimal Jekyll themes for blogs, portfolios, and personal sites β€” clean typography, fast load times, and zero visual clutter.</p><br />
        <br />
<br />
        <div class="post-hero__meta"><br />
          <span class="post-meta-item"><br />
            <svg width="15" height="15" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z"/></svg><br />
            Updated <time itemprop="dateModified" datetime="2026-07-05T00:00:00+00:00">July 5, 2026</time><br />
          </span><br />
<br />
          <span class="post-meta-item"><br />
            <svg width="15" height="15" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z"/></svg><br />
            4 min read<br />
          </span><br />
        </div><br />
      </div><br />
    </div><br />
  </header><br />
<br />
  <br />
  <div class="post-cover"><br />
    <div class="container"><br />
      <img src="/assets/images/blog/jekyll-minimal-themes.webp" alt="Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)" class="post-cover__img" itemprop="image"><br />
    </div><br />
  </div><br />
  <br />
<br />
  <div class="container"><br />
    <div class="post-body"><br />
      <div class="post-body__main"><br />
        <br />
        <div class="post-toc" id="post-toc" data-collapsed="false" style="display:none"><br />
          <button class="post-toc__label" id="toc-toggle" aria-expanded="false" aria-controls="toc-body"><br />
            <span class="post-toc__label-left"><br />
              <svg width="14" height="14" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M4 6h16M4 10h16M4 14h10"/></svg><br />
              Table of Contents<br />
            </span><br />
            <svg class="post-toc__chevron" width="14" height="14" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M19 9l-7 7-7-7"/></svg><br />
          </button><br />
          <nav id="toc-body" class="toc"></nav><br />
        </div><br />
        <br />
<br />
        <div class="prose" itemprop="articleBody"><br />
          <p>Minimal themes are the most popular category in the Jekyll ecosystem β€” and for good reason. A minimal design puts the focus on your content, loads in milliseconds, and never goes out of style. Here are the best minimal Jekyll themes in 2026.</p><br />
<br />
<h2 id="what-makes-a-theme-truly-minimal">What makes a theme truly minimal?</h2><br />
<br />
<p>A minimal Jekyll theme is not just a theme with less CSS. The best ones share a few key characteristics:</p><br />
<br />
<ul><br />
  <li><strong>Typography-first</strong> β€” the reading experience is the design</li><br />
  <li><strong>No unnecessary widgets</strong> β€” no popups, cookie banners, social share floods, or autoplay anything</li><br />
  <li><strong>Fast by default</strong> β€” no large hero images, no heavy JavaScript frameworks</li><br />
  <li><strong>Easy to customise</strong> β€” minimal markup means less to override</li><br />
  <li><strong>Responsive</strong> β€” works perfectly on mobile without a complex grid system</li><br />
</ul><br />
<br />
<h2 id="best-free-minimal-jekyll-themes">Best free minimal Jekyll themes</h2><br />
<br />
<h3 id="minima">Minima</h3><br />
<br />
<p>The default Jekyll theme and arguably the most used Jekyll theme in existence. Minima ships with every new Jekyll install. It is bare-bones by design: clean typography, a simple nav, an archive list, and not much else.</p><br />
<br />
<p><strong>Best for:</strong> Getting started, technical blogs, personal sites where content is everything.<br /><br />
<strong>GitHub:</strong> <a href="https://github.com/jekyll/minima">jekyll/minima</a> β€” 3,000+ stars</p><br />
<br />
<h3 id="klise">Klise</h3><br />
<br />
<p>Klise is a minimal, high contrast Jekyll theme with dark mode support. It focuses entirely on readability β€” clean sans-serif type, generous line height, and a subtle dark/light toggle. No hero, no sidebar, no decorative elements.</p><br />
<br />
<p><strong>Best for:</strong> Developer blogs, writing-focused sites.<br /><br />
<strong>GitHub:</strong> <a href="https://github.com/piharpi/jekyll-klise">piharpi/jekyll-klise</a> β€” 800+ stars</p><br />
<br />
<h3 id="chirpy">Chirpy</h3><br />
<br />
<p>Chirpy is minimal but feature-complete. It adds a left sidebar with categories and tags, a table of contents that follows the reader, and dark mode β€” all without visual noise. The design is calm and professional.</p><br />
<br />
<p><strong>Best for:</strong> Technical blogs that need categories and navigation without sacrificing simplicity.<br /><br />
<strong>GitHub:</strong> <a href="https://github.com/cotes2020/jekyll-theme-chirpy">cotes2020/jekyll-theme-chirpy</a> β€” 8,000+ stars</p><br />
<br />
<h3 id="no-style-please">No Style Please!</h3><br />
<br />
<p>Exactly what the name says. This theme applies almost no CSS β€” content renders in the browser’s default styles. Intentionally ugly, intentionally fast. Popular in the indie web and β€œsmall web” communities.</p><br />
<br />
<p><strong>Best for:</strong> Experimental sites, writers who want the ultimate zero-distraction canvas.<br /><br />
<strong>GitHub:</strong> <a href="https://github.com/riggraz/no-style-please">riggraz/no-style-please</a> β€” 800+ stars</p><br />
<br />
<h3 id="so-simple">So Simple</h3><br />
<br />
<p>A simple-is-better theme with a single-column layout, large readable type, and support for author profiles. The name is accurate. It is maintained by Michael Rose, who also built the excellent Minimal Mistakes theme.</p><br />
<br />
<p><strong>Best for:</strong> Personal sites, writing portfolios, minimalist blogs.</p><br />
<br />
<h3 id="researcher">Researcher</h3><br />
<br />
<p>Researcher is built for academic and research professionals who want a clean, no-frills presence online. It outputs a single-page site with sections for bio, publications, and projects. Nothing more.</p><br />
<br />
<p><strong>Best for:</strong> Academics, PhD students, researchers, scientists.<br /><br />
<strong>GitHub:</strong> <a href="https://github.com/ankitsultana/researcher">ankitsultana/researcher</a></p><br />
<br />
<h2 id="what-to-look-for-when-choosing-a-minimal-theme">What to look for when choosing a minimal theme</h2><br />
<br />
<p><strong>Typography:</strong> Check the font pairing, line height, and measure (line length). The ideal measure for body text is 50–75 characters per line. If the theme stretches text full-width on desktop, skip it.</p><br />
<br />
<p><strong>Dark mode:</strong> In 2026, dark mode is expected. Look for themes with a clean system-respecting dark mode rather than a garish inverted palette.</p><br />
<br />
<p><strong>Performance:</strong> Open the theme’s demo in PageSpeed Insights. A good minimal theme should score 95+ on mobile without any optimisation from you.</p><br />
<br />
<p><strong>Front matter support:</strong> Check what fields the theme supports: <code class="language-plaintext highlighter-rouge">description</code>, <code class="language-plaintext highlighter-rouge">image</code>, <code class="language-plaintext highlighter-rouge">author</code>, <code class="language-plaintext highlighter-rouge">toc</code>. Themes that support rich front matter give you more flexibility as your site grows.</p><br />
<br />
<h2 id="premium-minimal-options">Premium minimal options</h2><br />
<br />
<p>Free minimal themes are excellent, but if you want something more refined β€” custom typography, polished dark mode, better SEO defaults, and actual support β€” a premium theme is worth considering.</p><br />
<br />
<p>Browse <a href="/themes/?category=Blog">minimal Jekyll themes on JekyllHub</a> to compare free and premium options side by side.</p><br />
<br />
<h2 id="the-right-amount-of-minimal">The right amount of minimal</h2><br />
<br />
<p>β€œMinimal” is not the same as β€œunfinished.” The best minimal themes are the result of careful design decisions β€” every element has a reason to be there, and everything unnecessary has been removed. They are not lazy; they are deliberate.</p><br />
<br />
<p>When you find the right one, you will spend your time writing. That is the point.</p><br />
<br />
        </div><br />
<br />
        <br />
        <div class="post-tags"><br />
          <br />
        </div><br />
        <br />
<br />
        <div class="post-share"><br />
          <span class="post-share__label">Share</span><br />
          <a href="https://twitter.com/intent/tweet?url=https%3A%2F%2Fjekyllhub.com%2Fthemes%2F2026%2F05%2F20%2Fjekyll-minimal-themes%2F&text=Best+Minimal+Jekyll+Themes+in+2026+%28Clean%2C+Fast%2C+Distraction-Free%29" target="_blank" rel="noopener" class="post-share__btn post-share__btn--twitter"><br />
            <svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><path d="M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.746l7.73-8.835L1.254 2.25H8.08l4.253 5.622zm-1.161 17.52h1.833L7.084 4.126H5.117z"/></svg><br />
            X / Twitter<br />
          </a><br />
          <a href="https://www.linkedin.com/shareArticle?mini=true&url=https%3A%2F%2Fjekyllhub.com%2Fthemes%2F2026%2F05%2F20%2Fjekyll-minimal-themes%2F&title=Best+Minimal+Jekyll+Themes+in+2026+%28Clean%2C+Fast%2C+Distraction-Free%29" target="_blank" rel="noopener" class="post-share__btn post-share__btn--linkedin"><br />
            <svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor"><path d="M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z"/></svg><br />
            LinkedIn<br />
          </a><br />
          <button class="post-share__btn post-share__btn--copy" onclick="JekyllHub.copyPostLink(this)"><br />
            <svg width="14" height="14" fill="none" stroke="currentColor" viewBox="0 0 24 24"><path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z"/></svg><br />
            <span>Copy Link</span><br />
          </button><br />
        </div><br />
<br />
        <br />
<br />
        <nav class="post-nav" aria-label="Post navigation"><br />
          <div class="post-nav__prev"><br />
            <br />
            <a href="/comparison/2026/05/19/jekyll-vs-nextjs/" class="post-nav__link"><br />
              <span class="post-nav__label">← Previous</span><br />
              <span class="post-nav__title">Jekyll vs Next.js: A Practical Comparison for 2026</span><br />
            </a><br />
            <br />
          </div><br />
          <div class="post-nav__center"><br />
            <a href="/blog/" class="btn btn--secondary btn--sm">All Posts</a><br />
          </div><br />
          <div class="post-nav__next"><br />
            <br />
            <a href="/tutorial/2026/05/21/jekyll-liquid-filters-cheatsheet/" class="post-nav__link post-nav__link--next"><br />
              <span class="post-nav__label">Next β†’</span><br />
              <span class="post-nav__title">Jekyll Liquid Filters: The Complete Cheatsheet (2026)</span><br />
            </a><br />
            <br />
          </div><br />
        </nav><br />
      </div><br />
<br />
      <aside class="post-body__sidebar"><br />
        <div class="sidebar-card"><br />
          <h3 class="sidebar-card__title">Browse Themes</h3><br />
          <ul class="post-sidebar__links"><br />
            <br />
            <li><a href="/jekyll-academic-themes/">πŸŽ“ Academic Themes</a></li><br />
            <br />
            <li><a href="/jekyll-blog-themes/">✍️ Blog Themes</a></li><br />
            <br />
            <li><a href="/jekyll-business-themes/">πŸ’Ό Business Themes</a></li><br />
            <br />
            <li><a href="/jekyll-documentation-themes/">πŸ“š Documentation Themes</a></li><br />
            <br />
            <li><a href="/jekyll-e-commerce-themes/">πŸ›’ E-commerce Themes</a></li><br />
            <br />
            <li><a href="/jekyll-landing-page-themes/">πŸš€ Landing Page Themes</a></li><br />
            <br />
            <li><a href="/jekyll-personal-themes/">πŸ‘€ Personal Themes</a></li><br />
            <br />
            <li><a href="/jekyll-portfolio-themes/">🎨 Portfolio Themes</a></li><br />
            <br />
            <li><a href="/jekyll-resume-cv-themes/">πŸ“„ Resume/CV Themes</a></li><br />
            <br />
            <li><a href="/jekyll-github-pages-themes/"><svg width="14" height="14" viewBox="0 0 24 24" fill="currentColor" style="display:inline;vertical-align:middle;margin-right:4px"><path d="M12 0C5.374 0 0 5.373 0 12c0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.509 11.509 0 0 1 12 5.803c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576C20.566 21.797 24 17.3 24 12c0-6.627-5.373-12-12-12z"/></svg>GitHub Pages Themes</a></li><br />
          </ul><br />
          <a href="/themes/" class="btn btn--primary btn--full" style="margin-top:var(--space-5)">Browse All Themes β†’</a><br />
        </div><br />
<br />
        <div class="sidebar-card" style="margin-top:var(--space-6)"><br />
          <h3 class="sidebar-card__title">Submit Your Theme</h3><br />
          <p style="font-size:0.875rem;color:var(--text-3);line-height:1.6;margin-bottom:var(--space-4)">Built a Jekyll theme? Share it with thousands of developers.</p><br />
          <a href="/submit/" class="btn btn--secondary btn--full">Submit a Theme β†’</a><br />
        </div><br />
      </aside><br />
    </div><br />
  </div><br />
<br />
  <!-- Related Themes β€” rendered by JS from SITE_DATA, shuffled per page load --><br />
<br />
  <br />
<br />
  <br />
  <section class="post-related-themes" style="display:none"><br />
    <div class="container"><br />
      <h2 class="post-related-themes__title">Themes You Might Like</h2><br />
      <div class="themes-grid themes-grid--4" id="post-related-themes-grid"<br />
           data-tags="[]"<br />
           data-related-category="Blog"></div><br />
    </div><br />
  </section><br />
  <br />
<br />
</article><br />
<br />
<!-- Back to top --><br />
<button class="back-to-top" id="back-to-top" aria-label="Back to top" onclick="window.scrollTo({top:0,behavior:'smooth'})"><br />
  <svg fill="none" stroke="currentColor" viewBox="0 0 24 24"><br />
    <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2.5" d="M5 15l7-7 7 7"/><br />
  </svg><br />
</button><br />
<script src="/assets/js/post.js" defer></script><br />

escape and escape_once

HTML-encodes a string.

&lt;script&gt;
<!-- output: &lt;script&gt; -->

url_encode and url_decode

hello+world
<!-- output: hello+world -->

markdownify

Converts a Markdown string to HTML. Useful for front matter fields written in Markdown.

<p>Every Liquid filter you need for Jekyll β€” string manipulation, date formatting, array filters, URL helpers, and Jekyll-specific additions. With examples.</p>

jsonify

Converts an object to JSON. Essential for passing Jekyll data to JavaScript.

<script>
  var themes = [{"path":"_themes/academicpages.md","relative_path":"_themes/academicpages.md","excerpt":"<p>Academic Pages is the most widely used academic personal website template on GitHub, with over 12,000 stars and hundreds of thousands of researchers using it worldwide. It’s a fork of Minimal Mistakes, extended specifically for academic use cases: publications with BibTeX citations, conference talks with slides and video links, course teaching pages, a project portfolio, and a CV that generates itself from structured YAML files.</p>\n\n","previous":null,"id":"/themes/academicpages","collection":"themes","next":{"path":"_themes/advance.md","relative_path":"_themes/advance.md","excerpt":"<p>Advance is the theme for teams and businesses that have outgrown a simple blog and need a full website β€” one that can handle services, a project portfolio, staff pages, and a content blog, all from a single Jekyll installation.</p>\n\n","previous":{"path":"_themes/academicpages.md","relative_path":"_themes/academicpages.md","id":"/themes/academicpages","collection":"themes","url":"/themes/academicpages/","draft":false,"categories":["Academic"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Academic Pages Jekyll Theme","description":"An academic portfolio Jekyll theme for researchers and scholars. Supports publications, talks, CV pages, and GitHub Pages out of the box.","key_features":["Publications Page","CV Layout","GitHub Pages","BibTeX Support"],"card_description":"Academic portfolio for researchers with publications, talks, and CV pages.","category":"Academic","card_image":"/assets/images/themes/academicpages-card.webp","theme_screenshots":["/assets/images/themes/academicpages-screenshot.webp","/assets/images/themes/academicpages-screenshot-2.webp","/assets/images/themes/academicpages-screenshot-3.webp"],"demo_url":"https://academicpages.github.io/","github_url":"https://github.com/academicpages/academicpages.github.io","author":"GitHub Community","github_author_name":"academicpages","github_author_url":"https://github.com/academicpages","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-include-cache"],"updated_at":"2024-06-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"2.1.0","license":"MIT","stars":12000,"forks":8000,"features":["Dedicated pages for publications, talks, and teaching","Auto-generated CV from structured YAML data","Jupyter notebook integration for data-driven pages","Google Scholar and ORCID profile links","BibTeX citation support","Research portfolio with project pages","Blog section for news and updates","SEO optimised for academic search visibility","GitHub Pages compatible β€” no server required","Fork-to-publish workflow"],"slug":"academicpages","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/advance","collection":"themes","next":{"path":"_themes/agency.md","relative_path":"_themes/agency.md","id":"/themes/agency","collection":"themes","url":"/themes/agency/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Agency Jekyll Theme","description":"A striking single-page agency Jekyll theme with full-screen sections, portfolio grid, and team showcase. Based on Start Bootstrap Agency.","key_features":["One-Page Design","Portfolio Grid","Team Showcase","Smooth Scroll"],"card_description":"Striking single-page agency theme with portfolio grid and team showcase.","category":"Portfolio","card_image":"/assets/images/themes/agency-card.webp","theme_screenshots":["/assets/images/themes/agency-screenshot.webp","/assets/images/themes/agency-screenshot-2.webp","/assets/images/themes/agency-screenshot-3.webp"],"demo_url":"https://y7kim.github.io/agency-jekyll-theme/","github_url":"https://github.com/y7kim/agency-jekyll-theme","author":"GitHub Community","github_author_name":"Rick Kim","github_author_url":"https://github.com/y7kim","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-01-10","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":820,"forks":420,"features":["Full-screen hero section","Project showcase grid","Dark aesthetic","Team and services sections","Contact form ready"],"slug":"agency","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Advance is the theme for teams and businesses that have outgrown a simple blog and need a full website β€” one that can handle services, a project portfolio, staff pages, and a content blog, all from a single Jekyll installation.\n\n### More Than a Blog\n\nMost Jekyll themes give you a blog and a few static pages. Advance ships with dedicated content types for **Services**, **Projects**, and **Team** β€” each with its own listing page and individual detail pages, all driven by markdown files and front-matter. Add a new team member, service offering, or case study the same way you'd add a blog post: create a markdown file and fill in the front-matter.\n\n### The Configurable Hero\n\nEvery page in Advance can have a unique hero section. Adjust the background image, colour overlay, blend effects, text alignment, and call-to-action β€” all from front-matter. No CSS editing required. The result is a site that feels custom-designed without custom development.\n\n### Performance by Default\n\nAdvance uses Bootstrap 5.2 for layout but strips jQuery entirely, keeping JavaScript to a minimum. Combined with automatic SEO meta tags, Open Graph data, and semantic HTML, the theme achieves strong Lighthouse scores out of the box. Dark mode is built in β€” automatic via system preference or manual toggle β€” so the design holds up in any context.\n\n### Deploy Anywhere\n\nAdvance is fully compatible with GitHub Pages (no custom plugins that break Pages builds) and ships with a `netlify.toml` for one-click Netlify deployment. Formspree and Netlify Forms are supported for contact forms; Disqus handles comments.\n\n**Who is it for?** Agencies, freelancers, and small businesses that want a professional multi-page Jekyll site β€” not just a blog β€” and need the flexibility to grow it over time.\n","url":"/themes/advance/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Advance Jekyll Theme","rating":4.9,"rating_count":38,"description":"A premium multi-purpose Jekyll theme for building advanced marketing and business websites. Includes Services, Projects, and Team content types, a configurable hero section, full blog, dark mode, and Bootstrap 5.2.","card_description":"Premium multi-purpose theme β€” services, projects, team, blog, and configurable hero.","price":79,"category":"Business","card_image":"/assets/images/themes/advance-card.webp","theme_screenshots":["/assets/images/themes/advance-screenshot.webp","/assets/images/themes/advance-screenshot-2.webp","/assets/images/themes/advance-screenshot-3.webp"],"key_features":["Multi-Purpose","Dark Mode","Services & Team","Configurable Hero"],"demo_url":"https://jekyll-advance.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-advance/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ with Bootstrap 5.2 β€” no jQuery, minimal vanilla JS","Services content type with individual service pages","Projects portfolio with filterable project showcase","Team content type for staff and contributor profiles","Full blog with pagination, categories, and author support","Highly configurable hero section β€” background image, colour overlay, alignment, text, and blend effects","Dark mode with automatic (system preference) and manual toggle","Breadcrumbs and sidebars on interior pages","Animated transparent header on scroll","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, and footer in _config.yml","Auto-generated SEO meta tags, Open Graph, and Twitter card data","Responsive nested dropdown navigation and mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Google Analytics and social media links","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation at zerostatic.io/docs/jekyll-advance/"],"slug":"advance","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Academic Pages is the most widely used academic personal website template on GitHub, with over 12,000 stars and hundreds of thousands of researchers using it worldwide. It's a fork of Minimal Mistakes, extended specifically for academic use cases: publications with BibTeX citations, conference talks with slides and video links, course teaching pages, a project portfolio, and a CV that generates itself from structured YAML files.\n\nThe fork-to-publish model is particularly popular in academia β€” researchers can have a live personal website on GitHub Pages within minutes, with no server, no CMS, and no ongoing cost.\n\n**Who is it for?** Researchers, academics, PhD students, and scientists who want a professional web presence that highlights publications, talks, and research without complex web development.\n","url":"/themes/academicpages/","draft":false,"categories":["Academic"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Academic Pages Jekyll Theme","description":"An academic portfolio Jekyll theme for researchers and scholars. Supports publications, talks, CV pages, and GitHub Pages out of the box.","key_features":["Publications Page","CV Layout","GitHub Pages","BibTeX Support"],"card_description":"Academic portfolio for researchers with publications, talks, and CV pages.","category":"Academic","card_image":"/assets/images/themes/academicpages-card.webp","theme_screenshots":["/assets/images/themes/academicpages-screenshot.webp","/assets/images/themes/academicpages-screenshot-2.webp","/assets/images/themes/academicpages-screenshot-3.webp"],"demo_url":"https://academicpages.github.io/","github_url":"https://github.com/academicpages/academicpages.github.io","author":"GitHub Community","github_author_name":"academicpages","github_author_url":"https://github.com/academicpages","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-include-cache"],"updated_at":"2024-06-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"2.1.0","license":"MIT","stars":12000,"forks":8000,"features":["Dedicated pages for publications, talks, and teaching","Auto-generated CV from structured YAML data","Jupyter notebook integration for data-driven pages","Google Scholar and ORCID profile links","BibTeX citation support","Research portfolio with project pages","Blog section for news and updates","SEO optimised for academic search visibility","GitHub Pages compatible β€” no server required","Fork-to-publish workflow"],"slug":"academicpages","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/advance.md","relative_path":"_themes/advance.md","excerpt":"<p>Advance is the theme for teams and businesses that have outgrown a simple blog and need a full website β€” one that can handle services, a project portfolio, staff pages, and a content blog, all from a single Jekyll installation.</p>\n\n","previous":{"path":"_themes/academicpages.md","relative_path":"_themes/academicpages.md","excerpt":"<p>Academic Pages is the most widely used academic personal website template on GitHub, with over 12,000 stars and hundreds of thousands of researchers using it worldwide. It’s a fork of Minimal Mistakes, extended specifically for academic use cases: publications with BibTeX citations, conference talks with slides and video links, course teaching pages, a project portfolio, and a CV that generates itself from structured YAML files.</p>\n\n","previous":null,"id":"/themes/academicpages","collection":"themes","next":{"path":"_themes/advance.md","relative_path":"_themes/advance.md","id":"/themes/advance","collection":"themes","url":"/themes/advance/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Advance Jekyll Theme","rating":4.9,"rating_count":38,"description":"A premium multi-purpose Jekyll theme for building advanced marketing and business websites. Includes Services, Projects, and Team content types, a configurable hero section, full blog, dark mode, and Bootstrap 5.2.","card_description":"Premium multi-purpose theme β€” services, projects, team, blog, and configurable hero.","price":79,"category":"Business","card_image":"/assets/images/themes/advance-card.webp","theme_screenshots":["/assets/images/themes/advance-screenshot.webp","/assets/images/themes/advance-screenshot-2.webp","/assets/images/themes/advance-screenshot-3.webp"],"key_features":["Multi-Purpose","Dark Mode","Services & Team","Configurable Hero"],"demo_url":"https://jekyll-advance.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-advance/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ with Bootstrap 5.2 β€” no jQuery, minimal vanilla JS","Services content type with individual service pages","Projects portfolio with filterable project showcase","Team content type for staff and contributor profiles","Full blog with pagination, categories, and author support","Highly configurable hero section β€” background image, colour overlay, alignment, text, and blend effects","Dark mode with automatic (system preference) and manual toggle","Breadcrumbs and sidebars on interior pages","Animated transparent header on scroll","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, and footer in _config.yml","Auto-generated SEO meta tags, Open Graph, and Twitter card data","Responsive nested dropdown navigation and mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Google Analytics and social media links","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation at zerostatic.io/docs/jekyll-advance/"],"slug":"advance","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Academic Pages is the most widely used academic personal website template on GitHub, with over 12,000 stars and hundreds of thousands of researchers using it worldwide. It's a fork of Minimal Mistakes, extended specifically for academic use cases: publications with BibTeX citations, conference talks with slides and video links, course teaching pages, a project portfolio, and a CV that generates itself from structured YAML files.\n\nThe fork-to-publish model is particularly popular in academia β€” researchers can have a live personal website on GitHub Pages within minutes, with no server, no CMS, and no ongoing cost.\n\n**Who is it for?** Researchers, academics, PhD students, and scientists who want a professional web presence that highlights publications, talks, and research without complex web development.\n","url":"/themes/academicpages/","draft":false,"categories":["Academic"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Academic Pages Jekyll Theme","description":"An academic portfolio Jekyll theme for researchers and scholars. Supports publications, talks, CV pages, and GitHub Pages out of the box.","key_features":["Publications Page","CV Layout","GitHub Pages","BibTeX Support"],"card_description":"Academic portfolio for researchers with publications, talks, and CV pages.","category":"Academic","card_image":"/assets/images/themes/academicpages-card.webp","theme_screenshots":["/assets/images/themes/academicpages-screenshot.webp","/assets/images/themes/academicpages-screenshot-2.webp","/assets/images/themes/academicpages-screenshot-3.webp"],"demo_url":"https://academicpages.github.io/","github_url":"https://github.com/academicpages/academicpages.github.io","author":"GitHub Community","github_author_name":"academicpages","github_author_url":"https://github.com/academicpages","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-include-cache"],"updated_at":"2024-06-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"2.1.0","license":"MIT","stars":12000,"forks":8000,"features":["Dedicated pages for publications, talks, and teaching","Auto-generated CV from structured YAML data","Jupyter notebook integration for data-driven pages","Google Scholar and ORCID profile links","BibTeX citation support","Research portfolio with project pages","Blog section for news and updates","SEO optimised for academic search visibility","GitHub Pages compatible β€” no server required","Fork-to-publish workflow"],"slug":"academicpages","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/advance","collection":"themes","next":{"path":"_themes/agency.md","relative_path":"_themes/agency.md","excerpt":"<p>Agency is a bold, dark-themed Jekyll portfolio theme inspired by the best creative agency sites on the web. It makes a strong first impression with a full-screen hero, then guides visitors through your work, services, and team in a single scrolling page.</p>\n\n","previous":{"path":"_themes/advance.md","relative_path":"_themes/advance.md","id":"/themes/advance","collection":"themes","url":"/themes/advance/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Advance Jekyll Theme","rating":4.9,"rating_count":38,"description":"A premium multi-purpose Jekyll theme for building advanced marketing and business websites. Includes Services, Projects, and Team content types, a configurable hero section, full blog, dark mode, and Bootstrap 5.2.","card_description":"Premium multi-purpose theme β€” services, projects, team, blog, and configurable hero.","price":79,"category":"Business","card_image":"/assets/images/themes/advance-card.webp","theme_screenshots":["/assets/images/themes/advance-screenshot.webp","/assets/images/themes/advance-screenshot-2.webp","/assets/images/themes/advance-screenshot-3.webp"],"key_features":["Multi-Purpose","Dark Mode","Services & Team","Configurable Hero"],"demo_url":"https://jekyll-advance.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-advance/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ with Bootstrap 5.2 β€” no jQuery, minimal vanilla JS","Services content type with individual service pages","Projects portfolio with filterable project showcase","Team content type for staff and contributor profiles","Full blog with pagination, categories, and author support","Highly configurable hero section β€” background image, colour overlay, alignment, text, and blend effects","Dark mode with automatic (system preference) and manual toggle","Breadcrumbs and sidebars on interior pages","Animated transparent header on scroll","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, and footer in _config.yml","Auto-generated SEO meta tags, Open Graph, and Twitter card data","Responsive nested dropdown navigation and mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Google Analytics and social media links","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation at zerostatic.io/docs/jekyll-advance/"],"slug":"advance","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/agency","collection":"themes","next":{"path":"_themes/al-folio.md","relative_path":"_themes/al-folio.md","id":"/themes/al-folio","collection":"themes","url":"/themes/al-folio/","draft":false,"categories":["Academic"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"al-folio Jekyll Theme","description":"A clean, minimal Jekyll theme built for academics and researchers. Beautifully renders publications, projects, and CV with BibTeX support.","key_features":["Publications List","BibTeX Support","Dark Mode","Project Pages"],"card_description":"Clean academic theme for researchers with BibTeX and publications support.","category":"Academic","card_image":"/assets/images/themes/al-folio-card.webp","theme_screenshots":["/assets/images/themes/al-folio-screenshot.webp","/assets/images/themes/al-folio-screenshot-2.webp","/assets/images/themes/al-folio-screenshot-3.webp"],"demo_url":"https://alshedivat.github.io/al-folio/","github_url":"https://github.com/alshedivat/al-folio","author":"GitHub Community","github_author_name":"Maruan Al-Shedivat","github_author_url":"https://github.com/alshedivat","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-05-01","added_at":"2026-01-15","popular":true,"trending":true,"bestseller":false,"version":"0.12.0","license":"MIT","stars":11200,"forks":4800,"features":["Publication list with BibTeX","Project pages","Teaching and CV sections","Dark and light mode","MathJax and code highlighting"],"slug":"al-folio","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Agency is a bold, dark-themed Jekyll portfolio theme inspired by the best creative agency sites on the web. It makes a strong first impression with a full-screen hero, then guides visitors through your work, services, and team in a single scrolling page.\n\nBuilt for designers, developers, and studios who want their portfolio to look as professional as the work inside it.\n\n**Who is it for?** Freelancers, agencies, and creative studios who want a striking, one-page portfolio site.\n","url":"/themes/agency/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Agency Jekyll Theme","description":"A striking single-page agency Jekyll theme with full-screen sections, portfolio grid, and team showcase. Based on Start Bootstrap Agency.","key_features":["One-Page Design","Portfolio Grid","Team Showcase","Smooth Scroll"],"card_description":"Striking single-page agency theme with portfolio grid and team showcase.","category":"Portfolio","card_image":"/assets/images/themes/agency-card.webp","theme_screenshots":["/assets/images/themes/agency-screenshot.webp","/assets/images/themes/agency-screenshot-2.webp","/assets/images/themes/agency-screenshot-3.webp"],"demo_url":"https://y7kim.github.io/agency-jekyll-theme/","github_url":"https://github.com/y7kim/agency-jekyll-theme","author":"GitHub Community","github_author_name":"Rick Kim","github_author_url":"https://github.com/y7kim","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-01-10","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":820,"forks":420,"features":["Full-screen hero section","Project showcase grid","Dark aesthetic","Team and services sections","Contact form ready"],"slug":"agency","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Advance is the theme for teams and businesses that have outgrown a simple blog and need a full website β€” one that can handle services, a project portfolio, staff pages, and a content blog, all from a single Jekyll installation.\n\n### More Than a Blog\n\nMost Jekyll themes give you a blog and a few static pages. Advance ships with dedicated content types for **Services**, **Projects**, and **Team** β€” each with its own listing page and individual detail pages, all driven by markdown files and front-matter. Add a new team member, service offering, or case study the same way you'd add a blog post: create a markdown file and fill in the front-matter.\n\n### The Configurable Hero\n\nEvery page in Advance can have a unique hero section. Adjust the background image, colour overlay, blend effects, text alignment, and call-to-action β€” all from front-matter. No CSS editing required. The result is a site that feels custom-designed without custom development.\n\n### Performance by Default\n\nAdvance uses Bootstrap 5.2 for layout but strips jQuery entirely, keeping JavaScript to a minimum. Combined with automatic SEO meta tags, Open Graph data, and semantic HTML, the theme achieves strong Lighthouse scores out of the box. Dark mode is built in β€” automatic via system preference or manual toggle β€” so the design holds up in any context.\n\n### Deploy Anywhere\n\nAdvance is fully compatible with GitHub Pages (no custom plugins that break Pages builds) and ships with a `netlify.toml` for one-click Netlify deployment. Formspree and Netlify Forms are supported for contact forms; Disqus handles comments.\n\n**Who is it for?** Agencies, freelancers, and small businesses that want a professional multi-page Jekyll site β€” not just a blog β€” and need the flexibility to grow it over time.\n","url":"/themes/advance/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Advance Jekyll Theme","rating":4.9,"rating_count":38,"description":"A premium multi-purpose Jekyll theme for building advanced marketing and business websites. Includes Services, Projects, and Team content types, a configurable hero section, full blog, dark mode, and Bootstrap 5.2.","card_description":"Premium multi-purpose theme β€” services, projects, team, blog, and configurable hero.","price":79,"category":"Business","card_image":"/assets/images/themes/advance-card.webp","theme_screenshots":["/assets/images/themes/advance-screenshot.webp","/assets/images/themes/advance-screenshot-2.webp","/assets/images/themes/advance-screenshot-3.webp"],"key_features":["Multi-Purpose","Dark Mode","Services & Team","Configurable Hero"],"demo_url":"https://jekyll-advance.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-advance/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ with Bootstrap 5.2 β€” no jQuery, minimal vanilla JS","Services content type with individual service pages","Projects portfolio with filterable project showcase","Team content type for staff and contributor profiles","Full blog with pagination, categories, and author support","Highly configurable hero section β€” background image, colour overlay, alignment, text, and blend effects","Dark mode with automatic (system preference) and manual toggle","Breadcrumbs and sidebars on interior pages","Animated transparent header on scroll","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, and footer in _config.yml","Auto-generated SEO meta tags, Open Graph, and Twitter card data","Responsive nested dropdown navigation and mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Google Analytics and social media links","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation at zerostatic.io/docs/jekyll-advance/"],"slug":"advance","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/agency.md","relative_path":"_themes/agency.md","excerpt":"<p>Agency is a bold, dark-themed Jekyll portfolio theme inspired by the best creative agency sites on the web. It makes a strong first impression with a full-screen hero, then guides visitors through your work, services, and team in a single scrolling page.</p>\n\n","previous":{"path":"_themes/advance.md","relative_path":"_themes/advance.md","excerpt":"<p>Advance is the theme for teams and businesses that have outgrown a simple blog and need a full website β€” one that can handle services, a project portfolio, staff pages, and a content blog, all from a single Jekyll installation.</p>\n\n","previous":{"path":"_themes/academicpages.md","relative_path":"_themes/academicpages.md","id":"/themes/academicpages","collection":"themes","url":"/themes/academicpages/","draft":false,"categories":["Academic"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Academic Pages Jekyll Theme","description":"An academic portfolio Jekyll theme for researchers and scholars. Supports publications, talks, CV pages, and GitHub Pages out of the box.","key_features":["Publications Page","CV Layout","GitHub Pages","BibTeX Support"],"card_description":"Academic portfolio for researchers with publications, talks, and CV pages.","category":"Academic","card_image":"/assets/images/themes/academicpages-card.webp","theme_screenshots":["/assets/images/themes/academicpages-screenshot.webp","/assets/images/themes/academicpages-screenshot-2.webp","/assets/images/themes/academicpages-screenshot-3.webp"],"demo_url":"https://academicpages.github.io/","github_url":"https://github.com/academicpages/academicpages.github.io","author":"GitHub Community","github_author_name":"academicpages","github_author_url":"https://github.com/academicpages","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-include-cache"],"updated_at":"2024-06-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"2.1.0","license":"MIT","stars":12000,"forks":8000,"features":["Dedicated pages for publications, talks, and teaching","Auto-generated CV from structured YAML data","Jupyter notebook integration for data-driven pages","Google Scholar and ORCID profile links","BibTeX citation support","Research portfolio with project pages","Blog section for news and updates","SEO optimised for academic search visibility","GitHub Pages compatible β€” no server required","Fork-to-publish workflow"],"slug":"academicpages","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/advance","collection":"themes","next":{"path":"_themes/agency.md","relative_path":"_themes/agency.md","id":"/themes/agency","collection":"themes","url":"/themes/agency/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Agency Jekyll Theme","description":"A striking single-page agency Jekyll theme with full-screen sections, portfolio grid, and team showcase. Based on Start Bootstrap Agency.","key_features":["One-Page Design","Portfolio Grid","Team Showcase","Smooth Scroll"],"card_description":"Striking single-page agency theme with portfolio grid and team showcase.","category":"Portfolio","card_image":"/assets/images/themes/agency-card.webp","theme_screenshots":["/assets/images/themes/agency-screenshot.webp","/assets/images/themes/agency-screenshot-2.webp","/assets/images/themes/agency-screenshot-3.webp"],"demo_url":"https://y7kim.github.io/agency-jekyll-theme/","github_url":"https://github.com/y7kim/agency-jekyll-theme","author":"GitHub Community","github_author_name":"Rick Kim","github_author_url":"https://github.com/y7kim","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-01-10","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":820,"forks":420,"features":["Full-screen hero section","Project showcase grid","Dark aesthetic","Team and services sections","Contact form ready"],"slug":"agency","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Advance is the theme for teams and businesses that have outgrown a simple blog and need a full website β€” one that can handle services, a project portfolio, staff pages, and a content blog, all from a single Jekyll installation.\n\n### More Than a Blog\n\nMost Jekyll themes give you a blog and a few static pages. Advance ships with dedicated content types for **Services**, **Projects**, and **Team** β€” each with its own listing page and individual detail pages, all driven by markdown files and front-matter. Add a new team member, service offering, or case study the same way you'd add a blog post: create a markdown file and fill in the front-matter.\n\n### The Configurable Hero\n\nEvery page in Advance can have a unique hero section. Adjust the background image, colour overlay, blend effects, text alignment, and call-to-action β€” all from front-matter. No CSS editing required. The result is a site that feels custom-designed without custom development.\n\n### Performance by Default\n\nAdvance uses Bootstrap 5.2 for layout but strips jQuery entirely, keeping JavaScript to a minimum. Combined with automatic SEO meta tags, Open Graph data, and semantic HTML, the theme achieves strong Lighthouse scores out of the box. Dark mode is built in β€” automatic via system preference or manual toggle β€” so the design holds up in any context.\n\n### Deploy Anywhere\n\nAdvance is fully compatible with GitHub Pages (no custom plugins that break Pages builds) and ships with a `netlify.toml` for one-click Netlify deployment. Formspree and Netlify Forms are supported for contact forms; Disqus handles comments.\n\n**Who is it for?** Agencies, freelancers, and small businesses that want a professional multi-page Jekyll site β€” not just a blog β€” and need the flexibility to grow it over time.\n","url":"/themes/advance/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Advance Jekyll Theme","rating":4.9,"rating_count":38,"description":"A premium multi-purpose Jekyll theme for building advanced marketing and business websites. Includes Services, Projects, and Team content types, a configurable hero section, full blog, dark mode, and Bootstrap 5.2.","card_description":"Premium multi-purpose theme β€” services, projects, team, blog, and configurable hero.","price":79,"category":"Business","card_image":"/assets/images/themes/advance-card.webp","theme_screenshots":["/assets/images/themes/advance-screenshot.webp","/assets/images/themes/advance-screenshot-2.webp","/assets/images/themes/advance-screenshot-3.webp"],"key_features":["Multi-Purpose","Dark Mode","Services & Team","Configurable Hero"],"demo_url":"https://jekyll-advance.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-advance/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ with Bootstrap 5.2 β€” no jQuery, minimal vanilla JS","Services content type with individual service pages","Projects portfolio with filterable project showcase","Team content type for staff and contributor profiles","Full blog with pagination, categories, and author support","Highly configurable hero section β€” background image, colour overlay, alignment, text, and blend effects","Dark mode with automatic (system preference) and manual toggle","Breadcrumbs and sidebars on interior pages","Animated transparent header on scroll","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, and footer in _config.yml","Auto-generated SEO meta tags, Open Graph, and Twitter card data","Responsive nested dropdown navigation and mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Google Analytics and social media links","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation at zerostatic.io/docs/jekyll-advance/"],"slug":"advance","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/agency","collection":"themes","next":{"path":"_themes/al-folio.md","relative_path":"_themes/al-folio.md","excerpt":"<p>al-folio is the go-to Jekyll theme for academics, researchers, and students who need a polished personal website. It handles everything specific to academic publishing β€” BibTeX citations, publication lists, project pages β€” with a clean, distraction-free design.</p>\n\n","previous":{"path":"_themes/agency.md","relative_path":"_themes/agency.md","id":"/themes/agency","collection":"themes","url":"/themes/agency/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Agency Jekyll Theme","description":"A striking single-page agency Jekyll theme with full-screen sections, portfolio grid, and team showcase. Based on Start Bootstrap Agency.","key_features":["One-Page Design","Portfolio Grid","Team Showcase","Smooth Scroll"],"card_description":"Striking single-page agency theme with portfolio grid and team showcase.","category":"Portfolio","card_image":"/assets/images/themes/agency-card.webp","theme_screenshots":["/assets/images/themes/agency-screenshot.webp","/assets/images/themes/agency-screenshot-2.webp","/assets/images/themes/agency-screenshot-3.webp"],"demo_url":"https://y7kim.github.io/agency-jekyll-theme/","github_url":"https://github.com/y7kim/agency-jekyll-theme","author":"GitHub Community","github_author_name":"Rick Kim","github_author_url":"https://github.com/y7kim","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-01-10","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":820,"forks":420,"features":["Full-screen hero section","Project showcase grid","Dark aesthetic","Team and services sections","Contact form ready"],"slug":"agency","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/al-folio","collection":"themes","next":{"path":"_themes/alembic.md","relative_path":"_themes/alembic.md","id":"/themes/alembic","collection":"themes","url":"/themes/alembic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Alembic Jekyll Theme","description":"A clean, minimal Jekyll theme with great typography and flexible page layouts. Works out of the box as a gem-based theme.","key_features":["Gem-Based Theme","Clean Typography","Flexible Layouts","GitHub Pages"],"card_description":"Clean, minimal gem-based theme with flexible page layouts.","category":"Blog","card_image":"/assets/images/themes/alembic-card.webp","theme_screenshots":["/assets/images/themes/alembic-screenshot.webp","/assets/images/themes/alembic-screenshot-2.webp","/assets/images/themes/alembic-screenshot-3.webp"],"demo_url":"https://alembic.darn.es/","github_url":"https://github.com/daviddarnes/alembic","author":"GitHub Community","github_author_name":"David Darnes","github_author_url":"https://github.com/daviddarnes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-01","popular":false,"trending":false,"bestseller":false,"version":"3.1.0","license":"MIT","stars":2600,"forks":760,"features":["Gem-based installation","Multiple page layouts","Configurable navigation","Syntax highlighting","SEO ready"],"slug":"alembic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"al-folio is the go-to Jekyll theme for academics, researchers, and students who need a polished personal website. It handles everything specific to academic publishing β€” BibTeX citations, publication lists, project pages β€” with a clean, distraction-free design.\n\nOriginally created for a Princeton researcher, it has grown into one of the most starred academic Jekyll themes on GitHub with over 11,000 stars.\n\n**Who is it for?** PhD students, professors, researchers, and academics who want a professional online presence with proper support for publications and projects.\n","url":"/themes/al-folio/","draft":false,"categories":["Academic"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"al-folio Jekyll Theme","description":"A clean, minimal Jekyll theme built for academics and researchers. Beautifully renders publications, projects, and CV with BibTeX support.","key_features":["Publications List","BibTeX Support","Dark Mode","Project Pages"],"card_description":"Clean academic theme for researchers with BibTeX and publications support.","category":"Academic","card_image":"/assets/images/themes/al-folio-card.webp","theme_screenshots":["/assets/images/themes/al-folio-screenshot.webp","/assets/images/themes/al-folio-screenshot-2.webp","/assets/images/themes/al-folio-screenshot-3.webp"],"demo_url":"https://alshedivat.github.io/al-folio/","github_url":"https://github.com/alshedivat/al-folio","author":"GitHub Community","github_author_name":"Maruan Al-Shedivat","github_author_url":"https://github.com/alshedivat","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-05-01","added_at":"2026-01-15","popular":true,"trending":true,"bestseller":false,"version":"0.12.0","license":"MIT","stars":11200,"forks":4800,"features":["Publication list with BibTeX","Project pages","Teaching and CV sections","Dark and light mode","MathJax and code highlighting"],"slug":"al-folio","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Agency is a bold, dark-themed Jekyll portfolio theme inspired by the best creative agency sites on the web. It makes a strong first impression with a full-screen hero, then guides visitors through your work, services, and team in a single scrolling page.\n\nBuilt for designers, developers, and studios who want their portfolio to look as professional as the work inside it.\n\n**Who is it for?** Freelancers, agencies, and creative studios who want a striking, one-page portfolio site.\n","url":"/themes/agency/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Agency Jekyll Theme","description":"A striking single-page agency Jekyll theme with full-screen sections, portfolio grid, and team showcase. Based on Start Bootstrap Agency.","key_features":["One-Page Design","Portfolio Grid","Team Showcase","Smooth Scroll"],"card_description":"Striking single-page agency theme with portfolio grid and team showcase.","category":"Portfolio","card_image":"/assets/images/themes/agency-card.webp","theme_screenshots":["/assets/images/themes/agency-screenshot.webp","/assets/images/themes/agency-screenshot-2.webp","/assets/images/themes/agency-screenshot-3.webp"],"demo_url":"https://y7kim.github.io/agency-jekyll-theme/","github_url":"https://github.com/y7kim/agency-jekyll-theme","author":"GitHub Community","github_author_name":"Rick Kim","github_author_url":"https://github.com/y7kim","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-01-10","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":820,"forks":420,"features":["Full-screen hero section","Project showcase grid","Dark aesthetic","Team and services sections","Contact form ready"],"slug":"agency","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/al-folio.md","relative_path":"_themes/al-folio.md","excerpt":"<p>al-folio is the go-to Jekyll theme for academics, researchers, and students who need a polished personal website. It handles everything specific to academic publishing β€” BibTeX citations, publication lists, project pages β€” with a clean, distraction-free design.</p>\n\n","previous":{"path":"_themes/agency.md","relative_path":"_themes/agency.md","excerpt":"<p>Agency is a bold, dark-themed Jekyll portfolio theme inspired by the best creative agency sites on the web. It makes a strong first impression with a full-screen hero, then guides visitors through your work, services, and team in a single scrolling page.</p>\n\n","previous":{"path":"_themes/advance.md","relative_path":"_themes/advance.md","id":"/themes/advance","collection":"themes","url":"/themes/advance/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Advance Jekyll Theme","rating":4.9,"rating_count":38,"description":"A premium multi-purpose Jekyll theme for building advanced marketing and business websites. Includes Services, Projects, and Team content types, a configurable hero section, full blog, dark mode, and Bootstrap 5.2.","card_description":"Premium multi-purpose theme β€” services, projects, team, blog, and configurable hero.","price":79,"category":"Business","card_image":"/assets/images/themes/advance-card.webp","theme_screenshots":["/assets/images/themes/advance-screenshot.webp","/assets/images/themes/advance-screenshot-2.webp","/assets/images/themes/advance-screenshot-3.webp"],"key_features":["Multi-Purpose","Dark Mode","Services & Team","Configurable Hero"],"demo_url":"https://jekyll-advance.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-advance/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ with Bootstrap 5.2 β€” no jQuery, minimal vanilla JS","Services content type with individual service pages","Projects portfolio with filterable project showcase","Team content type for staff and contributor profiles","Full blog with pagination, categories, and author support","Highly configurable hero section β€” background image, colour overlay, alignment, text, and blend effects","Dark mode with automatic (system preference) and manual toggle","Breadcrumbs and sidebars on interior pages","Animated transparent header on scroll","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, and footer in _config.yml","Auto-generated SEO meta tags, Open Graph, and Twitter card data","Responsive nested dropdown navigation and mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Google Analytics and social media links","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation at zerostatic.io/docs/jekyll-advance/"],"slug":"advance","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/agency","collection":"themes","next":{"path":"_themes/al-folio.md","relative_path":"_themes/al-folio.md","id":"/themes/al-folio","collection":"themes","url":"/themes/al-folio/","draft":false,"categories":["Academic"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"al-folio Jekyll Theme","description":"A clean, minimal Jekyll theme built for academics and researchers. Beautifully renders publications, projects, and CV with BibTeX support.","key_features":["Publications List","BibTeX Support","Dark Mode","Project Pages"],"card_description":"Clean academic theme for researchers with BibTeX and publications support.","category":"Academic","card_image":"/assets/images/themes/al-folio-card.webp","theme_screenshots":["/assets/images/themes/al-folio-screenshot.webp","/assets/images/themes/al-folio-screenshot-2.webp","/assets/images/themes/al-folio-screenshot-3.webp"],"demo_url":"https://alshedivat.github.io/al-folio/","github_url":"https://github.com/alshedivat/al-folio","author":"GitHub Community","github_author_name":"Maruan Al-Shedivat","github_author_url":"https://github.com/alshedivat","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-05-01","added_at":"2026-01-15","popular":true,"trending":true,"bestseller":false,"version":"0.12.0","license":"MIT","stars":11200,"forks":4800,"features":["Publication list with BibTeX","Project pages","Teaching and CV sections","Dark and light mode","MathJax and code highlighting"],"slug":"al-folio","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Agency is a bold, dark-themed Jekyll portfolio theme inspired by the best creative agency sites on the web. It makes a strong first impression with a full-screen hero, then guides visitors through your work, services, and team in a single scrolling page.\n\nBuilt for designers, developers, and studios who want their portfolio to look as professional as the work inside it.\n\n**Who is it for?** Freelancers, agencies, and creative studios who want a striking, one-page portfolio site.\n","url":"/themes/agency/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Agency Jekyll Theme","description":"A striking single-page agency Jekyll theme with full-screen sections, portfolio grid, and team showcase. Based on Start Bootstrap Agency.","key_features":["One-Page Design","Portfolio Grid","Team Showcase","Smooth Scroll"],"card_description":"Striking single-page agency theme with portfolio grid and team showcase.","category":"Portfolio","card_image":"/assets/images/themes/agency-card.webp","theme_screenshots":["/assets/images/themes/agency-screenshot.webp","/assets/images/themes/agency-screenshot-2.webp","/assets/images/themes/agency-screenshot-3.webp"],"demo_url":"https://y7kim.github.io/agency-jekyll-theme/","github_url":"https://github.com/y7kim/agency-jekyll-theme","author":"GitHub Community","github_author_name":"Rick Kim","github_author_url":"https://github.com/y7kim","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-01-10","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":820,"forks":420,"features":["Full-screen hero section","Project showcase grid","Dark aesthetic","Team and services sections","Contact form ready"],"slug":"agency","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/al-folio","collection":"themes","next":{"path":"_themes/alembic.md","relative_path":"_themes/alembic.md","excerpt":"<p>Alembic is a clean, gem-based Jekyll theme that works beautifully as a starting point for blogs, personal sites, and small business pages. It prioritises great typography and readable layouts over flashy design.</p>\n\n","previous":{"path":"_themes/al-folio.md","relative_path":"_themes/al-folio.md","id":"/themes/al-folio","collection":"themes","url":"/themes/al-folio/","draft":false,"categories":["Academic"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"al-folio Jekyll Theme","description":"A clean, minimal Jekyll theme built for academics and researchers. Beautifully renders publications, projects, and CV with BibTeX support.","key_features":["Publications List","BibTeX Support","Dark Mode","Project Pages"],"card_description":"Clean academic theme for researchers with BibTeX and publications support.","category":"Academic","card_image":"/assets/images/themes/al-folio-card.webp","theme_screenshots":["/assets/images/themes/al-folio-screenshot.webp","/assets/images/themes/al-folio-screenshot-2.webp","/assets/images/themes/al-folio-screenshot-3.webp"],"demo_url":"https://alshedivat.github.io/al-folio/","github_url":"https://github.com/alshedivat/al-folio","author":"GitHub Community","github_author_name":"Maruan Al-Shedivat","github_author_url":"https://github.com/alshedivat","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-05-01","added_at":"2026-01-15","popular":true,"trending":true,"bestseller":false,"version":"0.12.0","license":"MIT","stars":11200,"forks":4800,"features":["Publication list with BibTeX","Project pages","Teaching and CV sections","Dark and light mode","MathJax and code highlighting"],"slug":"al-folio","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/alembic","collection":"themes","next":{"path":"_themes/almace-scaffolding.md","relative_path":"_themes/almace-scaffolding.md","id":"/themes/almace-scaffolding","collection":"themes","url":"/themes/almace-scaffolding/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Almace Scaffolding Jekyll Theme","description":"A bold, minimal, and blazing fast Jekyll theme with a distinctive typographic style and performance-first architecture.","key_features":["Ultra Fast","Bold Typography","Performance First","Minimal Design"],"card_description":"Bold, minimal, blazing-fast theme with distinctive typographic style.","category":"Blog","card_image":"/assets/images/themes/almace-scaffolding-card.webp","theme_screenshots":["/assets/images/themes/almace-scaffolding-screenshot.webp","/assets/images/themes/almace-scaffolding-screenshot-2.webp","/assets/images/themes/almace-scaffolding-screenshot-3.webp"],"demo_url":"https://sparanoid.com/lab/amsf/","github_url":"https://github.com/sparanoid/almace-scaffolding","author":"GitHub Community","github_author_name":"sparanoid","github_author_url":"https://github.com/sparanoid","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-02-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.21.0","license":"MIT","stars":337,"forks":98,"features":["Bold typographic design","Performance-first architecture","Grunt build system","LESS stylesheets","SVG icon support","Custom post colours","Minimal navigation","Social links","RSS feed","Ultra-fast page loads"],"slug":"almace-scaffolding","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Alembic is a clean, gem-based Jekyll theme that works beautifully as a starting point for blogs, personal sites, and small business pages. It prioritises great typography and readable layouts over flashy design.\n\nBeing gem-based means you can install and update it like any Ruby gem, keeping your content separate from your theme.\n\n**Who is it for?** Bloggers and developers who want a clean, maintainable theme that installs as a gem.\n","url":"/themes/alembic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Alembic Jekyll Theme","description":"A clean, minimal Jekyll theme with great typography and flexible page layouts. Works out of the box as a gem-based theme.","key_features":["Gem-Based Theme","Clean Typography","Flexible Layouts","GitHub Pages"],"card_description":"Clean, minimal gem-based theme with flexible page layouts.","category":"Blog","card_image":"/assets/images/themes/alembic-card.webp","theme_screenshots":["/assets/images/themes/alembic-screenshot.webp","/assets/images/themes/alembic-screenshot-2.webp","/assets/images/themes/alembic-screenshot-3.webp"],"demo_url":"https://alembic.darn.es/","github_url":"https://github.com/daviddarnes/alembic","author":"GitHub Community","github_author_name":"David Darnes","github_author_url":"https://github.com/daviddarnes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-01","popular":false,"trending":false,"bestseller":false,"version":"3.1.0","license":"MIT","stars":2600,"forks":760,"features":["Gem-based installation","Multiple page layouts","Configurable navigation","Syntax highlighting","SEO ready"],"slug":"alembic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"al-folio is the go-to Jekyll theme for academics, researchers, and students who need a polished personal website. It handles everything specific to academic publishing β€” BibTeX citations, publication lists, project pages β€” with a clean, distraction-free design.\n\nOriginally created for a Princeton researcher, it has grown into one of the most starred academic Jekyll themes on GitHub with over 11,000 stars.\n\n**Who is it for?** PhD students, professors, researchers, and academics who want a professional online presence with proper support for publications and projects.\n","url":"/themes/al-folio/","draft":false,"categories":["Academic"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"al-folio Jekyll Theme","description":"A clean, minimal Jekyll theme built for academics and researchers. Beautifully renders publications, projects, and CV with BibTeX support.","key_features":["Publications List","BibTeX Support","Dark Mode","Project Pages"],"card_description":"Clean academic theme for researchers with BibTeX and publications support.","category":"Academic","card_image":"/assets/images/themes/al-folio-card.webp","theme_screenshots":["/assets/images/themes/al-folio-screenshot.webp","/assets/images/themes/al-folio-screenshot-2.webp","/assets/images/themes/al-folio-screenshot-3.webp"],"demo_url":"https://alshedivat.github.io/al-folio/","github_url":"https://github.com/alshedivat/al-folio","author":"GitHub Community","github_author_name":"Maruan Al-Shedivat","github_author_url":"https://github.com/alshedivat","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-05-01","added_at":"2026-01-15","popular":true,"trending":true,"bestseller":false,"version":"0.12.0","license":"MIT","stars":11200,"forks":4800,"features":["Publication list with BibTeX","Project pages","Teaching and CV sections","Dark and light mode","MathJax and code highlighting"],"slug":"al-folio","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/alembic.md","relative_path":"_themes/alembic.md","excerpt":"<p>Alembic is a clean, gem-based Jekyll theme that works beautifully as a starting point for blogs, personal sites, and small business pages. It prioritises great typography and readable layouts over flashy design.</p>\n\n","previous":{"path":"_themes/al-folio.md","relative_path":"_themes/al-folio.md","excerpt":"<p>al-folio is the go-to Jekyll theme for academics, researchers, and students who need a polished personal website. It handles everything specific to academic publishing β€” BibTeX citations, publication lists, project pages β€” with a clean, distraction-free design.</p>\n\n","previous":{"path":"_themes/agency.md","relative_path":"_themes/agency.md","id":"/themes/agency","collection":"themes","url":"/themes/agency/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Agency Jekyll Theme","description":"A striking single-page agency Jekyll theme with full-screen sections, portfolio grid, and team showcase. Based on Start Bootstrap Agency.","key_features":["One-Page Design","Portfolio Grid","Team Showcase","Smooth Scroll"],"card_description":"Striking single-page agency theme with portfolio grid and team showcase.","category":"Portfolio","card_image":"/assets/images/themes/agency-card.webp","theme_screenshots":["/assets/images/themes/agency-screenshot.webp","/assets/images/themes/agency-screenshot-2.webp","/assets/images/themes/agency-screenshot-3.webp"],"demo_url":"https://y7kim.github.io/agency-jekyll-theme/","github_url":"https://github.com/y7kim/agency-jekyll-theme","author":"GitHub Community","github_author_name":"Rick Kim","github_author_url":"https://github.com/y7kim","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-01-10","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":820,"forks":420,"features":["Full-screen hero section","Project showcase grid","Dark aesthetic","Team and services sections","Contact form ready"],"slug":"agency","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/al-folio","collection":"themes","next":{"path":"_themes/alembic.md","relative_path":"_themes/alembic.md","id":"/themes/alembic","collection":"themes","url":"/themes/alembic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Alembic Jekyll Theme","description":"A clean, minimal Jekyll theme with great typography and flexible page layouts. Works out of the box as a gem-based theme.","key_features":["Gem-Based Theme","Clean Typography","Flexible Layouts","GitHub Pages"],"card_description":"Clean, minimal gem-based theme with flexible page layouts.","category":"Blog","card_image":"/assets/images/themes/alembic-card.webp","theme_screenshots":["/assets/images/themes/alembic-screenshot.webp","/assets/images/themes/alembic-screenshot-2.webp","/assets/images/themes/alembic-screenshot-3.webp"],"demo_url":"https://alembic.darn.es/","github_url":"https://github.com/daviddarnes/alembic","author":"GitHub Community","github_author_name":"David Darnes","github_author_url":"https://github.com/daviddarnes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-01","popular":false,"trending":false,"bestseller":false,"version":"3.1.0","license":"MIT","stars":2600,"forks":760,"features":["Gem-based installation","Multiple page layouts","Configurable navigation","Syntax highlighting","SEO ready"],"slug":"alembic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"al-folio is the go-to Jekyll theme for academics, researchers, and students who need a polished personal website. It handles everything specific to academic publishing β€” BibTeX citations, publication lists, project pages β€” with a clean, distraction-free design.\n\nOriginally created for a Princeton researcher, it has grown into one of the most starred academic Jekyll themes on GitHub with over 11,000 stars.\n\n**Who is it for?** PhD students, professors, researchers, and academics who want a professional online presence with proper support for publications and projects.\n","url":"/themes/al-folio/","draft":false,"categories":["Academic"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"al-folio Jekyll Theme","description":"A clean, minimal Jekyll theme built for academics and researchers. Beautifully renders publications, projects, and CV with BibTeX support.","key_features":["Publications List","BibTeX Support","Dark Mode","Project Pages"],"card_description":"Clean academic theme for researchers with BibTeX and publications support.","category":"Academic","card_image":"/assets/images/themes/al-folio-card.webp","theme_screenshots":["/assets/images/themes/al-folio-screenshot.webp","/assets/images/themes/al-folio-screenshot-2.webp","/assets/images/themes/al-folio-screenshot-3.webp"],"demo_url":"https://alshedivat.github.io/al-folio/","github_url":"https://github.com/alshedivat/al-folio","author":"GitHub Community","github_author_name":"Maruan Al-Shedivat","github_author_url":"https://github.com/alshedivat","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-05-01","added_at":"2026-01-15","popular":true,"trending":true,"bestseller":false,"version":"0.12.0","license":"MIT","stars":11200,"forks":4800,"features":["Publication list with BibTeX","Project pages","Teaching and CV sections","Dark and light mode","MathJax and code highlighting"],"slug":"al-folio","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/alembic","collection":"themes","next":{"path":"_themes/almace-scaffolding.md","relative_path":"_themes/almace-scaffolding.md","excerpt":"<p>Almace Scaffolding is a statement theme β€” bold typography, strong visual personality, and an obsessive focus on performance. Pages load in milliseconds thanks to a lean build pipeline that strips out everything unnecessary.</p>\n\n","previous":{"path":"_themes/alembic.md","relative_path":"_themes/alembic.md","id":"/themes/alembic","collection":"themes","url":"/themes/alembic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Alembic Jekyll Theme","description":"A clean, minimal Jekyll theme with great typography and flexible page layouts. Works out of the box as a gem-based theme.","key_features":["Gem-Based Theme","Clean Typography","Flexible Layouts","GitHub Pages"],"card_description":"Clean, minimal gem-based theme with flexible page layouts.","category":"Blog","card_image":"/assets/images/themes/alembic-card.webp","theme_screenshots":["/assets/images/themes/alembic-screenshot.webp","/assets/images/themes/alembic-screenshot-2.webp","/assets/images/themes/alembic-screenshot-3.webp"],"demo_url":"https://alembic.darn.es/","github_url":"https://github.com/daviddarnes/alembic","author":"GitHub Community","github_author_name":"David Darnes","github_author_url":"https://github.com/daviddarnes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-01","popular":false,"trending":false,"bestseller":false,"version":"3.1.0","license":"MIT","stars":2600,"forks":760,"features":["Gem-based installation","Multiple page layouts","Configurable navigation","Syntax highlighting","SEO ready"],"slug":"alembic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/almace-scaffolding","collection":"themes","next":{"path":"_themes/architect.md","relative_path":"_themes/architect.md","id":"/themes/architect","collection":"themes","url":"/themes/architect/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Architect Jekyll Theme","description":"A clean GitHub Pages Jekyll theme with a prominent sidebar and crisp typography. Official GitHub Pages theme, ideal for project documentation.","key_features":["GitHub Pages","Sidebar Nav","Code Blocks","Project Docs"],"card_description":"Clean GitHub Pages theme with prominent sidebar for project docs.","category":"Documentation","card_image":"/assets/images/themes/architect-card.webp","theme_screenshots":["/assets/images/themes/architect-screenshot.webp","/assets/images/themes/architect-screenshot-2.webp","/assets/images/themes/architect-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/architect/","github_url":"https://github.com/pages-themes/architect","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Fixed sidebar for navigation","Clean, structured content area","Responsive layout","Single-line enable via _config.yml","No local Jekyll install needed","Suitable for multi-section documentation"],"slug":"architect","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Almace Scaffolding is a statement theme β€” bold typography, strong visual personality, and an obsessive focus on performance. Pages load in milliseconds thanks to a lean build pipeline that strips out everything unnecessary.\n\nThe Grunt-powered build system gives developers full control over the asset pipeline.\n\n**Who is it for?** Developers and designers who want a high-performance, visually distinctive blog that makes a strong typographic impression.\n","url":"/themes/almace-scaffolding/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Almace Scaffolding Jekyll Theme","description":"A bold, minimal, and blazing fast Jekyll theme with a distinctive typographic style and performance-first architecture.","key_features":["Ultra Fast","Bold Typography","Performance First","Minimal Design"],"card_description":"Bold, minimal, blazing-fast theme with distinctive typographic style.","category":"Blog","card_image":"/assets/images/themes/almace-scaffolding-card.webp","theme_screenshots":["/assets/images/themes/almace-scaffolding-screenshot.webp","/assets/images/themes/almace-scaffolding-screenshot-2.webp","/assets/images/themes/almace-scaffolding-screenshot-3.webp"],"demo_url":"https://sparanoid.com/lab/amsf/","github_url":"https://github.com/sparanoid/almace-scaffolding","author":"GitHub Community","github_author_name":"sparanoid","github_author_url":"https://github.com/sparanoid","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-02-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.21.0","license":"MIT","stars":337,"forks":98,"features":["Bold typographic design","Performance-first architecture","Grunt build system","LESS stylesheets","SVG icon support","Custom post colours","Minimal navigation","Social links","RSS feed","Ultra-fast page loads"],"slug":"almace-scaffolding","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Alembic is a clean, gem-based Jekyll theme that works beautifully as a starting point for blogs, personal sites, and small business pages. It prioritises great typography and readable layouts over flashy design.\n\nBeing gem-based means you can install and update it like any Ruby gem, keeping your content separate from your theme.\n\n**Who is it for?** Bloggers and developers who want a clean, maintainable theme that installs as a gem.\n","url":"/themes/alembic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Alembic Jekyll Theme","description":"A clean, minimal Jekyll theme with great typography and flexible page layouts. Works out of the box as a gem-based theme.","key_features":["Gem-Based Theme","Clean Typography","Flexible Layouts","GitHub Pages"],"card_description":"Clean, minimal gem-based theme with flexible page layouts.","category":"Blog","card_image":"/assets/images/themes/alembic-card.webp","theme_screenshots":["/assets/images/themes/alembic-screenshot.webp","/assets/images/themes/alembic-screenshot-2.webp","/assets/images/themes/alembic-screenshot-3.webp"],"demo_url":"https://alembic.darn.es/","github_url":"https://github.com/daviddarnes/alembic","author":"GitHub Community","github_author_name":"David Darnes","github_author_url":"https://github.com/daviddarnes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-01","popular":false,"trending":false,"bestseller":false,"version":"3.1.0","license":"MIT","stars":2600,"forks":760,"features":["Gem-based installation","Multiple page layouts","Configurable navigation","Syntax highlighting","SEO ready"],"slug":"alembic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/almace-scaffolding.md","relative_path":"_themes/almace-scaffolding.md","excerpt":"<p>Almace Scaffolding is a statement theme β€” bold typography, strong visual personality, and an obsessive focus on performance. Pages load in milliseconds thanks to a lean build pipeline that strips out everything unnecessary.</p>\n\n","previous":{"path":"_themes/alembic.md","relative_path":"_themes/alembic.md","excerpt":"<p>Alembic is a clean, gem-based Jekyll theme that works beautifully as a starting point for blogs, personal sites, and small business pages. It prioritises great typography and readable layouts over flashy design.</p>\n\n","previous":{"path":"_themes/al-folio.md","relative_path":"_themes/al-folio.md","id":"/themes/al-folio","collection":"themes","url":"/themes/al-folio/","draft":false,"categories":["Academic"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"al-folio Jekyll Theme","description":"A clean, minimal Jekyll theme built for academics and researchers. Beautifully renders publications, projects, and CV with BibTeX support.","key_features":["Publications List","BibTeX Support","Dark Mode","Project Pages"],"card_description":"Clean academic theme for researchers with BibTeX and publications support.","category":"Academic","card_image":"/assets/images/themes/al-folio-card.webp","theme_screenshots":["/assets/images/themes/al-folio-screenshot.webp","/assets/images/themes/al-folio-screenshot-2.webp","/assets/images/themes/al-folio-screenshot-3.webp"],"demo_url":"https://alshedivat.github.io/al-folio/","github_url":"https://github.com/alshedivat/al-folio","author":"GitHub Community","github_author_name":"Maruan Al-Shedivat","github_author_url":"https://github.com/alshedivat","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-05-01","added_at":"2026-01-15","popular":true,"trending":true,"bestseller":false,"version":"0.12.0","license":"MIT","stars":11200,"forks":4800,"features":["Publication list with BibTeX","Project pages","Teaching and CV sections","Dark and light mode","MathJax and code highlighting"],"slug":"al-folio","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/alembic","collection":"themes","next":{"path":"_themes/almace-scaffolding.md","relative_path":"_themes/almace-scaffolding.md","id":"/themes/almace-scaffolding","collection":"themes","url":"/themes/almace-scaffolding/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Almace Scaffolding Jekyll Theme","description":"A bold, minimal, and blazing fast Jekyll theme with a distinctive typographic style and performance-first architecture.","key_features":["Ultra Fast","Bold Typography","Performance First","Minimal Design"],"card_description":"Bold, minimal, blazing-fast theme with distinctive typographic style.","category":"Blog","card_image":"/assets/images/themes/almace-scaffolding-card.webp","theme_screenshots":["/assets/images/themes/almace-scaffolding-screenshot.webp","/assets/images/themes/almace-scaffolding-screenshot-2.webp","/assets/images/themes/almace-scaffolding-screenshot-3.webp"],"demo_url":"https://sparanoid.com/lab/amsf/","github_url":"https://github.com/sparanoid/almace-scaffolding","author":"GitHub Community","github_author_name":"sparanoid","github_author_url":"https://github.com/sparanoid","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-02-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.21.0","license":"MIT","stars":337,"forks":98,"features":["Bold typographic design","Performance-first architecture","Grunt build system","LESS stylesheets","SVG icon support","Custom post colours","Minimal navigation","Social links","RSS feed","Ultra-fast page loads"],"slug":"almace-scaffolding","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Alembic is a clean, gem-based Jekyll theme that works beautifully as a starting point for blogs, personal sites, and small business pages. It prioritises great typography and readable layouts over flashy design.\n\nBeing gem-based means you can install and update it like any Ruby gem, keeping your content separate from your theme.\n\n**Who is it for?** Bloggers and developers who want a clean, maintainable theme that installs as a gem.\n","url":"/themes/alembic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Alembic Jekyll Theme","description":"A clean, minimal Jekyll theme with great typography and flexible page layouts. Works out of the box as a gem-based theme.","key_features":["Gem-Based Theme","Clean Typography","Flexible Layouts","GitHub Pages"],"card_description":"Clean, minimal gem-based theme with flexible page layouts.","category":"Blog","card_image":"/assets/images/themes/alembic-card.webp","theme_screenshots":["/assets/images/themes/alembic-screenshot.webp","/assets/images/themes/alembic-screenshot-2.webp","/assets/images/themes/alembic-screenshot-3.webp"],"demo_url":"https://alembic.darn.es/","github_url":"https://github.com/daviddarnes/alembic","author":"GitHub Community","github_author_name":"David Darnes","github_author_url":"https://github.com/daviddarnes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-01","popular":false,"trending":false,"bestseller":false,"version":"3.1.0","license":"MIT","stars":2600,"forks":760,"features":["Gem-based installation","Multiple page layouts","Configurable navigation","Syntax highlighting","SEO ready"],"slug":"alembic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/almace-scaffolding","collection":"themes","next":{"path":"_themes/architect.md","relative_path":"_themes/architect.md","excerpt":"<p>Architect is GitHub’s documentation-oriented official theme. Its fixed sidebar and clearly delineated content area create an organised, easy-to-navigate layout that works well for project READMEs, API docs, and any site with multiple sections.</p>\n\n","previous":{"path":"_themes/almace-scaffolding.md","relative_path":"_themes/almace-scaffolding.md","id":"/themes/almace-scaffolding","collection":"themes","url":"/themes/almace-scaffolding/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Almace Scaffolding Jekyll Theme","description":"A bold, minimal, and blazing fast Jekyll theme with a distinctive typographic style and performance-first architecture.","key_features":["Ultra Fast","Bold Typography","Performance First","Minimal Design"],"card_description":"Bold, minimal, blazing-fast theme with distinctive typographic style.","category":"Blog","card_image":"/assets/images/themes/almace-scaffolding-card.webp","theme_screenshots":["/assets/images/themes/almace-scaffolding-screenshot.webp","/assets/images/themes/almace-scaffolding-screenshot-2.webp","/assets/images/themes/almace-scaffolding-screenshot-3.webp"],"demo_url":"https://sparanoid.com/lab/amsf/","github_url":"https://github.com/sparanoid/almace-scaffolding","author":"GitHub Community","github_author_name":"sparanoid","github_author_url":"https://github.com/sparanoid","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-02-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.21.0","license":"MIT","stars":337,"forks":98,"features":["Bold typographic design","Performance-first architecture","Grunt build system","LESS stylesheets","SVG icon support","Custom post colours","Minimal navigation","Social links","RSS feed","Ultra-fast page loads"],"slug":"almace-scaffolding","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/architect","collection":"themes","next":{"path":"_themes/aura-pro.md","relative_path":"_themes/aura-pro.md","id":"/themes/aura-pro","collection":"themes","url":"/themes/aura-pro/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Pro Jekyll Theme","rating":5.0,"rating_count":27,"description":"The premium upgrade to the Aura Jekyll theme. Includes all Aura features plus advanced blog layouts, star-rated testimonials, Sendy newsletter support, and read-time indicators.","card_description":"Premium upgrade to Aura β€” advanced layouts, star testimonials, and read time.","price":9,"category":"Personal","card_image":"/assets/images/themes/aura-pro-card.webp","theme_screenshots":["/assets/images/themes/aura-pro-screenshot.webp","/assets/images/themes/aura-pro-screenshot-2.webp","/assets/images/themes/aura-pro-screenshot-3.webp"],"key_features":["Two Blog Layouts","Star Testimonials","Read Time","Sendy Newsletter"],"demo_url":"https://satishw.github.io/jekyll-theme-aura-pro/","buy_url":"https://satishw.github.io/jekyll-theme-aura-pro/features/","author":"Satish W","author_url":"https://satishw.github.io/jekyll-theme-aura-pro/","github_author_name":"Satish W","support":"lifetime","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-06-26","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"Commercial","discount_label":"launch_offer","discount_original_price":29,"features":["All features of the free Aura theme included","Two blog post layout options to suit different content styles","Read time indicator on every blog post","Testimonials section with star ratings","Sendy.co newsletter integration (in addition to MailChimp)","Logo section for brand or personal mark","Fully compatible with GitHub Pages β€” no custom plugins required","Contact form via Formspree, comments via Disqus","Image gallery with lazy loading and YouTube embed support","Google Analytics and social sharing built in","Free lifetime updates and support"],"slug":"aura-pro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Architect is GitHub's documentation-oriented official theme. Its fixed sidebar and clearly delineated content area create an organised, easy-to-navigate layout that works well for project READMEs, API docs, and any site with multiple sections.\n\nThe theme's structured visual hierarchy gives your content immediate credibility, and its lightweight implementation means fast page loads even for large documentation sites.\n\n**Who is it for?** Developers building open-source project documentation or any structured informational site that benefits from persistent sidebar navigation.\n","url":"/themes/architect/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Architect Jekyll Theme","description":"A clean GitHub Pages Jekyll theme with a prominent sidebar and crisp typography. Official GitHub Pages theme, ideal for project documentation.","key_features":["GitHub Pages","Sidebar Nav","Code Blocks","Project Docs"],"card_description":"Clean GitHub Pages theme with prominent sidebar for project docs.","category":"Documentation","card_image":"/assets/images/themes/architect-card.webp","theme_screenshots":["/assets/images/themes/architect-screenshot.webp","/assets/images/themes/architect-screenshot-2.webp","/assets/images/themes/architect-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/architect/","github_url":"https://github.com/pages-themes/architect","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Fixed sidebar for navigation","Clean, structured content area","Responsive layout","Single-line enable via _config.yml","No local Jekyll install needed","Suitable for multi-section documentation"],"slug":"architect","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Almace Scaffolding is a statement theme β€” bold typography, strong visual personality, and an obsessive focus on performance. Pages load in milliseconds thanks to a lean build pipeline that strips out everything unnecessary.\n\nThe Grunt-powered build system gives developers full control over the asset pipeline.\n\n**Who is it for?** Developers and designers who want a high-performance, visually distinctive blog that makes a strong typographic impression.\n","url":"/themes/almace-scaffolding/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Almace Scaffolding Jekyll Theme","description":"A bold, minimal, and blazing fast Jekyll theme with a distinctive typographic style and performance-first architecture.","key_features":["Ultra Fast","Bold Typography","Performance First","Minimal Design"],"card_description":"Bold, minimal, blazing-fast theme with distinctive typographic style.","category":"Blog","card_image":"/assets/images/themes/almace-scaffolding-card.webp","theme_screenshots":["/assets/images/themes/almace-scaffolding-screenshot.webp","/assets/images/themes/almace-scaffolding-screenshot-2.webp","/assets/images/themes/almace-scaffolding-screenshot-3.webp"],"demo_url":"https://sparanoid.com/lab/amsf/","github_url":"https://github.com/sparanoid/almace-scaffolding","author":"GitHub Community","github_author_name":"sparanoid","github_author_url":"https://github.com/sparanoid","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-02-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.21.0","license":"MIT","stars":337,"forks":98,"features":["Bold typographic design","Performance-first architecture","Grunt build system","LESS stylesheets","SVG icon support","Custom post colours","Minimal navigation","Social links","RSS feed","Ultra-fast page loads"],"slug":"almace-scaffolding","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/architect.md","relative_path":"_themes/architect.md","excerpt":"<p>Architect is GitHub’s documentation-oriented official theme. Its fixed sidebar and clearly delineated content area create an organised, easy-to-navigate layout that works well for project READMEs, API docs, and any site with multiple sections.</p>\n\n","previous":{"path":"_themes/almace-scaffolding.md","relative_path":"_themes/almace-scaffolding.md","excerpt":"<p>Almace Scaffolding is a statement theme β€” bold typography, strong visual personality, and an obsessive focus on performance. Pages load in milliseconds thanks to a lean build pipeline that strips out everything unnecessary.</p>\n\n","previous":{"path":"_themes/alembic.md","relative_path":"_themes/alembic.md","id":"/themes/alembic","collection":"themes","url":"/themes/alembic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Alembic Jekyll Theme","description":"A clean, minimal Jekyll theme with great typography and flexible page layouts. Works out of the box as a gem-based theme.","key_features":["Gem-Based Theme","Clean Typography","Flexible Layouts","GitHub Pages"],"card_description":"Clean, minimal gem-based theme with flexible page layouts.","category":"Blog","card_image":"/assets/images/themes/alembic-card.webp","theme_screenshots":["/assets/images/themes/alembic-screenshot.webp","/assets/images/themes/alembic-screenshot-2.webp","/assets/images/themes/alembic-screenshot-3.webp"],"demo_url":"https://alembic.darn.es/","github_url":"https://github.com/daviddarnes/alembic","author":"GitHub Community","github_author_name":"David Darnes","github_author_url":"https://github.com/daviddarnes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-01","popular":false,"trending":false,"bestseller":false,"version":"3.1.0","license":"MIT","stars":2600,"forks":760,"features":["Gem-based installation","Multiple page layouts","Configurable navigation","Syntax highlighting","SEO ready"],"slug":"alembic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/almace-scaffolding","collection":"themes","next":{"path":"_themes/architect.md","relative_path":"_themes/architect.md","id":"/themes/architect","collection":"themes","url":"/themes/architect/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Architect Jekyll Theme","description":"A clean GitHub Pages Jekyll theme with a prominent sidebar and crisp typography. Official GitHub Pages theme, ideal for project documentation.","key_features":["GitHub Pages","Sidebar Nav","Code Blocks","Project Docs"],"card_description":"Clean GitHub Pages theme with prominent sidebar for project docs.","category":"Documentation","card_image":"/assets/images/themes/architect-card.webp","theme_screenshots":["/assets/images/themes/architect-screenshot.webp","/assets/images/themes/architect-screenshot-2.webp","/assets/images/themes/architect-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/architect/","github_url":"https://github.com/pages-themes/architect","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Fixed sidebar for navigation","Clean, structured content area","Responsive layout","Single-line enable via _config.yml","No local Jekyll install needed","Suitable for multi-section documentation"],"slug":"architect","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Almace Scaffolding is a statement theme β€” bold typography, strong visual personality, and an obsessive focus on performance. Pages load in milliseconds thanks to a lean build pipeline that strips out everything unnecessary.\n\nThe Grunt-powered build system gives developers full control over the asset pipeline.\n\n**Who is it for?** Developers and designers who want a high-performance, visually distinctive blog that makes a strong typographic impression.\n","url":"/themes/almace-scaffolding/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Almace Scaffolding Jekyll Theme","description":"A bold, minimal, and blazing fast Jekyll theme with a distinctive typographic style and performance-first architecture.","key_features":["Ultra Fast","Bold Typography","Performance First","Minimal Design"],"card_description":"Bold, minimal, blazing-fast theme with distinctive typographic style.","category":"Blog","card_image":"/assets/images/themes/almace-scaffolding-card.webp","theme_screenshots":["/assets/images/themes/almace-scaffolding-screenshot.webp","/assets/images/themes/almace-scaffolding-screenshot-2.webp","/assets/images/themes/almace-scaffolding-screenshot-3.webp"],"demo_url":"https://sparanoid.com/lab/amsf/","github_url":"https://github.com/sparanoid/almace-scaffolding","author":"GitHub Community","github_author_name":"sparanoid","github_author_url":"https://github.com/sparanoid","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-02-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.21.0","license":"MIT","stars":337,"forks":98,"features":["Bold typographic design","Performance-first architecture","Grunt build system","LESS stylesheets","SVG icon support","Custom post colours","Minimal navigation","Social links","RSS feed","Ultra-fast page loads"],"slug":"almace-scaffolding","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/architect","collection":"themes","next":{"path":"_themes/aura-pro.md","relative_path":"_themes/aura-pro.md","excerpt":"<p>Aura Pro is the premium evolution of the <a href=\"https://satishw.github.io/jekyll-theme-aura/\">Aura Jekyll theme</a> β€” everything in the free version, extended with features that content-focused sites demand.</p>\n\n","previous":{"path":"_themes/architect.md","relative_path":"_themes/architect.md","id":"/themes/architect","collection":"themes","url":"/themes/architect/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Architect Jekyll Theme","description":"A clean GitHub Pages Jekyll theme with a prominent sidebar and crisp typography. Official GitHub Pages theme, ideal for project documentation.","key_features":["GitHub Pages","Sidebar Nav","Code Blocks","Project Docs"],"card_description":"Clean GitHub Pages theme with prominent sidebar for project docs.","category":"Documentation","card_image":"/assets/images/themes/architect-card.webp","theme_screenshots":["/assets/images/themes/architect-screenshot.webp","/assets/images/themes/architect-screenshot-2.webp","/assets/images/themes/architect-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/architect/","github_url":"https://github.com/pages-themes/architect","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Fixed sidebar for navigation","Clean, structured content area","Responsive layout","Single-line enable via _config.yml","No local Jekyll install needed","Suitable for multi-section documentation"],"slug":"architect","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/aura-pro","collection":"themes","next":{"path":"_themes/aura.md","relative_path":"_themes/aura.md","id":"/themes/aura","collection":"themes","url":"/themes/aura/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Jekyll Theme","description":"Versatile Jekyll theme designed for content creators, writers, and developers. Ships with blog, projects, testimonials, and portfolio sections β€” fully compatible with GitHub Pages.","key_features":["GitHub Pages","Blog & Projects","Testimonials","Contact Form"],"card_description":"Versatile Jekyll theme for creators and developers β€” blog, projects, and portfolio ready.","category":"Personal","card_image":"/assets/images/themes/aura-card.webp","theme_screenshots":["/assets/images/themes/aura-screenshot.webp","/assets/images/themes/aura-screenshot-2.webp","/assets/images/themes/aura-screenshot-3.webp"],"demo_url":"https://satishw.github.io/jekyll-theme-aura/","github_url":"https://github.com/satishw/jekyll-theme-aura","author":"Satish W","github_author_name":"Satish W","github_author_url":"https://github.com/satishw","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-02-10","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"MIT","stars":0,"forks":0,"features":["Fully compatible with GitHub Pages β€” no custom plugins required","Blog section with tag pages and code highlighting","Projects section to showcase your work","Testimonials section for social proof","Contact form via Formspree (no backend needed)","MailChimp newsletter integration","Disqus comments support","Image gallery with lazy loading","Embedded YouTube video support","Social sharing buttons on posts","Google Analytics integration","Scroll-to-top button and responsive mobile layout"],"slug":"aura","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Aura Pro is the premium evolution of the [Aura Jekyll theme](https://satishw.github.io/jekyll-theme-aura/) β€” everything in the free version, extended with features that content-focused sites demand.\n\nThe headline addition is two distinct blog post layout options, letting you vary the presentation of long-form content, tutorials, and short-form posts without theme customisation. Each post also shows a read-time estimate, which has become standard on quality editorial sites. The testimonials section now supports star ratings, making social proof more visually compelling for freelancers and small businesses.\n\nNewsletter support is expanded with [Sendy.co](https://sendy.co/) β€” a self-hosted alternative to MailChimp that keeps your subscriber list yours. Both Sendy and MailChimp are supported simultaneously.\n\n**Who is it for?** Writers, developers, and freelancers who started with Aura and need the next level β€” or anyone building a personal site that doubles as a professional presence from day one.\n\n**Upcoming features** include price boxes, additional home page layouts, animated sections, and a dark theme variant. All future updates are included free with your purchase.\n","url":"/themes/aura-pro/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Pro Jekyll Theme","rating":5.0,"rating_count":27,"description":"The premium upgrade to the Aura Jekyll theme. Includes all Aura features plus advanced blog layouts, star-rated testimonials, Sendy newsletter support, and read-time indicators.","card_description":"Premium upgrade to Aura β€” advanced layouts, star testimonials, and read time.","price":9,"category":"Personal","card_image":"/assets/images/themes/aura-pro-card.webp","theme_screenshots":["/assets/images/themes/aura-pro-screenshot.webp","/assets/images/themes/aura-pro-screenshot-2.webp","/assets/images/themes/aura-pro-screenshot-3.webp"],"key_features":["Two Blog Layouts","Star Testimonials","Read Time","Sendy Newsletter"],"demo_url":"https://satishw.github.io/jekyll-theme-aura-pro/","buy_url":"https://satishw.github.io/jekyll-theme-aura-pro/features/","author":"Satish W","author_url":"https://satishw.github.io/jekyll-theme-aura-pro/","github_author_name":"Satish W","support":"lifetime","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-06-26","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"Commercial","discount_label":"launch_offer","discount_original_price":29,"features":["All features of the free Aura theme included","Two blog post layout options to suit different content styles","Read time indicator on every blog post","Testimonials section with star ratings","Sendy.co newsletter integration (in addition to MailChimp)","Logo section for brand or personal mark","Fully compatible with GitHub Pages β€” no custom plugins required","Contact form via Formspree, comments via Disqus","Image gallery with lazy loading and YouTube embed support","Google Analytics and social sharing built in","Free lifetime updates and support"],"slug":"aura-pro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Architect is GitHub's documentation-oriented official theme. Its fixed sidebar and clearly delineated content area create an organised, easy-to-navigate layout that works well for project READMEs, API docs, and any site with multiple sections.\n\nThe theme's structured visual hierarchy gives your content immediate credibility, and its lightweight implementation means fast page loads even for large documentation sites.\n\n**Who is it for?** Developers building open-source project documentation or any structured informational site that benefits from persistent sidebar navigation.\n","url":"/themes/architect/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Architect Jekyll Theme","description":"A clean GitHub Pages Jekyll theme with a prominent sidebar and crisp typography. Official GitHub Pages theme, ideal for project documentation.","key_features":["GitHub Pages","Sidebar Nav","Code Blocks","Project Docs"],"card_description":"Clean GitHub Pages theme with prominent sidebar for project docs.","category":"Documentation","card_image":"/assets/images/themes/architect-card.webp","theme_screenshots":["/assets/images/themes/architect-screenshot.webp","/assets/images/themes/architect-screenshot-2.webp","/assets/images/themes/architect-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/architect/","github_url":"https://github.com/pages-themes/architect","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Fixed sidebar for navigation","Clean, structured content area","Responsive layout","Single-line enable via _config.yml","No local Jekyll install needed","Suitable for multi-section documentation"],"slug":"architect","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/aura-pro.md","relative_path":"_themes/aura-pro.md","excerpt":"<p>Aura Pro is the premium evolution of the <a href=\"https://satishw.github.io/jekyll-theme-aura/\">Aura Jekyll theme</a> β€” everything in the free version, extended with features that content-focused sites demand.</p>\n\n","previous":{"path":"_themes/architect.md","relative_path":"_themes/architect.md","excerpt":"<p>Architect is GitHub’s documentation-oriented official theme. Its fixed sidebar and clearly delineated content area create an organised, easy-to-navigate layout that works well for project READMEs, API docs, and any site with multiple sections.</p>\n\n","previous":{"path":"_themes/almace-scaffolding.md","relative_path":"_themes/almace-scaffolding.md","id":"/themes/almace-scaffolding","collection":"themes","url":"/themes/almace-scaffolding/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Almace Scaffolding Jekyll Theme","description":"A bold, minimal, and blazing fast Jekyll theme with a distinctive typographic style and performance-first architecture.","key_features":["Ultra Fast","Bold Typography","Performance First","Minimal Design"],"card_description":"Bold, minimal, blazing-fast theme with distinctive typographic style.","category":"Blog","card_image":"/assets/images/themes/almace-scaffolding-card.webp","theme_screenshots":["/assets/images/themes/almace-scaffolding-screenshot.webp","/assets/images/themes/almace-scaffolding-screenshot-2.webp","/assets/images/themes/almace-scaffolding-screenshot-3.webp"],"demo_url":"https://sparanoid.com/lab/amsf/","github_url":"https://github.com/sparanoid/almace-scaffolding","author":"GitHub Community","github_author_name":"sparanoid","github_author_url":"https://github.com/sparanoid","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-02-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.21.0","license":"MIT","stars":337,"forks":98,"features":["Bold typographic design","Performance-first architecture","Grunt build system","LESS stylesheets","SVG icon support","Custom post colours","Minimal navigation","Social links","RSS feed","Ultra-fast page loads"],"slug":"almace-scaffolding","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/architect","collection":"themes","next":{"path":"_themes/aura-pro.md","relative_path":"_themes/aura-pro.md","id":"/themes/aura-pro","collection":"themes","url":"/themes/aura-pro/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Pro Jekyll Theme","rating":5.0,"rating_count":27,"description":"The premium upgrade to the Aura Jekyll theme. Includes all Aura features plus advanced blog layouts, star-rated testimonials, Sendy newsletter support, and read-time indicators.","card_description":"Premium upgrade to Aura β€” advanced layouts, star testimonials, and read time.","price":9,"category":"Personal","card_image":"/assets/images/themes/aura-pro-card.webp","theme_screenshots":["/assets/images/themes/aura-pro-screenshot.webp","/assets/images/themes/aura-pro-screenshot-2.webp","/assets/images/themes/aura-pro-screenshot-3.webp"],"key_features":["Two Blog Layouts","Star Testimonials","Read Time","Sendy Newsletter"],"demo_url":"https://satishw.github.io/jekyll-theme-aura-pro/","buy_url":"https://satishw.github.io/jekyll-theme-aura-pro/features/","author":"Satish W","author_url":"https://satishw.github.io/jekyll-theme-aura-pro/","github_author_name":"Satish W","support":"lifetime","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-06-26","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"Commercial","discount_label":"launch_offer","discount_original_price":29,"features":["All features of the free Aura theme included","Two blog post layout options to suit different content styles","Read time indicator on every blog post","Testimonials section with star ratings","Sendy.co newsletter integration (in addition to MailChimp)","Logo section for brand or personal mark","Fully compatible with GitHub Pages β€” no custom plugins required","Contact form via Formspree, comments via Disqus","Image gallery with lazy loading and YouTube embed support","Google Analytics and social sharing built in","Free lifetime updates and support"],"slug":"aura-pro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Architect is GitHub's documentation-oriented official theme. Its fixed sidebar and clearly delineated content area create an organised, easy-to-navigate layout that works well for project READMEs, API docs, and any site with multiple sections.\n\nThe theme's structured visual hierarchy gives your content immediate credibility, and its lightweight implementation means fast page loads even for large documentation sites.\n\n**Who is it for?** Developers building open-source project documentation or any structured informational site that benefits from persistent sidebar navigation.\n","url":"/themes/architect/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Architect Jekyll Theme","description":"A clean GitHub Pages Jekyll theme with a prominent sidebar and crisp typography. Official GitHub Pages theme, ideal for project documentation.","key_features":["GitHub Pages","Sidebar Nav","Code Blocks","Project Docs"],"card_description":"Clean GitHub Pages theme with prominent sidebar for project docs.","category":"Documentation","card_image":"/assets/images/themes/architect-card.webp","theme_screenshots":["/assets/images/themes/architect-screenshot.webp","/assets/images/themes/architect-screenshot-2.webp","/assets/images/themes/architect-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/architect/","github_url":"https://github.com/pages-themes/architect","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Fixed sidebar for navigation","Clean, structured content area","Responsive layout","Single-line enable via _config.yml","No local Jekyll install needed","Suitable for multi-section documentation"],"slug":"architect","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/aura-pro","collection":"themes","next":{"path":"_themes/aura.md","relative_path":"_themes/aura.md","excerpt":"<p>Aura is a versatile Jekyll theme built for content creators, writers, and developers who need more than just a blog. It ships with dedicated sections for blog posts, projects, and testimonials β€” everything you need to build a personal site that represents you fully.</p>\n\n","previous":{"path":"_themes/aura-pro.md","relative_path":"_themes/aura-pro.md","id":"/themes/aura-pro","collection":"themes","url":"/themes/aura-pro/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Pro Jekyll Theme","rating":5.0,"rating_count":27,"description":"The premium upgrade to the Aura Jekyll theme. Includes all Aura features plus advanced blog layouts, star-rated testimonials, Sendy newsletter support, and read-time indicators.","card_description":"Premium upgrade to Aura β€” advanced layouts, star testimonials, and read time.","price":9,"category":"Personal","card_image":"/assets/images/themes/aura-pro-card.webp","theme_screenshots":["/assets/images/themes/aura-pro-screenshot.webp","/assets/images/themes/aura-pro-screenshot-2.webp","/assets/images/themes/aura-pro-screenshot-3.webp"],"key_features":["Two Blog Layouts","Star Testimonials","Read Time","Sendy Newsletter"],"demo_url":"https://satishw.github.io/jekyll-theme-aura-pro/","buy_url":"https://satishw.github.io/jekyll-theme-aura-pro/features/","author":"Satish W","author_url":"https://satishw.github.io/jekyll-theme-aura-pro/","github_author_name":"Satish W","support":"lifetime","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-06-26","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"Commercial","discount_label":"launch_offer","discount_original_price":29,"features":["All features of the free Aura theme included","Two blog post layout options to suit different content styles","Read time indicator on every blog post","Testimonials section with star ratings","Sendy.co newsletter integration (in addition to MailChimp)","Logo section for brand or personal mark","Fully compatible with GitHub Pages β€” no custom plugins required","Contact form via Formspree, comments via Disqus","Image gallery with lazy loading and YouTube embed support","Google Analytics and social sharing built in","Free lifetime updates and support"],"slug":"aura-pro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/aura","collection":"themes","next":{"path":"_themes/basically-basic.md","relative_path":"_themes/basically-basic.md","id":"/themes/basically-basic","collection":"themes","url":"/themes/basically-basic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Basically Basic Jekyll Theme","description":"Your new Jekyll default theme β€” a modern, polished substitute for Minima. Six customisable colour skins, resume layout, off-canvas menu, and everything Minima should have been.","key_features":["6 Color Skins","Resume Layout","Off-Canvas Menu","GitHub Pages"],"card_description":"Modern Minima replacement with six colour skins and a resume layout.","category":"Blog","card_image":"/assets/images/themes/basically-basic-card.webp","theme_screenshots":["/assets/images/themes/basically-basic-screenshot.webp","/assets/images/themes/basically-basic-screenshot-2.webp","/assets/images/themes/basically-basic-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/jekyll-theme-basically-basic/","github_url":"https://github.com/mmistakes/jekyll-theme-basically-basic","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.8.0","license":"MIT","stars":800,"forks":500,"features":["6 built-in colour skins","Off-canvas slide-out menu","Resume/CV page layout","Responsive design","Syntax highlighting","Google Analytics","Disqus comments","Read time estimates","Social sharing","GitHub Pages compatible"],"slug":"basically-basic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Aura is a versatile Jekyll theme built for content creators, writers, and developers who need more than just a blog. It ships with dedicated sections for blog posts, projects, and testimonials β€” everything you need to build a personal site that represents you fully.\n\nThe theme is a fork of [CloudCannon's Vonge template](https://github.com/CloudCannon/vonge-jekyll-bookshop-template), extended with GitHub Pages compatibility and a richer feature set. Blog posts support code highlighting, image galleries, embedded YouTube videos, and a full table of contents β€” making it equally at home for technical writers and creative bloggers.\n\n**Who is it for?** Developers and creators who want a single theme that handles a personal site, portfolio, and blog without switching between multiple themes. If you want to show off projects, collect testimonials, and write posts β€” all in one clean package β€” Aura is built for exactly that.\n\n**AuraPro** β€” a premium version with additional layouts and components β€” is also available at [jekyll-theme-aura-pro](https://satishw.github.io/jekyll-theme-aura-pro/features).\n","url":"/themes/aura/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Jekyll Theme","description":"Versatile Jekyll theme designed for content creators, writers, and developers. Ships with blog, projects, testimonials, and portfolio sections β€” fully compatible with GitHub Pages.","key_features":["GitHub Pages","Blog & Projects","Testimonials","Contact Form"],"card_description":"Versatile Jekyll theme for creators and developers β€” blog, projects, and portfolio ready.","category":"Personal","card_image":"/assets/images/themes/aura-card.webp","theme_screenshots":["/assets/images/themes/aura-screenshot.webp","/assets/images/themes/aura-screenshot-2.webp","/assets/images/themes/aura-screenshot-3.webp"],"demo_url":"https://satishw.github.io/jekyll-theme-aura/","github_url":"https://github.com/satishw/jekyll-theme-aura","author":"Satish W","github_author_name":"Satish W","github_author_url":"https://github.com/satishw","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-02-10","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"MIT","stars":0,"forks":0,"features":["Fully compatible with GitHub Pages β€” no custom plugins required","Blog section with tag pages and code highlighting","Projects section to showcase your work","Testimonials section for social proof","Contact form via Formspree (no backend needed)","MailChimp newsletter integration","Disqus comments support","Image gallery with lazy loading","Embedded YouTube video support","Social sharing buttons on posts","Google Analytics integration","Scroll-to-top button and responsive mobile layout"],"slug":"aura","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Aura Pro is the premium evolution of the [Aura Jekyll theme](https://satishw.github.io/jekyll-theme-aura/) β€” everything in the free version, extended with features that content-focused sites demand.\n\nThe headline addition is two distinct blog post layout options, letting you vary the presentation of long-form content, tutorials, and short-form posts without theme customisation. Each post also shows a read-time estimate, which has become standard on quality editorial sites. The testimonials section now supports star ratings, making social proof more visually compelling for freelancers and small businesses.\n\nNewsletter support is expanded with [Sendy.co](https://sendy.co/) β€” a self-hosted alternative to MailChimp that keeps your subscriber list yours. Both Sendy and MailChimp are supported simultaneously.\n\n**Who is it for?** Writers, developers, and freelancers who started with Aura and need the next level β€” or anyone building a personal site that doubles as a professional presence from day one.\n\n**Upcoming features** include price boxes, additional home page layouts, animated sections, and a dark theme variant. All future updates are included free with your purchase.\n","url":"/themes/aura-pro/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Pro Jekyll Theme","rating":5.0,"rating_count":27,"description":"The premium upgrade to the Aura Jekyll theme. Includes all Aura features plus advanced blog layouts, star-rated testimonials, Sendy newsletter support, and read-time indicators.","card_description":"Premium upgrade to Aura β€” advanced layouts, star testimonials, and read time.","price":9,"category":"Personal","card_image":"/assets/images/themes/aura-pro-card.webp","theme_screenshots":["/assets/images/themes/aura-pro-screenshot.webp","/assets/images/themes/aura-pro-screenshot-2.webp","/assets/images/themes/aura-pro-screenshot-3.webp"],"key_features":["Two Blog Layouts","Star Testimonials","Read Time","Sendy Newsletter"],"demo_url":"https://satishw.github.io/jekyll-theme-aura-pro/","buy_url":"https://satishw.github.io/jekyll-theme-aura-pro/features/","author":"Satish W","author_url":"https://satishw.github.io/jekyll-theme-aura-pro/","github_author_name":"Satish W","support":"lifetime","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-06-26","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"Commercial","discount_label":"launch_offer","discount_original_price":29,"features":["All features of the free Aura theme included","Two blog post layout options to suit different content styles","Read time indicator on every blog post","Testimonials section with star ratings","Sendy.co newsletter integration (in addition to MailChimp)","Logo section for brand or personal mark","Fully compatible with GitHub Pages β€” no custom plugins required","Contact form via Formspree, comments via Disqus","Image gallery with lazy loading and YouTube embed support","Google Analytics and social sharing built in","Free lifetime updates and support"],"slug":"aura-pro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/aura.md","relative_path":"_themes/aura.md","excerpt":"<p>Aura is a versatile Jekyll theme built for content creators, writers, and developers who need more than just a blog. It ships with dedicated sections for blog posts, projects, and testimonials β€” everything you need to build a personal site that represents you fully.</p>\n\n","previous":{"path":"_themes/aura-pro.md","relative_path":"_themes/aura-pro.md","excerpt":"<p>Aura Pro is the premium evolution of the <a href=\"https://satishw.github.io/jekyll-theme-aura/\">Aura Jekyll theme</a> β€” everything in the free version, extended with features that content-focused sites demand.</p>\n\n","previous":{"path":"_themes/architect.md","relative_path":"_themes/architect.md","id":"/themes/architect","collection":"themes","url":"/themes/architect/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Architect Jekyll Theme","description":"A clean GitHub Pages Jekyll theme with a prominent sidebar and crisp typography. Official GitHub Pages theme, ideal for project documentation.","key_features":["GitHub Pages","Sidebar Nav","Code Blocks","Project Docs"],"card_description":"Clean GitHub Pages theme with prominent sidebar for project docs.","category":"Documentation","card_image":"/assets/images/themes/architect-card.webp","theme_screenshots":["/assets/images/themes/architect-screenshot.webp","/assets/images/themes/architect-screenshot-2.webp","/assets/images/themes/architect-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/architect/","github_url":"https://github.com/pages-themes/architect","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Fixed sidebar for navigation","Clean, structured content area","Responsive layout","Single-line enable via _config.yml","No local Jekyll install needed","Suitable for multi-section documentation"],"slug":"architect","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/aura-pro","collection":"themes","next":{"path":"_themes/aura.md","relative_path":"_themes/aura.md","id":"/themes/aura","collection":"themes","url":"/themes/aura/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Jekyll Theme","description":"Versatile Jekyll theme designed for content creators, writers, and developers. Ships with blog, projects, testimonials, and portfolio sections β€” fully compatible with GitHub Pages.","key_features":["GitHub Pages","Blog & Projects","Testimonials","Contact Form"],"card_description":"Versatile Jekyll theme for creators and developers β€” blog, projects, and portfolio ready.","category":"Personal","card_image":"/assets/images/themes/aura-card.webp","theme_screenshots":["/assets/images/themes/aura-screenshot.webp","/assets/images/themes/aura-screenshot-2.webp","/assets/images/themes/aura-screenshot-3.webp"],"demo_url":"https://satishw.github.io/jekyll-theme-aura/","github_url":"https://github.com/satishw/jekyll-theme-aura","author":"Satish W","github_author_name":"Satish W","github_author_url":"https://github.com/satishw","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-02-10","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"MIT","stars":0,"forks":0,"features":["Fully compatible with GitHub Pages β€” no custom plugins required","Blog section with tag pages and code highlighting","Projects section to showcase your work","Testimonials section for social proof","Contact form via Formspree (no backend needed)","MailChimp newsletter integration","Disqus comments support","Image gallery with lazy loading","Embedded YouTube video support","Social sharing buttons on posts","Google Analytics integration","Scroll-to-top button and responsive mobile layout"],"slug":"aura","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Aura Pro is the premium evolution of the [Aura Jekyll theme](https://satishw.github.io/jekyll-theme-aura/) β€” everything in the free version, extended with features that content-focused sites demand.\n\nThe headline addition is two distinct blog post layout options, letting you vary the presentation of long-form content, tutorials, and short-form posts without theme customisation. Each post also shows a read-time estimate, which has become standard on quality editorial sites. The testimonials section now supports star ratings, making social proof more visually compelling for freelancers and small businesses.\n\nNewsletter support is expanded with [Sendy.co](https://sendy.co/) β€” a self-hosted alternative to MailChimp that keeps your subscriber list yours. Both Sendy and MailChimp are supported simultaneously.\n\n**Who is it for?** Writers, developers, and freelancers who started with Aura and need the next level β€” or anyone building a personal site that doubles as a professional presence from day one.\n\n**Upcoming features** include price boxes, additional home page layouts, animated sections, and a dark theme variant. All future updates are included free with your purchase.\n","url":"/themes/aura-pro/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Pro Jekyll Theme","rating":5.0,"rating_count":27,"description":"The premium upgrade to the Aura Jekyll theme. Includes all Aura features plus advanced blog layouts, star-rated testimonials, Sendy newsletter support, and read-time indicators.","card_description":"Premium upgrade to Aura β€” advanced layouts, star testimonials, and read time.","price":9,"category":"Personal","card_image":"/assets/images/themes/aura-pro-card.webp","theme_screenshots":["/assets/images/themes/aura-pro-screenshot.webp","/assets/images/themes/aura-pro-screenshot-2.webp","/assets/images/themes/aura-pro-screenshot-3.webp"],"key_features":["Two Blog Layouts","Star Testimonials","Read Time","Sendy Newsletter"],"demo_url":"https://satishw.github.io/jekyll-theme-aura-pro/","buy_url":"https://satishw.github.io/jekyll-theme-aura-pro/features/","author":"Satish W","author_url":"https://satishw.github.io/jekyll-theme-aura-pro/","github_author_name":"Satish W","support":"lifetime","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-06-26","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"Commercial","discount_label":"launch_offer","discount_original_price":29,"features":["All features of the free Aura theme included","Two blog post layout options to suit different content styles","Read time indicator on every blog post","Testimonials section with star ratings","Sendy.co newsletter integration (in addition to MailChimp)","Logo section for brand or personal mark","Fully compatible with GitHub Pages β€” no custom plugins required","Contact form via Formspree, comments via Disqus","Image gallery with lazy loading and YouTube embed support","Google Analytics and social sharing built in","Free lifetime updates and support"],"slug":"aura-pro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/aura","collection":"themes","next":{"path":"_themes/basically-basic.md","relative_path":"_themes/basically-basic.md","excerpt":"<p>Basically Basic is Michael Rose’s answer to the question: what if Minima was actually good? It keeps the simplicity and GitHub Pages compatibility of Jekyll’s default theme, but adds six colour skins, an off-canvas navigation menu, a dedicated resume layout, and the overall polish you’d expect from the author of Minimal Mistakes.</p>\n\n","previous":{"path":"_themes/aura.md","relative_path":"_themes/aura.md","id":"/themes/aura","collection":"themes","url":"/themes/aura/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Jekyll Theme","description":"Versatile Jekyll theme designed for content creators, writers, and developers. Ships with blog, projects, testimonials, and portfolio sections β€” fully compatible with GitHub Pages.","key_features":["GitHub Pages","Blog & Projects","Testimonials","Contact Form"],"card_description":"Versatile Jekyll theme for creators and developers β€” blog, projects, and portfolio ready.","category":"Personal","card_image":"/assets/images/themes/aura-card.webp","theme_screenshots":["/assets/images/themes/aura-screenshot.webp","/assets/images/themes/aura-screenshot-2.webp","/assets/images/themes/aura-screenshot-3.webp"],"demo_url":"https://satishw.github.io/jekyll-theme-aura/","github_url":"https://github.com/satishw/jekyll-theme-aura","author":"Satish W","github_author_name":"Satish W","github_author_url":"https://github.com/satishw","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-02-10","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"MIT","stars":0,"forks":0,"features":["Fully compatible with GitHub Pages β€” no custom plugins required","Blog section with tag pages and code highlighting","Projects section to showcase your work","Testimonials section for social proof","Contact form via Formspree (no backend needed)","MailChimp newsletter integration","Disqus comments support","Image gallery with lazy loading","Embedded YouTube video support","Social sharing buttons on posts","Google Analytics integration","Scroll-to-top button and responsive mobile layout"],"slug":"aura","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/basically-basic","collection":"themes","next":{"path":"_themes/beautiful-jekyll.md","relative_path":"_themes/beautiful-jekyll.md","id":"/themes/beautiful-jekyll","collection":"themes","url":"/themes/beautiful-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Beautiful Jekyll","description":"One of the most popular Jekyll blog themes. Easy to set up, highly customisable, and works perfectly on GitHub Pages.","key_features":["Quick Setup","GitHub Pages","Social Links","Highly Customisable"],"card_description":"Highly popular blog theme β€” easy setup, works on GitHub Pages.","category":"Blog","card_image":"/assets/images/themes/beautiful-jekyll-card.webp","theme_screenshots":["/assets/images/themes/beautiful-jekyll-screenshot.webp","/assets/images/themes/beautiful-jekyll-screenshot-2.webp","/assets/images/themes/beautiful-jekyll-screenshot-3.webp"],"demo_url":"https://beautifuljekyll.com/","github_url":"https://github.com/daattali/beautiful-jekyll","author":"GitHub Community","github_author_name":"Dean Attali","github_author_url":"https://github.com/daattali","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-04-01","added_at":"2026-01-20","popular":true,"trending":false,"bestseller":false,"version":"6.0.1","license":"MIT","stars":6200,"forks":18900,"features":["Multiple colour schemes","Disqus comments","Google Analytics","Social sharing","Image thumbnails on posts","Footer links"],"slug":"beautiful-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Basically Basic is Michael Rose's answer to the question: what if Minima was actually good? It keeps the simplicity and GitHub Pages compatibility of Jekyll's default theme, but adds six colour skins, an off-canvas navigation menu, a dedicated resume layout, and the overall polish you'd expect from the author of Minimal Mistakes.\n\nIt's the theme to recommend when someone asks for something simple but not boring, and it works straight out of the box with GitHub Pages.\n\n**Who is it for?** Developers and writers who want a step up from Minima without jumping into the full complexity of Minimal Mistakes β€” a clean, modern blog with useful extras and zero setup friction.\n","url":"/themes/basically-basic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Basically Basic Jekyll Theme","description":"Your new Jekyll default theme β€” a modern, polished substitute for Minima. Six customisable colour skins, resume layout, off-canvas menu, and everything Minima should have been.","key_features":["6 Color Skins","Resume Layout","Off-Canvas Menu","GitHub Pages"],"card_description":"Modern Minima replacement with six colour skins and a resume layout.","category":"Blog","card_image":"/assets/images/themes/basically-basic-card.webp","theme_screenshots":["/assets/images/themes/basically-basic-screenshot.webp","/assets/images/themes/basically-basic-screenshot-2.webp","/assets/images/themes/basically-basic-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/jekyll-theme-basically-basic/","github_url":"https://github.com/mmistakes/jekyll-theme-basically-basic","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.8.0","license":"MIT","stars":800,"forks":500,"features":["6 built-in colour skins","Off-canvas slide-out menu","Resume/CV page layout","Responsive design","Syntax highlighting","Google Analytics","Disqus comments","Read time estimates","Social sharing","GitHub Pages compatible"],"slug":"basically-basic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Aura is a versatile Jekyll theme built for content creators, writers, and developers who need more than just a blog. It ships with dedicated sections for blog posts, projects, and testimonials β€” everything you need to build a personal site that represents you fully.\n\nThe theme is a fork of [CloudCannon's Vonge template](https://github.com/CloudCannon/vonge-jekyll-bookshop-template), extended with GitHub Pages compatibility and a richer feature set. Blog posts support code highlighting, image galleries, embedded YouTube videos, and a full table of contents β€” making it equally at home for technical writers and creative bloggers.\n\n**Who is it for?** Developers and creators who want a single theme that handles a personal site, portfolio, and blog without switching between multiple themes. If you want to show off projects, collect testimonials, and write posts β€” all in one clean package β€” Aura is built for exactly that.\n\n**AuraPro** β€” a premium version with additional layouts and components β€” is also available at [jekyll-theme-aura-pro](https://satishw.github.io/jekyll-theme-aura-pro/features).\n","url":"/themes/aura/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Jekyll Theme","description":"Versatile Jekyll theme designed for content creators, writers, and developers. Ships with blog, projects, testimonials, and portfolio sections β€” fully compatible with GitHub Pages.","key_features":["GitHub Pages","Blog & Projects","Testimonials","Contact Form"],"card_description":"Versatile Jekyll theme for creators and developers β€” blog, projects, and portfolio ready.","category":"Personal","card_image":"/assets/images/themes/aura-card.webp","theme_screenshots":["/assets/images/themes/aura-screenshot.webp","/assets/images/themes/aura-screenshot-2.webp","/assets/images/themes/aura-screenshot-3.webp"],"demo_url":"https://satishw.github.io/jekyll-theme-aura/","github_url":"https://github.com/satishw/jekyll-theme-aura","author":"Satish W","github_author_name":"Satish W","github_author_url":"https://github.com/satishw","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-02-10","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"MIT","stars":0,"forks":0,"features":["Fully compatible with GitHub Pages β€” no custom plugins required","Blog section with tag pages and code highlighting","Projects section to showcase your work","Testimonials section for social proof","Contact form via Formspree (no backend needed)","MailChimp newsletter integration","Disqus comments support","Image gallery with lazy loading","Embedded YouTube video support","Social sharing buttons on posts","Google Analytics integration","Scroll-to-top button and responsive mobile layout"],"slug":"aura","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/basically-basic.md","relative_path":"_themes/basically-basic.md","excerpt":"<p>Basically Basic is Michael Rose’s answer to the question: what if Minima was actually good? It keeps the simplicity and GitHub Pages compatibility of Jekyll’s default theme, but adds six colour skins, an off-canvas navigation menu, a dedicated resume layout, and the overall polish you’d expect from the author of Minimal Mistakes.</p>\n\n","previous":{"path":"_themes/aura.md","relative_path":"_themes/aura.md","excerpt":"<p>Aura is a versatile Jekyll theme built for content creators, writers, and developers who need more than just a blog. It ships with dedicated sections for blog posts, projects, and testimonials β€” everything you need to build a personal site that represents you fully.</p>\n\n","previous":{"path":"_themes/aura-pro.md","relative_path":"_themes/aura-pro.md","id":"/themes/aura-pro","collection":"themes","url":"/themes/aura-pro/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Pro Jekyll Theme","rating":5.0,"rating_count":27,"description":"The premium upgrade to the Aura Jekyll theme. Includes all Aura features plus advanced blog layouts, star-rated testimonials, Sendy newsletter support, and read-time indicators.","card_description":"Premium upgrade to Aura β€” advanced layouts, star testimonials, and read time.","price":9,"category":"Personal","card_image":"/assets/images/themes/aura-pro-card.webp","theme_screenshots":["/assets/images/themes/aura-pro-screenshot.webp","/assets/images/themes/aura-pro-screenshot-2.webp","/assets/images/themes/aura-pro-screenshot-3.webp"],"key_features":["Two Blog Layouts","Star Testimonials","Read Time","Sendy Newsletter"],"demo_url":"https://satishw.github.io/jekyll-theme-aura-pro/","buy_url":"https://satishw.github.io/jekyll-theme-aura-pro/features/","author":"Satish W","author_url":"https://satishw.github.io/jekyll-theme-aura-pro/","github_author_name":"Satish W","support":"lifetime","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-06-26","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"Commercial","discount_label":"launch_offer","discount_original_price":29,"features":["All features of the free Aura theme included","Two blog post layout options to suit different content styles","Read time indicator on every blog post","Testimonials section with star ratings","Sendy.co newsletter integration (in addition to MailChimp)","Logo section for brand or personal mark","Fully compatible with GitHub Pages β€” no custom plugins required","Contact form via Formspree, comments via Disqus","Image gallery with lazy loading and YouTube embed support","Google Analytics and social sharing built in","Free lifetime updates and support"],"slug":"aura-pro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/aura","collection":"themes","next":{"path":"_themes/basically-basic.md","relative_path":"_themes/basically-basic.md","id":"/themes/basically-basic","collection":"themes","url":"/themes/basically-basic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Basically Basic Jekyll Theme","description":"Your new Jekyll default theme β€” a modern, polished substitute for Minima. Six customisable colour skins, resume layout, off-canvas menu, and everything Minima should have been.","key_features":["6 Color Skins","Resume Layout","Off-Canvas Menu","GitHub Pages"],"card_description":"Modern Minima replacement with six colour skins and a resume layout.","category":"Blog","card_image":"/assets/images/themes/basically-basic-card.webp","theme_screenshots":["/assets/images/themes/basically-basic-screenshot.webp","/assets/images/themes/basically-basic-screenshot-2.webp","/assets/images/themes/basically-basic-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/jekyll-theme-basically-basic/","github_url":"https://github.com/mmistakes/jekyll-theme-basically-basic","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.8.0","license":"MIT","stars":800,"forks":500,"features":["6 built-in colour skins","Off-canvas slide-out menu","Resume/CV page layout","Responsive design","Syntax highlighting","Google Analytics","Disqus comments","Read time estimates","Social sharing","GitHub Pages compatible"],"slug":"basically-basic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Aura is a versatile Jekyll theme built for content creators, writers, and developers who need more than just a blog. It ships with dedicated sections for blog posts, projects, and testimonials β€” everything you need to build a personal site that represents you fully.\n\nThe theme is a fork of [CloudCannon's Vonge template](https://github.com/CloudCannon/vonge-jekyll-bookshop-template), extended with GitHub Pages compatibility and a richer feature set. Blog posts support code highlighting, image galleries, embedded YouTube videos, and a full table of contents β€” making it equally at home for technical writers and creative bloggers.\n\n**Who is it for?** Developers and creators who want a single theme that handles a personal site, portfolio, and blog without switching between multiple themes. If you want to show off projects, collect testimonials, and write posts β€” all in one clean package β€” Aura is built for exactly that.\n\n**AuraPro** β€” a premium version with additional layouts and components β€” is also available at [jekyll-theme-aura-pro](https://satishw.github.io/jekyll-theme-aura-pro/features).\n","url":"/themes/aura/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Jekyll Theme","description":"Versatile Jekyll theme designed for content creators, writers, and developers. Ships with blog, projects, testimonials, and portfolio sections β€” fully compatible with GitHub Pages.","key_features":["GitHub Pages","Blog & Projects","Testimonials","Contact Form"],"card_description":"Versatile Jekyll theme for creators and developers β€” blog, projects, and portfolio ready.","category":"Personal","card_image":"/assets/images/themes/aura-card.webp","theme_screenshots":["/assets/images/themes/aura-screenshot.webp","/assets/images/themes/aura-screenshot-2.webp","/assets/images/themes/aura-screenshot-3.webp"],"demo_url":"https://satishw.github.io/jekyll-theme-aura/","github_url":"https://github.com/satishw/jekyll-theme-aura","author":"Satish W","github_author_name":"Satish W","github_author_url":"https://github.com/satishw","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-02-10","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"MIT","stars":0,"forks":0,"features":["Fully compatible with GitHub Pages β€” no custom plugins required","Blog section with tag pages and code highlighting","Projects section to showcase your work","Testimonials section for social proof","Contact form via Formspree (no backend needed)","MailChimp newsletter integration","Disqus comments support","Image gallery with lazy loading","Embedded YouTube video support","Social sharing buttons on posts","Google Analytics integration","Scroll-to-top button and responsive mobile layout"],"slug":"aura","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/basically-basic","collection":"themes","next":{"path":"_themes/beautiful-jekyll.md","relative_path":"_themes/beautiful-jekyll.md","excerpt":"<p>Beautiful Jekyll is one of the most widely-used Jekyll themes on GitHub. Its combination of ease of setup, clean design, and deep customisability has made it the go-to choice for thousands of developers building personal blogs and project sites.</p>\n\n","previous":{"path":"_themes/basically-basic.md","relative_path":"_themes/basically-basic.md","id":"/themes/basically-basic","collection":"themes","url":"/themes/basically-basic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Basically Basic Jekyll Theme","description":"Your new Jekyll default theme β€” a modern, polished substitute for Minima. Six customisable colour skins, resume layout, off-canvas menu, and everything Minima should have been.","key_features":["6 Color Skins","Resume Layout","Off-Canvas Menu","GitHub Pages"],"card_description":"Modern Minima replacement with six colour skins and a resume layout.","category":"Blog","card_image":"/assets/images/themes/basically-basic-card.webp","theme_screenshots":["/assets/images/themes/basically-basic-screenshot.webp","/assets/images/themes/basically-basic-screenshot-2.webp","/assets/images/themes/basically-basic-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/jekyll-theme-basically-basic/","github_url":"https://github.com/mmistakes/jekyll-theme-basically-basic","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.8.0","license":"MIT","stars":800,"forks":500,"features":["6 built-in colour skins","Off-canvas slide-out menu","Resume/CV page layout","Responsive design","Syntax highlighting","Google Analytics","Disqus comments","Read time estimates","Social sharing","GitHub Pages compatible"],"slug":"basically-basic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/beautiful-jekyll","collection":"themes","next":{"path":"_themes/bulma-clean-theme.md","relative_path":"_themes/bulma-clean-theme.md","id":"/themes/bulma-clean-theme","collection":"themes","url":"/themes/bulma-clean-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Bulma Clean Theme Jekyll Theme","description":"A clean and modern Jekyll theme built with the Bulma CSS framework. Features a blog, portfolio, and docs-ready layout with extensive customisation.","key_features":["Bulma CSS","Portfolio Ready","Docs Layout","GitHub Pages"],"card_description":"Clean, modern Bulma CSS theme for blogs, portfolios, and docs.","category":"Blog","card_image":"/assets/images/themes/bulma-clean-theme-card.webp","theme_screenshots":["/assets/images/themes/bulma-clean-theme-screenshot.webp","/assets/images/themes/bulma-clean-theme-screenshot-2.webp","/assets/images/themes/bulma-clean-theme-screenshot-3.webp"],"demo_url":"https://www.csrhymes.com/bulma-clean-theme/","github_url":"https://github.com/chrisrhymes/bulma-clean-theme","author":"GitHub Community","github_author_name":"chrisrhymes","github_author_url":"https://github.com/chrisrhymes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-06-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.14.0","license":"MIT","stars":407,"forks":196,"features":["Bulma CSS framework","Blog and portfolio layouts","Documentation-ready structure","Hero image sections","Call-to-action blocks","Product showcase pages","Notification banners","Tabs and cards components","GitHub Pages compatible","Extensively documented"],"slug":"bulma-clean-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Beautiful Jekyll is one of the most widely-used Jekyll themes on GitHub. Its combination of ease of setup, clean design, and deep customisability has made it the go-to choice for thousands of developers building personal blogs and project sites.\n\nYou can go from zero to a live blog on GitHub Pages in minutes β€” fork the repo, update `_config.yml`, and you're done.\n\n**Who is it for?** Anyone who wants a polished blog on GitHub Pages with minimal setup and maximum flexibility.\n","url":"/themes/beautiful-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Beautiful Jekyll","description":"One of the most popular Jekyll blog themes. Easy to set up, highly customisable, and works perfectly on GitHub Pages.","key_features":["Quick Setup","GitHub Pages","Social Links","Highly Customisable"],"card_description":"Highly popular blog theme β€” easy setup, works on GitHub Pages.","category":"Blog","card_image":"/assets/images/themes/beautiful-jekyll-card.webp","theme_screenshots":["/assets/images/themes/beautiful-jekyll-screenshot.webp","/assets/images/themes/beautiful-jekyll-screenshot-2.webp","/assets/images/themes/beautiful-jekyll-screenshot-3.webp"],"demo_url":"https://beautifuljekyll.com/","github_url":"https://github.com/daattali/beautiful-jekyll","author":"GitHub Community","github_author_name":"Dean Attali","github_author_url":"https://github.com/daattali","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-04-01","added_at":"2026-01-20","popular":true,"trending":false,"bestseller":false,"version":"6.0.1","license":"MIT","stars":6200,"forks":18900,"features":["Multiple colour schemes","Disqus comments","Google Analytics","Social sharing","Image thumbnails on posts","Footer links"],"slug":"beautiful-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Basically Basic is Michael Rose's answer to the question: what if Minima was actually good? It keeps the simplicity and GitHub Pages compatibility of Jekyll's default theme, but adds six colour skins, an off-canvas navigation menu, a dedicated resume layout, and the overall polish you'd expect from the author of Minimal Mistakes.\n\nIt's the theme to recommend when someone asks for something simple but not boring, and it works straight out of the box with GitHub Pages.\n\n**Who is it for?** Developers and writers who want a step up from Minima without jumping into the full complexity of Minimal Mistakes β€” a clean, modern blog with useful extras and zero setup friction.\n","url":"/themes/basically-basic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Basically Basic Jekyll Theme","description":"Your new Jekyll default theme β€” a modern, polished substitute for Minima. Six customisable colour skins, resume layout, off-canvas menu, and everything Minima should have been.","key_features":["6 Color Skins","Resume Layout","Off-Canvas Menu","GitHub Pages"],"card_description":"Modern Minima replacement with six colour skins and a resume layout.","category":"Blog","card_image":"/assets/images/themes/basically-basic-card.webp","theme_screenshots":["/assets/images/themes/basically-basic-screenshot.webp","/assets/images/themes/basically-basic-screenshot-2.webp","/assets/images/themes/basically-basic-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/jekyll-theme-basically-basic/","github_url":"https://github.com/mmistakes/jekyll-theme-basically-basic","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.8.0","license":"MIT","stars":800,"forks":500,"features":["6 built-in colour skins","Off-canvas slide-out menu","Resume/CV page layout","Responsive design","Syntax highlighting","Google Analytics","Disqus comments","Read time estimates","Social sharing","GitHub Pages compatible"],"slug":"basically-basic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/beautiful-jekyll.md","relative_path":"_themes/beautiful-jekyll.md","excerpt":"<p>Beautiful Jekyll is one of the most widely-used Jekyll themes on GitHub. Its combination of ease of setup, clean design, and deep customisability has made it the go-to choice for thousands of developers building personal blogs and project sites.</p>\n\n","previous":{"path":"_themes/basically-basic.md","relative_path":"_themes/basically-basic.md","excerpt":"<p>Basically Basic is Michael Rose’s answer to the question: what if Minima was actually good? It keeps the simplicity and GitHub Pages compatibility of Jekyll’s default theme, but adds six colour skins, an off-canvas navigation menu, a dedicated resume layout, and the overall polish you’d expect from the author of Minimal Mistakes.</p>\n\n","previous":{"path":"_themes/aura.md","relative_path":"_themes/aura.md","id":"/themes/aura","collection":"themes","url":"/themes/aura/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Aura Jekyll Theme","description":"Versatile Jekyll theme designed for content creators, writers, and developers. Ships with blog, projects, testimonials, and portfolio sections β€” fully compatible with GitHub Pages.","key_features":["GitHub Pages","Blog & Projects","Testimonials","Contact Form"],"card_description":"Versatile Jekyll theme for creators and developers β€” blog, projects, and portfolio ready.","category":"Personal","card_image":"/assets/images/themes/aura-card.webp","theme_screenshots":["/assets/images/themes/aura-screenshot.webp","/assets/images/themes/aura-screenshot-2.webp","/assets/images/themes/aura-screenshot-3.webp"],"demo_url":"https://satishw.github.io/jekyll-theme-aura/","github_url":"https://github.com/satishw/jekyll-theme-aura","author":"Satish W","github_author_name":"Satish W","github_author_url":"https://github.com/satishw","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-25","added_at":"2026-02-10","popular":false,"trending":true,"bestseller":false,"version":"1.0.0","license":"MIT","stars":0,"forks":0,"features":["Fully compatible with GitHub Pages β€” no custom plugins required","Blog section with tag pages and code highlighting","Projects section to showcase your work","Testimonials section for social proof","Contact form via Formspree (no backend needed)","MailChimp newsletter integration","Disqus comments support","Image gallery with lazy loading","Embedded YouTube video support","Social sharing buttons on posts","Google Analytics integration","Scroll-to-top button and responsive mobile layout"],"slug":"aura","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/basically-basic","collection":"themes","next":{"path":"_themes/beautiful-jekyll.md","relative_path":"_themes/beautiful-jekyll.md","id":"/themes/beautiful-jekyll","collection":"themes","url":"/themes/beautiful-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Beautiful Jekyll","description":"One of the most popular Jekyll blog themes. Easy to set up, highly customisable, and works perfectly on GitHub Pages.","key_features":["Quick Setup","GitHub Pages","Social Links","Highly Customisable"],"card_description":"Highly popular blog theme β€” easy setup, works on GitHub Pages.","category":"Blog","card_image":"/assets/images/themes/beautiful-jekyll-card.webp","theme_screenshots":["/assets/images/themes/beautiful-jekyll-screenshot.webp","/assets/images/themes/beautiful-jekyll-screenshot-2.webp","/assets/images/themes/beautiful-jekyll-screenshot-3.webp"],"demo_url":"https://beautifuljekyll.com/","github_url":"https://github.com/daattali/beautiful-jekyll","author":"GitHub Community","github_author_name":"Dean Attali","github_author_url":"https://github.com/daattali","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-04-01","added_at":"2026-01-20","popular":true,"trending":false,"bestseller":false,"version":"6.0.1","license":"MIT","stars":6200,"forks":18900,"features":["Multiple colour schemes","Disqus comments","Google Analytics","Social sharing","Image thumbnails on posts","Footer links"],"slug":"beautiful-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Basically Basic is Michael Rose's answer to the question: what if Minima was actually good? It keeps the simplicity and GitHub Pages compatibility of Jekyll's default theme, but adds six colour skins, an off-canvas navigation menu, a dedicated resume layout, and the overall polish you'd expect from the author of Minimal Mistakes.\n\nIt's the theme to recommend when someone asks for something simple but not boring, and it works straight out of the box with GitHub Pages.\n\n**Who is it for?** Developers and writers who want a step up from Minima without jumping into the full complexity of Minimal Mistakes β€” a clean, modern blog with useful extras and zero setup friction.\n","url":"/themes/basically-basic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Basically Basic Jekyll Theme","description":"Your new Jekyll default theme β€” a modern, polished substitute for Minima. Six customisable colour skins, resume layout, off-canvas menu, and everything Minima should have been.","key_features":["6 Color Skins","Resume Layout","Off-Canvas Menu","GitHub Pages"],"card_description":"Modern Minima replacement with six colour skins and a resume layout.","category":"Blog","card_image":"/assets/images/themes/basically-basic-card.webp","theme_screenshots":["/assets/images/themes/basically-basic-screenshot.webp","/assets/images/themes/basically-basic-screenshot-2.webp","/assets/images/themes/basically-basic-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/jekyll-theme-basically-basic/","github_url":"https://github.com/mmistakes/jekyll-theme-basically-basic","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.8.0","license":"MIT","stars":800,"forks":500,"features":["6 built-in colour skins","Off-canvas slide-out menu","Resume/CV page layout","Responsive design","Syntax highlighting","Google Analytics","Disqus comments","Read time estimates","Social sharing","GitHub Pages compatible"],"slug":"basically-basic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/beautiful-jekyll","collection":"themes","next":{"path":"_themes/bulma-clean-theme.md","relative_path":"_themes/bulma-clean-theme.md","excerpt":"<p>Bulma Clean Theme leverages the Bulma CSS framework to deliver a modern, component-rich Jekyll theme. Beyond a standard blog layout, it includes portfolio pages, product showcases, and documentation-style layouts.</p>\n\n","previous":{"path":"_themes/beautiful-jekyll.md","relative_path":"_themes/beautiful-jekyll.md","id":"/themes/beautiful-jekyll","collection":"themes","url":"/themes/beautiful-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Beautiful Jekyll","description":"One of the most popular Jekyll blog themes. Easy to set up, highly customisable, and works perfectly on GitHub Pages.","key_features":["Quick Setup","GitHub Pages","Social Links","Highly Customisable"],"card_description":"Highly popular blog theme β€” easy setup, works on GitHub Pages.","category":"Blog","card_image":"/assets/images/themes/beautiful-jekyll-card.webp","theme_screenshots":["/assets/images/themes/beautiful-jekyll-screenshot.webp","/assets/images/themes/beautiful-jekyll-screenshot-2.webp","/assets/images/themes/beautiful-jekyll-screenshot-3.webp"],"demo_url":"https://beautifuljekyll.com/","github_url":"https://github.com/daattali/beautiful-jekyll","author":"GitHub Community","github_author_name":"Dean Attali","github_author_url":"https://github.com/daattali","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-04-01","added_at":"2026-01-20","popular":true,"trending":false,"bestseller":false,"version":"6.0.1","license":"MIT","stars":6200,"forks":18900,"features":["Multiple colour schemes","Disqus comments","Google Analytics","Social sharing","Image thumbnails on posts","Footer links"],"slug":"beautiful-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/bulma-clean-theme","collection":"themes","next":{"path":"_themes/cayman.md","relative_path":"_themes/cayman.md","id":"/themes/cayman","collection":"themes","url":"/themes/cayman/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Cayman Jekyll Theme","description":"A bright, clean GitHub Pages Jekyll theme with a large hero header and fluid typography. Simple and polished for project landing pages.","key_features":["GitHub Pages","Hero Header","Clean Layout","Project Docs"],"card_description":"Bright GitHub Pages theme with large hero header for project sites.","category":"Documentation","card_image":"/assets/images/themes/cayman-card.webp","theme_screenshots":["/assets/images/themes/cayman-screenshot.webp","/assets/images/themes/cayman-screenshot-2.webp","/assets/images/themes/cayman-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/cayman/","github_url":"https://github.com/pages-themes/cayman","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-09-01","added_at":"2026-02-20","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0","stars":2100,"forks":5700,"features":["Teal gradient header","Download buttons","Clean single-column layout","GitHub Pages native","SEO tag support"],"slug":"cayman","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Bulma Clean Theme leverages the Bulma CSS framework to deliver a modern, component-rich Jekyll theme. Beyond a standard blog layout, it includes portfolio pages, product showcases, and documentation-style layouts.\n\nThe theme is actively maintained and comes with thorough documentation, making it approachable for developers of all experience levels.\n\n**Who is it for?** Developers who want a modern Bulma-based theme with more layout variety than a typical blog theme.\n","url":"/themes/bulma-clean-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Bulma Clean Theme Jekyll Theme","description":"A clean and modern Jekyll theme built with the Bulma CSS framework. Features a blog, portfolio, and docs-ready layout with extensive customisation.","key_features":["Bulma CSS","Portfolio Ready","Docs Layout","GitHub Pages"],"card_description":"Clean, modern Bulma CSS theme for blogs, portfolios, and docs.","category":"Blog","card_image":"/assets/images/themes/bulma-clean-theme-card.webp","theme_screenshots":["/assets/images/themes/bulma-clean-theme-screenshot.webp","/assets/images/themes/bulma-clean-theme-screenshot-2.webp","/assets/images/themes/bulma-clean-theme-screenshot-3.webp"],"demo_url":"https://www.csrhymes.com/bulma-clean-theme/","github_url":"https://github.com/chrisrhymes/bulma-clean-theme","author":"GitHub Community","github_author_name":"chrisrhymes","github_author_url":"https://github.com/chrisrhymes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-06-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.14.0","license":"MIT","stars":407,"forks":196,"features":["Bulma CSS framework","Blog and portfolio layouts","Documentation-ready structure","Hero image sections","Call-to-action blocks","Product showcase pages","Notification banners","Tabs and cards components","GitHub Pages compatible","Extensively documented"],"slug":"bulma-clean-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Beautiful Jekyll is one of the most widely-used Jekyll themes on GitHub. Its combination of ease of setup, clean design, and deep customisability has made it the go-to choice for thousands of developers building personal blogs and project sites.\n\nYou can go from zero to a live blog on GitHub Pages in minutes β€” fork the repo, update `_config.yml`, and you're done.\n\n**Who is it for?** Anyone who wants a polished blog on GitHub Pages with minimal setup and maximum flexibility.\n","url":"/themes/beautiful-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Beautiful Jekyll","description":"One of the most popular Jekyll blog themes. Easy to set up, highly customisable, and works perfectly on GitHub Pages.","key_features":["Quick Setup","GitHub Pages","Social Links","Highly Customisable"],"card_description":"Highly popular blog theme β€” easy setup, works on GitHub Pages.","category":"Blog","card_image":"/assets/images/themes/beautiful-jekyll-card.webp","theme_screenshots":["/assets/images/themes/beautiful-jekyll-screenshot.webp","/assets/images/themes/beautiful-jekyll-screenshot-2.webp","/assets/images/themes/beautiful-jekyll-screenshot-3.webp"],"demo_url":"https://beautifuljekyll.com/","github_url":"https://github.com/daattali/beautiful-jekyll","author":"GitHub Community","github_author_name":"Dean Attali","github_author_url":"https://github.com/daattali","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-04-01","added_at":"2026-01-20","popular":true,"trending":false,"bestseller":false,"version":"6.0.1","license":"MIT","stars":6200,"forks":18900,"features":["Multiple colour schemes","Disqus comments","Google Analytics","Social sharing","Image thumbnails on posts","Footer links"],"slug":"beautiful-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/bulma-clean-theme.md","relative_path":"_themes/bulma-clean-theme.md","excerpt":"<p>Bulma Clean Theme leverages the Bulma CSS framework to deliver a modern, component-rich Jekyll theme. Beyond a standard blog layout, it includes portfolio pages, product showcases, and documentation-style layouts.</p>\n\n","previous":{"path":"_themes/beautiful-jekyll.md","relative_path":"_themes/beautiful-jekyll.md","excerpt":"<p>Beautiful Jekyll is one of the most widely-used Jekyll themes on GitHub. Its combination of ease of setup, clean design, and deep customisability has made it the go-to choice for thousands of developers building personal blogs and project sites.</p>\n\n","previous":{"path":"_themes/basically-basic.md","relative_path":"_themes/basically-basic.md","id":"/themes/basically-basic","collection":"themes","url":"/themes/basically-basic/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Basically Basic Jekyll Theme","description":"Your new Jekyll default theme β€” a modern, polished substitute for Minima. Six customisable colour skins, resume layout, off-canvas menu, and everything Minima should have been.","key_features":["6 Color Skins","Resume Layout","Off-Canvas Menu","GitHub Pages"],"card_description":"Modern Minima replacement with six colour skins and a resume layout.","category":"Blog","card_image":"/assets/images/themes/basically-basic-card.webp","theme_screenshots":["/assets/images/themes/basically-basic-screenshot.webp","/assets/images/themes/basically-basic-screenshot-2.webp","/assets/images/themes/basically-basic-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/jekyll-theme-basically-basic/","github_url":"https://github.com/mmistakes/jekyll-theme-basically-basic","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.8.0","license":"MIT","stars":800,"forks":500,"features":["6 built-in colour skins","Off-canvas slide-out menu","Resume/CV page layout","Responsive design","Syntax highlighting","Google Analytics","Disqus comments","Read time estimates","Social sharing","GitHub Pages compatible"],"slug":"basically-basic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/beautiful-jekyll","collection":"themes","next":{"path":"_themes/bulma-clean-theme.md","relative_path":"_themes/bulma-clean-theme.md","id":"/themes/bulma-clean-theme","collection":"themes","url":"/themes/bulma-clean-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Bulma Clean Theme Jekyll Theme","description":"A clean and modern Jekyll theme built with the Bulma CSS framework. Features a blog, portfolio, and docs-ready layout with extensive customisation.","key_features":["Bulma CSS","Portfolio Ready","Docs Layout","GitHub Pages"],"card_description":"Clean, modern Bulma CSS theme for blogs, portfolios, and docs.","category":"Blog","card_image":"/assets/images/themes/bulma-clean-theme-card.webp","theme_screenshots":["/assets/images/themes/bulma-clean-theme-screenshot.webp","/assets/images/themes/bulma-clean-theme-screenshot-2.webp","/assets/images/themes/bulma-clean-theme-screenshot-3.webp"],"demo_url":"https://www.csrhymes.com/bulma-clean-theme/","github_url":"https://github.com/chrisrhymes/bulma-clean-theme","author":"GitHub Community","github_author_name":"chrisrhymes","github_author_url":"https://github.com/chrisrhymes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-06-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.14.0","license":"MIT","stars":407,"forks":196,"features":["Bulma CSS framework","Blog and portfolio layouts","Documentation-ready structure","Hero image sections","Call-to-action blocks","Product showcase pages","Notification banners","Tabs and cards components","GitHub Pages compatible","Extensively documented"],"slug":"bulma-clean-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Beautiful Jekyll is one of the most widely-used Jekyll themes on GitHub. Its combination of ease of setup, clean design, and deep customisability has made it the go-to choice for thousands of developers building personal blogs and project sites.\n\nYou can go from zero to a live blog on GitHub Pages in minutes β€” fork the repo, update `_config.yml`, and you're done.\n\n**Who is it for?** Anyone who wants a polished blog on GitHub Pages with minimal setup and maximum flexibility.\n","url":"/themes/beautiful-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Beautiful Jekyll","description":"One of the most popular Jekyll blog themes. Easy to set up, highly customisable, and works perfectly on GitHub Pages.","key_features":["Quick Setup","GitHub Pages","Social Links","Highly Customisable"],"card_description":"Highly popular blog theme β€” easy setup, works on GitHub Pages.","category":"Blog","card_image":"/assets/images/themes/beautiful-jekyll-card.webp","theme_screenshots":["/assets/images/themes/beautiful-jekyll-screenshot.webp","/assets/images/themes/beautiful-jekyll-screenshot-2.webp","/assets/images/themes/beautiful-jekyll-screenshot-3.webp"],"demo_url":"https://beautifuljekyll.com/","github_url":"https://github.com/daattali/beautiful-jekyll","author":"GitHub Community","github_author_name":"Dean Attali","github_author_url":"https://github.com/daattali","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-04-01","added_at":"2026-01-20","popular":true,"trending":false,"bestseller":false,"version":"6.0.1","license":"MIT","stars":6200,"forks":18900,"features":["Multiple colour schemes","Disqus comments","Google Analytics","Social sharing","Image thumbnails on posts","Footer links"],"slug":"beautiful-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/bulma-clean-theme","collection":"themes","next":{"path":"_themes/cayman.md","relative_path":"_themes/cayman.md","excerpt":"<p>Cayman is the classic GitHub Pages documentation theme, recognisable by its signature teal gradient header. It’s the cleanest way to turn a repository’s README into a polished project page.</p>\n\n","previous":{"path":"_themes/bulma-clean-theme.md","relative_path":"_themes/bulma-clean-theme.md","id":"/themes/bulma-clean-theme","collection":"themes","url":"/themes/bulma-clean-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Bulma Clean Theme Jekyll Theme","description":"A clean and modern Jekyll theme built with the Bulma CSS framework. Features a blog, portfolio, and docs-ready layout with extensive customisation.","key_features":["Bulma CSS","Portfolio Ready","Docs Layout","GitHub Pages"],"card_description":"Clean, modern Bulma CSS theme for blogs, portfolios, and docs.","category":"Blog","card_image":"/assets/images/themes/bulma-clean-theme-card.webp","theme_screenshots":["/assets/images/themes/bulma-clean-theme-screenshot.webp","/assets/images/themes/bulma-clean-theme-screenshot-2.webp","/assets/images/themes/bulma-clean-theme-screenshot-3.webp"],"demo_url":"https://www.csrhymes.com/bulma-clean-theme/","github_url":"https://github.com/chrisrhymes/bulma-clean-theme","author":"GitHub Community","github_author_name":"chrisrhymes","github_author_url":"https://github.com/chrisrhymes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-06-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.14.0","license":"MIT","stars":407,"forks":196,"features":["Bulma CSS framework","Blog and portfolio layouts","Documentation-ready structure","Hero image sections","Call-to-action blocks","Product showcase pages","Notification banners","Tabs and cards components","GitHub Pages compatible","Extensively documented"],"slug":"bulma-clean-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/cayman","collection":"themes","next":{"path":"_themes/centrarium.md","relative_path":"_themes/centrarium.md","id":"/themes/centrarium","collection":"themes","url":"/themes/centrarium/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Centrarium Jekyll Theme","description":"A simple, classy Jekyll blog theme with a large header image, featured posts, category pages, and Google Analytics integration.","key_features":["Featured Images","Category Pages","Analytics Ready","GitHub Pages"],"card_description":"Classy blog theme with large header images and featured posts.","category":"Blog","card_image":"/assets/images/themes/centrarium-card.webp","theme_screenshots":["/assets/images/themes/centrarium-screenshot.webp","/assets/images/themes/centrarium-screenshot-2.webp","/assets/images/themes/centrarium-screenshot-3.webp"],"demo_url":"https://bencentra.com/centrarium/","github_url":"https://github.com/bencentra/centrarium","author":"GitHub Community","github_author_name":"bencentra","github_author_url":"https://github.com/bencentra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-15","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":444,"forks":251,"features":["Large hero header image","Featured post support","Category archive pages","Tag archive pages","Disqus comments","Google Analytics","Social share buttons","Paginated post list","GitHub Pages compatible","Responsive design"],"slug":"centrarium","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Cayman is the classic GitHub Pages documentation theme, recognisable by its signature teal gradient header. It's the cleanest way to turn a repository's README into a polished project page.\n\nBuilt and maintained by GitHub itself, it's always up to date with the latest GitHub Pages Jekyll version.\n\n**Who is it for?** Open source projects, GitHub Pages documentation sites, and anyone who wants the classic, trusted project page look.\n","url":"/themes/cayman/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Cayman Jekyll Theme","description":"A bright, clean GitHub Pages Jekyll theme with a large hero header and fluid typography. Simple and polished for project landing pages.","key_features":["GitHub Pages","Hero Header","Clean Layout","Project Docs"],"card_description":"Bright GitHub Pages theme with large hero header for project sites.","category":"Documentation","card_image":"/assets/images/themes/cayman-card.webp","theme_screenshots":["/assets/images/themes/cayman-screenshot.webp","/assets/images/themes/cayman-screenshot-2.webp","/assets/images/themes/cayman-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/cayman/","github_url":"https://github.com/pages-themes/cayman","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-09-01","added_at":"2026-02-20","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0","stars":2100,"forks":5700,"features":["Teal gradient header","Download buttons","Clean single-column layout","GitHub Pages native","SEO tag support"],"slug":"cayman","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Bulma Clean Theme leverages the Bulma CSS framework to deliver a modern, component-rich Jekyll theme. Beyond a standard blog layout, it includes portfolio pages, product showcases, and documentation-style layouts.\n\nThe theme is actively maintained and comes with thorough documentation, making it approachable for developers of all experience levels.\n\n**Who is it for?** Developers who want a modern Bulma-based theme with more layout variety than a typical blog theme.\n","url":"/themes/bulma-clean-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Bulma Clean Theme Jekyll Theme","description":"A clean and modern Jekyll theme built with the Bulma CSS framework. Features a blog, portfolio, and docs-ready layout with extensive customisation.","key_features":["Bulma CSS","Portfolio Ready","Docs Layout","GitHub Pages"],"card_description":"Clean, modern Bulma CSS theme for blogs, portfolios, and docs.","category":"Blog","card_image":"/assets/images/themes/bulma-clean-theme-card.webp","theme_screenshots":["/assets/images/themes/bulma-clean-theme-screenshot.webp","/assets/images/themes/bulma-clean-theme-screenshot-2.webp","/assets/images/themes/bulma-clean-theme-screenshot-3.webp"],"demo_url":"https://www.csrhymes.com/bulma-clean-theme/","github_url":"https://github.com/chrisrhymes/bulma-clean-theme","author":"GitHub Community","github_author_name":"chrisrhymes","github_author_url":"https://github.com/chrisrhymes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-06-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.14.0","license":"MIT","stars":407,"forks":196,"features":["Bulma CSS framework","Blog and portfolio layouts","Documentation-ready structure","Hero image sections","Call-to-action blocks","Product showcase pages","Notification banners","Tabs and cards components","GitHub Pages compatible","Extensively documented"],"slug":"bulma-clean-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/cayman.md","relative_path":"_themes/cayman.md","excerpt":"<p>Cayman is the classic GitHub Pages documentation theme, recognisable by its signature teal gradient header. It’s the cleanest way to turn a repository’s README into a polished project page.</p>\n\n","previous":{"path":"_themes/bulma-clean-theme.md","relative_path":"_themes/bulma-clean-theme.md","excerpt":"<p>Bulma Clean Theme leverages the Bulma CSS framework to deliver a modern, component-rich Jekyll theme. Beyond a standard blog layout, it includes portfolio pages, product showcases, and documentation-style layouts.</p>\n\n","previous":{"path":"_themes/beautiful-jekyll.md","relative_path":"_themes/beautiful-jekyll.md","id":"/themes/beautiful-jekyll","collection":"themes","url":"/themes/beautiful-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Beautiful Jekyll","description":"One of the most popular Jekyll blog themes. Easy to set up, highly customisable, and works perfectly on GitHub Pages.","key_features":["Quick Setup","GitHub Pages","Social Links","Highly Customisable"],"card_description":"Highly popular blog theme β€” easy setup, works on GitHub Pages.","category":"Blog","card_image":"/assets/images/themes/beautiful-jekyll-card.webp","theme_screenshots":["/assets/images/themes/beautiful-jekyll-screenshot.webp","/assets/images/themes/beautiful-jekyll-screenshot-2.webp","/assets/images/themes/beautiful-jekyll-screenshot-3.webp"],"demo_url":"https://beautifuljekyll.com/","github_url":"https://github.com/daattali/beautiful-jekyll","author":"GitHub Community","github_author_name":"Dean Attali","github_author_url":"https://github.com/daattali","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-04-01","added_at":"2026-01-20","popular":true,"trending":false,"bestseller":false,"version":"6.0.1","license":"MIT","stars":6200,"forks":18900,"features":["Multiple colour schemes","Disqus comments","Google Analytics","Social sharing","Image thumbnails on posts","Footer links"],"slug":"beautiful-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/bulma-clean-theme","collection":"themes","next":{"path":"_themes/cayman.md","relative_path":"_themes/cayman.md","id":"/themes/cayman","collection":"themes","url":"/themes/cayman/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Cayman Jekyll Theme","description":"A bright, clean GitHub Pages Jekyll theme with a large hero header and fluid typography. Simple and polished for project landing pages.","key_features":["GitHub Pages","Hero Header","Clean Layout","Project Docs"],"card_description":"Bright GitHub Pages theme with large hero header for project sites.","category":"Documentation","card_image":"/assets/images/themes/cayman-card.webp","theme_screenshots":["/assets/images/themes/cayman-screenshot.webp","/assets/images/themes/cayman-screenshot-2.webp","/assets/images/themes/cayman-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/cayman/","github_url":"https://github.com/pages-themes/cayman","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-09-01","added_at":"2026-02-20","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0","stars":2100,"forks":5700,"features":["Teal gradient header","Download buttons","Clean single-column layout","GitHub Pages native","SEO tag support"],"slug":"cayman","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Bulma Clean Theme leverages the Bulma CSS framework to deliver a modern, component-rich Jekyll theme. Beyond a standard blog layout, it includes portfolio pages, product showcases, and documentation-style layouts.\n\nThe theme is actively maintained and comes with thorough documentation, making it approachable for developers of all experience levels.\n\n**Who is it for?** Developers who want a modern Bulma-based theme with more layout variety than a typical blog theme.\n","url":"/themes/bulma-clean-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Bulma Clean Theme Jekyll Theme","description":"A clean and modern Jekyll theme built with the Bulma CSS framework. Features a blog, portfolio, and docs-ready layout with extensive customisation.","key_features":["Bulma CSS","Portfolio Ready","Docs Layout","GitHub Pages"],"card_description":"Clean, modern Bulma CSS theme for blogs, portfolios, and docs.","category":"Blog","card_image":"/assets/images/themes/bulma-clean-theme-card.webp","theme_screenshots":["/assets/images/themes/bulma-clean-theme-screenshot.webp","/assets/images/themes/bulma-clean-theme-screenshot-2.webp","/assets/images/themes/bulma-clean-theme-screenshot-3.webp"],"demo_url":"https://www.csrhymes.com/bulma-clean-theme/","github_url":"https://github.com/chrisrhymes/bulma-clean-theme","author":"GitHub Community","github_author_name":"chrisrhymes","github_author_url":"https://github.com/chrisrhymes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-06-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.14.0","license":"MIT","stars":407,"forks":196,"features":["Bulma CSS framework","Blog and portfolio layouts","Documentation-ready structure","Hero image sections","Call-to-action blocks","Product showcase pages","Notification banners","Tabs and cards components","GitHub Pages compatible","Extensively documented"],"slug":"bulma-clean-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/cayman","collection":"themes","next":{"path":"_themes/centrarium.md","relative_path":"_themes/centrarium.md","excerpt":"<p>Centrarium balances a clean, classy aesthetic with a generous feature set. The large header image gives each page a visual anchor, while the well-structured navigation makes it easy to explore categories and tags.</p>\n\n","previous":{"path":"_themes/cayman.md","relative_path":"_themes/cayman.md","id":"/themes/cayman","collection":"themes","url":"/themes/cayman/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Cayman Jekyll Theme","description":"A bright, clean GitHub Pages Jekyll theme with a large hero header and fluid typography. Simple and polished for project landing pages.","key_features":["GitHub Pages","Hero Header","Clean Layout","Project Docs"],"card_description":"Bright GitHub Pages theme with large hero header for project sites.","category":"Documentation","card_image":"/assets/images/themes/cayman-card.webp","theme_screenshots":["/assets/images/themes/cayman-screenshot.webp","/assets/images/themes/cayman-screenshot-2.webp","/assets/images/themes/cayman-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/cayman/","github_url":"https://github.com/pages-themes/cayman","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-09-01","added_at":"2026-02-20","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0","stars":2100,"forks":5700,"features":["Teal gradient header","Download buttons","Clean single-column layout","GitHub Pages native","SEO tag support"],"slug":"cayman","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/centrarium","collection":"themes","next":{"path":"_themes/chalk.md","relative_path":"_themes/chalk.md","id":"/themes/chalk","collection":"themes","url":"/themes/chalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Chalk Jekyll Theme","description":"A high quality, completely customisable Jekyll blog theme. Features an elegant two-column layout, full-text search, category filtering, and subtle animations that make the experience feel alive.","key_features":["Full-Text Search","Tag Filtering","Subtle Animations","Category Pages"],"card_description":"Elegant two-column blog with full-text search and category filtering.","category":"Blog","card_image":"/assets/images/themes/chalk-card.webp","theme_screenshots":["/assets/images/themes/chalk-screenshot.webp","/assets/images/themes/chalk-screenshot-2.webp","/assets/images/themes/chalk-screenshot-3.webp"],"demo_url":"https://chalk.nielsenramon.com/","github_url":"https://github.com/nielsenramon/chalk","author":"GitHub Community","github_author_name":"nielsenramon","github_author_url":"https://github.com/nielsenramon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"2.3.0","license":"MIT","stars":1300,"forks":350,"features":["Two-column layout with elegant sidebar","Full-text search powered by Lunr.js","Category filtering on the post listing","Subtle CSS animations throughout","Cross browser compatible","Disqus comments","Google Analytics","Apple touch icon support","Environment-based configuration","SVG social icons"],"slug":"chalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Centrarium balances a clean, classy aesthetic with a generous feature set. The large header image gives each page a visual anchor, while the well-structured navigation makes it easy to explore categories and tags.\n\nFeatured posts can be pinned to highlight important content, and the comment system integrates cleanly with Disqus.\n\n**Who is it for?** Bloggers who want a polished, feature-complete theme without the complexity of larger frameworks like Minimal Mistakes.\n","url":"/themes/centrarium/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Centrarium Jekyll Theme","description":"A simple, classy Jekyll blog theme with a large header image, featured posts, category pages, and Google Analytics integration.","key_features":["Featured Images","Category Pages","Analytics Ready","GitHub Pages"],"card_description":"Classy blog theme with large header images and featured posts.","category":"Blog","card_image":"/assets/images/themes/centrarium-card.webp","theme_screenshots":["/assets/images/themes/centrarium-screenshot.webp","/assets/images/themes/centrarium-screenshot-2.webp","/assets/images/themes/centrarium-screenshot-3.webp"],"demo_url":"https://bencentra.com/centrarium/","github_url":"https://github.com/bencentra/centrarium","author":"GitHub Community","github_author_name":"bencentra","github_author_url":"https://github.com/bencentra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-15","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":444,"forks":251,"features":["Large hero header image","Featured post support","Category archive pages","Tag archive pages","Disqus comments","Google Analytics","Social share buttons","Paginated post list","GitHub Pages compatible","Responsive design"],"slug":"centrarium","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Cayman is the classic GitHub Pages documentation theme, recognisable by its signature teal gradient header. It's the cleanest way to turn a repository's README into a polished project page.\n\nBuilt and maintained by GitHub itself, it's always up to date with the latest GitHub Pages Jekyll version.\n\n**Who is it for?** Open source projects, GitHub Pages documentation sites, and anyone who wants the classic, trusted project page look.\n","url":"/themes/cayman/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Cayman Jekyll Theme","description":"A bright, clean GitHub Pages Jekyll theme with a large hero header and fluid typography. Simple and polished for project landing pages.","key_features":["GitHub Pages","Hero Header","Clean Layout","Project Docs"],"card_description":"Bright GitHub Pages theme with large hero header for project sites.","category":"Documentation","card_image":"/assets/images/themes/cayman-card.webp","theme_screenshots":["/assets/images/themes/cayman-screenshot.webp","/assets/images/themes/cayman-screenshot-2.webp","/assets/images/themes/cayman-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/cayman/","github_url":"https://github.com/pages-themes/cayman","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-09-01","added_at":"2026-02-20","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0","stars":2100,"forks":5700,"features":["Teal gradient header","Download buttons","Clean single-column layout","GitHub Pages native","SEO tag support"],"slug":"cayman","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/centrarium.md","relative_path":"_themes/centrarium.md","excerpt":"<p>Centrarium balances a clean, classy aesthetic with a generous feature set. The large header image gives each page a visual anchor, while the well-structured navigation makes it easy to explore categories and tags.</p>\n\n","previous":{"path":"_themes/cayman.md","relative_path":"_themes/cayman.md","excerpt":"<p>Cayman is the classic GitHub Pages documentation theme, recognisable by its signature teal gradient header. It’s the cleanest way to turn a repository’s README into a polished project page.</p>\n\n","previous":{"path":"_themes/bulma-clean-theme.md","relative_path":"_themes/bulma-clean-theme.md","id":"/themes/bulma-clean-theme","collection":"themes","url":"/themes/bulma-clean-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Bulma Clean Theme Jekyll Theme","description":"A clean and modern Jekyll theme built with the Bulma CSS framework. Features a blog, portfolio, and docs-ready layout with extensive customisation.","key_features":["Bulma CSS","Portfolio Ready","Docs Layout","GitHub Pages"],"card_description":"Clean, modern Bulma CSS theme for blogs, portfolios, and docs.","category":"Blog","card_image":"/assets/images/themes/bulma-clean-theme-card.webp","theme_screenshots":["/assets/images/themes/bulma-clean-theme-screenshot.webp","/assets/images/themes/bulma-clean-theme-screenshot-2.webp","/assets/images/themes/bulma-clean-theme-screenshot-3.webp"],"demo_url":"https://www.csrhymes.com/bulma-clean-theme/","github_url":"https://github.com/chrisrhymes/bulma-clean-theme","author":"GitHub Community","github_author_name":"chrisrhymes","github_author_url":"https://github.com/chrisrhymes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-06-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"0.14.0","license":"MIT","stars":407,"forks":196,"features":["Bulma CSS framework","Blog and portfolio layouts","Documentation-ready structure","Hero image sections","Call-to-action blocks","Product showcase pages","Notification banners","Tabs and cards components","GitHub Pages compatible","Extensively documented"],"slug":"bulma-clean-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/cayman","collection":"themes","next":{"path":"_themes/centrarium.md","relative_path":"_themes/centrarium.md","id":"/themes/centrarium","collection":"themes","url":"/themes/centrarium/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Centrarium Jekyll Theme","description":"A simple, classy Jekyll blog theme with a large header image, featured posts, category pages, and Google Analytics integration.","key_features":["Featured Images","Category Pages","Analytics Ready","GitHub Pages"],"card_description":"Classy blog theme with large header images and featured posts.","category":"Blog","card_image":"/assets/images/themes/centrarium-card.webp","theme_screenshots":["/assets/images/themes/centrarium-screenshot.webp","/assets/images/themes/centrarium-screenshot-2.webp","/assets/images/themes/centrarium-screenshot-3.webp"],"demo_url":"https://bencentra.com/centrarium/","github_url":"https://github.com/bencentra/centrarium","author":"GitHub Community","github_author_name":"bencentra","github_author_url":"https://github.com/bencentra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-15","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":444,"forks":251,"features":["Large hero header image","Featured post support","Category archive pages","Tag archive pages","Disqus comments","Google Analytics","Social share buttons","Paginated post list","GitHub Pages compatible","Responsive design"],"slug":"centrarium","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Cayman is the classic GitHub Pages documentation theme, recognisable by its signature teal gradient header. It's the cleanest way to turn a repository's README into a polished project page.\n\nBuilt and maintained by GitHub itself, it's always up to date with the latest GitHub Pages Jekyll version.\n\n**Who is it for?** Open source projects, GitHub Pages documentation sites, and anyone who wants the classic, trusted project page look.\n","url":"/themes/cayman/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Cayman Jekyll Theme","description":"A bright, clean GitHub Pages Jekyll theme with a large hero header and fluid typography. Simple and polished for project landing pages.","key_features":["GitHub Pages","Hero Header","Clean Layout","Project Docs"],"card_description":"Bright GitHub Pages theme with large hero header for project sites.","category":"Documentation","card_image":"/assets/images/themes/cayman-card.webp","theme_screenshots":["/assets/images/themes/cayman-screenshot.webp","/assets/images/themes/cayman-screenshot-2.webp","/assets/images/themes/cayman-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/cayman/","github_url":"https://github.com/pages-themes/cayman","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-09-01","added_at":"2026-02-20","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0","stars":2100,"forks":5700,"features":["Teal gradient header","Download buttons","Clean single-column layout","GitHub Pages native","SEO tag support"],"slug":"cayman","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/centrarium","collection":"themes","next":{"path":"_themes/chalk.md","relative_path":"_themes/chalk.md","excerpt":"<p>Chalk stands out in the crowded minimal blog space by adding just enough polish to feel premium without feeling heavy. The sidebar layout makes good use of horizontal space on desktop, and the subtle CSS animations β€” hover states, transitions, loading effects β€” give the whole site a crafted, alive feeling.</p>\n\n","previous":{"path":"_themes/centrarium.md","relative_path":"_themes/centrarium.md","id":"/themes/centrarium","collection":"themes","url":"/themes/centrarium/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Centrarium Jekyll Theme","description":"A simple, classy Jekyll blog theme with a large header image, featured posts, category pages, and Google Analytics integration.","key_features":["Featured Images","Category Pages","Analytics Ready","GitHub Pages"],"card_description":"Classy blog theme with large header images and featured posts.","category":"Blog","card_image":"/assets/images/themes/centrarium-card.webp","theme_screenshots":["/assets/images/themes/centrarium-screenshot.webp","/assets/images/themes/centrarium-screenshot-2.webp","/assets/images/themes/centrarium-screenshot-3.webp"],"demo_url":"https://bencentra.com/centrarium/","github_url":"https://github.com/bencentra/centrarium","author":"GitHub Community","github_author_name":"bencentra","github_author_url":"https://github.com/bencentra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-15","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":444,"forks":251,"features":["Large hero header image","Featured post support","Category archive pages","Tag archive pages","Disqus comments","Google Analytics","Social share buttons","Paginated post list","GitHub Pages compatible","Responsive design"],"slug":"centrarium","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/chalk","collection":"themes","next":{"path":"_themes/chirpy.md","relative_path":"_themes/chirpy.md","id":"/themes/chirpy","collection":"themes","url":"/themes/chirpy/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Chirpy Jekyll Theme","description":"A polished, feature-rich blog theme with dark mode, full-text search, reading time, table of contents, and PWA support. One of the fastest-growing Jekyll themes.","key_features":["Dark Mode","Full-Text Search","PWA Support","Table of Contents"],"card_description":"Feature-rich blog with dark mode, search, TOC, and PWA support.","category":"Blog","card_image":"/assets/images/themes/chirpy-card.webp","theme_screenshots":["/assets/images/themes/chirpy-screenshot.webp","/assets/images/themes/chirpy-screenshot-2.webp","/assets/images/themes/chirpy-screenshot-3.webp"],"demo_url":"https://chirpy.cotes.page/","github_url":"https://github.com/cotes2020/jekyll-theme-chirpy","author":"GitHub Community","github_author_name":"Cotes Chung","github_author_url":"https://github.com/cotes2020","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-archives","jekyll-paginate-v2"],"updated_at":"2024-04-01","added_at":"2026-01-05","popular":true,"trending":true,"bestseller":false,"version":"7.1.0","license":"MIT","stars":9800,"forks":1900,"features":["Light and dark mode toggle","Full-text Lunr.js search","Automatic table of contents","Reading time estimate per post","Progressive Web App (PWA) support","Disqus and giscus comments","Google Analytics and GoatCounter","SEO optimised with structured data","Pinned posts","Code syntax highlighting with copy button"],"slug":"chirpy","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Chalk stands out in the crowded minimal blog space by adding just enough polish to feel premium without feeling heavy. The sidebar layout makes good use of horizontal space on desktop, and the subtle CSS animations β€” hover states, transitions, loading effects β€” give the whole site a crafted, alive feeling.\n\nThe built-in Lunr.js search and category filtering are genuinely useful, and the theme's careful attention to cross-browser consistency means it looks right everywhere.\n\n**Who is it for?** Developers and bloggers who want a minimal aesthetic with a bit more visual refinement and user-friendly features like search and category browsing.\n","url":"/themes/chalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Chalk Jekyll Theme","description":"A high quality, completely customisable Jekyll blog theme. Features an elegant two-column layout, full-text search, category filtering, and subtle animations that make the experience feel alive.","key_features":["Full-Text Search","Tag Filtering","Subtle Animations","Category Pages"],"card_description":"Elegant two-column blog with full-text search and category filtering.","category":"Blog","card_image":"/assets/images/themes/chalk-card.webp","theme_screenshots":["/assets/images/themes/chalk-screenshot.webp","/assets/images/themes/chalk-screenshot-2.webp","/assets/images/themes/chalk-screenshot-3.webp"],"demo_url":"https://chalk.nielsenramon.com/","github_url":"https://github.com/nielsenramon/chalk","author":"GitHub Community","github_author_name":"nielsenramon","github_author_url":"https://github.com/nielsenramon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"2.3.0","license":"MIT","stars":1300,"forks":350,"features":["Two-column layout with elegant sidebar","Full-text search powered by Lunr.js","Category filtering on the post listing","Subtle CSS animations throughout","Cross browser compatible","Disqus comments","Google Analytics","Apple touch icon support","Environment-based configuration","SVG social icons"],"slug":"chalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Centrarium balances a clean, classy aesthetic with a generous feature set. The large header image gives each page a visual anchor, while the well-structured navigation makes it easy to explore categories and tags.\n\nFeatured posts can be pinned to highlight important content, and the comment system integrates cleanly with Disqus.\n\n**Who is it for?** Bloggers who want a polished, feature-complete theme without the complexity of larger frameworks like Minimal Mistakes.\n","url":"/themes/centrarium/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Centrarium Jekyll Theme","description":"A simple, classy Jekyll blog theme with a large header image, featured posts, category pages, and Google Analytics integration.","key_features":["Featured Images","Category Pages","Analytics Ready","GitHub Pages"],"card_description":"Classy blog theme with large header images and featured posts.","category":"Blog","card_image":"/assets/images/themes/centrarium-card.webp","theme_screenshots":["/assets/images/themes/centrarium-screenshot.webp","/assets/images/themes/centrarium-screenshot-2.webp","/assets/images/themes/centrarium-screenshot-3.webp"],"demo_url":"https://bencentra.com/centrarium/","github_url":"https://github.com/bencentra/centrarium","author":"GitHub Community","github_author_name":"bencentra","github_author_url":"https://github.com/bencentra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-15","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":444,"forks":251,"features":["Large hero header image","Featured post support","Category archive pages","Tag archive pages","Disqus comments","Google Analytics","Social share buttons","Paginated post list","GitHub Pages compatible","Responsive design"],"slug":"centrarium","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/chalk.md","relative_path":"_themes/chalk.md","excerpt":"<p>Chalk stands out in the crowded minimal blog space by adding just enough polish to feel premium without feeling heavy. The sidebar layout makes good use of horizontal space on desktop, and the subtle CSS animations β€” hover states, transitions, loading effects β€” give the whole site a crafted, alive feeling.</p>\n\n","previous":{"path":"_themes/centrarium.md","relative_path":"_themes/centrarium.md","excerpt":"<p>Centrarium balances a clean, classy aesthetic with a generous feature set. The large header image gives each page a visual anchor, while the well-structured navigation makes it easy to explore categories and tags.</p>\n\n","previous":{"path":"_themes/cayman.md","relative_path":"_themes/cayman.md","id":"/themes/cayman","collection":"themes","url":"/themes/cayman/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Cayman Jekyll Theme","description":"A bright, clean GitHub Pages Jekyll theme with a large hero header and fluid typography. Simple and polished for project landing pages.","key_features":["GitHub Pages","Hero Header","Clean Layout","Project Docs"],"card_description":"Bright GitHub Pages theme with large hero header for project sites.","category":"Documentation","card_image":"/assets/images/themes/cayman-card.webp","theme_screenshots":["/assets/images/themes/cayman-screenshot.webp","/assets/images/themes/cayman-screenshot-2.webp","/assets/images/themes/cayman-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/cayman/","github_url":"https://github.com/pages-themes/cayman","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-09-01","added_at":"2026-02-20","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0","stars":2100,"forks":5700,"features":["Teal gradient header","Download buttons","Clean single-column layout","GitHub Pages native","SEO tag support"],"slug":"cayman","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/centrarium","collection":"themes","next":{"path":"_themes/chalk.md","relative_path":"_themes/chalk.md","id":"/themes/chalk","collection":"themes","url":"/themes/chalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Chalk Jekyll Theme","description":"A high quality, completely customisable Jekyll blog theme. Features an elegant two-column layout, full-text search, category filtering, and subtle animations that make the experience feel alive.","key_features":["Full-Text Search","Tag Filtering","Subtle Animations","Category Pages"],"card_description":"Elegant two-column blog with full-text search and category filtering.","category":"Blog","card_image":"/assets/images/themes/chalk-card.webp","theme_screenshots":["/assets/images/themes/chalk-screenshot.webp","/assets/images/themes/chalk-screenshot-2.webp","/assets/images/themes/chalk-screenshot-3.webp"],"demo_url":"https://chalk.nielsenramon.com/","github_url":"https://github.com/nielsenramon/chalk","author":"GitHub Community","github_author_name":"nielsenramon","github_author_url":"https://github.com/nielsenramon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"2.3.0","license":"MIT","stars":1300,"forks":350,"features":["Two-column layout with elegant sidebar","Full-text search powered by Lunr.js","Category filtering on the post listing","Subtle CSS animations throughout","Cross browser compatible","Disqus comments","Google Analytics","Apple touch icon support","Environment-based configuration","SVG social icons"],"slug":"chalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Centrarium balances a clean, classy aesthetic with a generous feature set. The large header image gives each page a visual anchor, while the well-structured navigation makes it easy to explore categories and tags.\n\nFeatured posts can be pinned to highlight important content, and the comment system integrates cleanly with Disqus.\n\n**Who is it for?** Bloggers who want a polished, feature-complete theme without the complexity of larger frameworks like Minimal Mistakes.\n","url":"/themes/centrarium/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Centrarium Jekyll Theme","description":"A simple, classy Jekyll blog theme with a large header image, featured posts, category pages, and Google Analytics integration.","key_features":["Featured Images","Category Pages","Analytics Ready","GitHub Pages"],"card_description":"Classy blog theme with large header images and featured posts.","category":"Blog","card_image":"/assets/images/themes/centrarium-card.webp","theme_screenshots":["/assets/images/themes/centrarium-screenshot.webp","/assets/images/themes/centrarium-screenshot-2.webp","/assets/images/themes/centrarium-screenshot-3.webp"],"demo_url":"https://bencentra.com/centrarium/","github_url":"https://github.com/bencentra/centrarium","author":"GitHub Community","github_author_name":"bencentra","github_author_url":"https://github.com/bencentra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-15","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":444,"forks":251,"features":["Large hero header image","Featured post support","Category archive pages","Tag archive pages","Disqus comments","Google Analytics","Social share buttons","Paginated post list","GitHub Pages compatible","Responsive design"],"slug":"centrarium","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/chalk","collection":"themes","next":{"path":"_themes/chirpy.md","relative_path":"_themes/chirpy.md","excerpt":"<p>Chirpy has emerged as one of the most beloved Jekyll themes of the last few years. Where many themes offer either good looks or good features, Chirpy delivers both. Its clean, modern design prioritises readability β€” comfortable line lengths, generous whitespace, and a typographic hierarchy that guides your reader through even the longest technical articles.</p>\n\n","previous":{"path":"_themes/chalk.md","relative_path":"_themes/chalk.md","id":"/themes/chalk","collection":"themes","url":"/themes/chalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Chalk Jekyll Theme","description":"A high quality, completely customisable Jekyll blog theme. Features an elegant two-column layout, full-text search, category filtering, and subtle animations that make the experience feel alive.","key_features":["Full-Text Search","Tag Filtering","Subtle Animations","Category Pages"],"card_description":"Elegant two-column blog with full-text search and category filtering.","category":"Blog","card_image":"/assets/images/themes/chalk-card.webp","theme_screenshots":["/assets/images/themes/chalk-screenshot.webp","/assets/images/themes/chalk-screenshot-2.webp","/assets/images/themes/chalk-screenshot-3.webp"],"demo_url":"https://chalk.nielsenramon.com/","github_url":"https://github.com/nielsenramon/chalk","author":"GitHub Community","github_author_name":"nielsenramon","github_author_url":"https://github.com/nielsenramon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"2.3.0","license":"MIT","stars":1300,"forks":350,"features":["Two-column layout with elegant sidebar","Full-text search powered by Lunr.js","Category filtering on the post listing","Subtle CSS animations throughout","Cross browser compatible","Disqus comments","Google Analytics","Apple touch icon support","Environment-based configuration","SVG social icons"],"slug":"chalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/chirpy","collection":"themes","next":{"path":"_themes/clean-blog.md","relative_path":"_themes/clean-blog.md","id":"/themes/clean-blog","collection":"themes","url":"/themes/clean-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Clean Blog Jekyll Theme","description":"A clean, distraction-free blog theme with full-width header images per post. A Start Bootstrap original ported to Jekyll.","key_features":["Post Header Images","Clean Design","GitHub Pages","Bootstrap Based"],"card_description":"Distraction-free blog with full-width header images per post.","category":"Blog","card_image":"/assets/images/themes/clean-blog-card.webp","theme_screenshots":["/assets/images/themes/clean-blog-screenshot.webp","/assets/images/themes/clean-blog-screenshot-2.webp","/assets/images/themes/clean-blog-screenshot-3.webp"],"demo_url":"https://startbootstrap.github.io/startbootstrap-clean-blog-jekyll/","github_url":"https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll","author":"GitHub Community","github_author_name":"Start Bootstrap","github_author_url":"https://github.com/StartBootstrap","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-10-01","added_at":"2026-02-25","popular":true,"trending":false,"bestseller":false,"version":"6.0.9","license":"MIT","stars":2800,"forks":8100,"features":["Full-width header image per post","Bootstrap 5 based","Disqus comments","Contact form","Social sharing","Pagination"],"slug":"clean-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Chirpy has emerged as one of the most beloved Jekyll themes of the last few years. Where many themes offer either good looks or good features, Chirpy delivers both. Its clean, modern design prioritises readability β€” comfortable line lengths, generous whitespace, and a typographic hierarchy that guides your reader through even the longest technical articles.\n\nThe dark mode implementation is among the best in the Jekyll ecosystem: it respects the operating system preference by default, remembers the user's manual override, and transitions smoothly without a flash of unstyled content.\n\n**Who is it for?** Technical bloggers, developers writing tutorials, and anyone publishing long-form content who wants their readers to have a genuinely great experience.\n","url":"/themes/chirpy/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Chirpy Jekyll Theme","description":"A polished, feature-rich blog theme with dark mode, full-text search, reading time, table of contents, and PWA support. One of the fastest-growing Jekyll themes.","key_features":["Dark Mode","Full-Text Search","PWA Support","Table of Contents"],"card_description":"Feature-rich blog with dark mode, search, TOC, and PWA support.","category":"Blog","card_image":"/assets/images/themes/chirpy-card.webp","theme_screenshots":["/assets/images/themes/chirpy-screenshot.webp","/assets/images/themes/chirpy-screenshot-2.webp","/assets/images/themes/chirpy-screenshot-3.webp"],"demo_url":"https://chirpy.cotes.page/","github_url":"https://github.com/cotes2020/jekyll-theme-chirpy","author":"GitHub Community","github_author_name":"Cotes Chung","github_author_url":"https://github.com/cotes2020","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-archives","jekyll-paginate-v2"],"updated_at":"2024-04-01","added_at":"2026-01-05","popular":true,"trending":true,"bestseller":false,"version":"7.1.0","license":"MIT","stars":9800,"forks":1900,"features":["Light and dark mode toggle","Full-text Lunr.js search","Automatic table of contents","Reading time estimate per post","Progressive Web App (PWA) support","Disqus and giscus comments","Google Analytics and GoatCounter","SEO optimised with structured data","Pinned posts","Code syntax highlighting with copy button"],"slug":"chirpy","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Chalk stands out in the crowded minimal blog space by adding just enough polish to feel premium without feeling heavy. The sidebar layout makes good use of horizontal space on desktop, and the subtle CSS animations β€” hover states, transitions, loading effects β€” give the whole site a crafted, alive feeling.\n\nThe built-in Lunr.js search and category filtering are genuinely useful, and the theme's careful attention to cross-browser consistency means it looks right everywhere.\n\n**Who is it for?** Developers and bloggers who want a minimal aesthetic with a bit more visual refinement and user-friendly features like search and category browsing.\n","url":"/themes/chalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Chalk Jekyll Theme","description":"A high quality, completely customisable Jekyll blog theme. Features an elegant two-column layout, full-text search, category filtering, and subtle animations that make the experience feel alive.","key_features":["Full-Text Search","Tag Filtering","Subtle Animations","Category Pages"],"card_description":"Elegant two-column blog with full-text search and category filtering.","category":"Blog","card_image":"/assets/images/themes/chalk-card.webp","theme_screenshots":["/assets/images/themes/chalk-screenshot.webp","/assets/images/themes/chalk-screenshot-2.webp","/assets/images/themes/chalk-screenshot-3.webp"],"demo_url":"https://chalk.nielsenramon.com/","github_url":"https://github.com/nielsenramon/chalk","author":"GitHub Community","github_author_name":"nielsenramon","github_author_url":"https://github.com/nielsenramon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"2.3.0","license":"MIT","stars":1300,"forks":350,"features":["Two-column layout with elegant sidebar","Full-text search powered by Lunr.js","Category filtering on the post listing","Subtle CSS animations throughout","Cross browser compatible","Disqus comments","Google Analytics","Apple touch icon support","Environment-based configuration","SVG social icons"],"slug":"chalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/chirpy.md","relative_path":"_themes/chirpy.md","excerpt":"<p>Chirpy has emerged as one of the most beloved Jekyll themes of the last few years. Where many themes offer either good looks or good features, Chirpy delivers both. Its clean, modern design prioritises readability β€” comfortable line lengths, generous whitespace, and a typographic hierarchy that guides your reader through even the longest technical articles.</p>\n\n","previous":{"path":"_themes/chalk.md","relative_path":"_themes/chalk.md","excerpt":"<p>Chalk stands out in the crowded minimal blog space by adding just enough polish to feel premium without feeling heavy. The sidebar layout makes good use of horizontal space on desktop, and the subtle CSS animations β€” hover states, transitions, loading effects β€” give the whole site a crafted, alive feeling.</p>\n\n","previous":{"path":"_themes/centrarium.md","relative_path":"_themes/centrarium.md","id":"/themes/centrarium","collection":"themes","url":"/themes/centrarium/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Centrarium Jekyll Theme","description":"A simple, classy Jekyll blog theme with a large header image, featured posts, category pages, and Google Analytics integration.","key_features":["Featured Images","Category Pages","Analytics Ready","GitHub Pages"],"card_description":"Classy blog theme with large header images and featured posts.","category":"Blog","card_image":"/assets/images/themes/centrarium-card.webp","theme_screenshots":["/assets/images/themes/centrarium-screenshot.webp","/assets/images/themes/centrarium-screenshot-2.webp","/assets/images/themes/centrarium-screenshot-3.webp"],"demo_url":"https://bencentra.com/centrarium/","github_url":"https://github.com/bencentra/centrarium","author":"GitHub Community","github_author_name":"bencentra","github_author_url":"https://github.com/bencentra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-15","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":444,"forks":251,"features":["Large hero header image","Featured post support","Category archive pages","Tag archive pages","Disqus comments","Google Analytics","Social share buttons","Paginated post list","GitHub Pages compatible","Responsive design"],"slug":"centrarium","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/chalk","collection":"themes","next":{"path":"_themes/chirpy.md","relative_path":"_themes/chirpy.md","id":"/themes/chirpy","collection":"themes","url":"/themes/chirpy/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Chirpy Jekyll Theme","description":"A polished, feature-rich blog theme with dark mode, full-text search, reading time, table of contents, and PWA support. One of the fastest-growing Jekyll themes.","key_features":["Dark Mode","Full-Text Search","PWA Support","Table of Contents"],"card_description":"Feature-rich blog with dark mode, search, TOC, and PWA support.","category":"Blog","card_image":"/assets/images/themes/chirpy-card.webp","theme_screenshots":["/assets/images/themes/chirpy-screenshot.webp","/assets/images/themes/chirpy-screenshot-2.webp","/assets/images/themes/chirpy-screenshot-3.webp"],"demo_url":"https://chirpy.cotes.page/","github_url":"https://github.com/cotes2020/jekyll-theme-chirpy","author":"GitHub Community","github_author_name":"Cotes Chung","github_author_url":"https://github.com/cotes2020","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-archives","jekyll-paginate-v2"],"updated_at":"2024-04-01","added_at":"2026-01-05","popular":true,"trending":true,"bestseller":false,"version":"7.1.0","license":"MIT","stars":9800,"forks":1900,"features":["Light and dark mode toggle","Full-text Lunr.js search","Automatic table of contents","Reading time estimate per post","Progressive Web App (PWA) support","Disqus and giscus comments","Google Analytics and GoatCounter","SEO optimised with structured data","Pinned posts","Code syntax highlighting with copy button"],"slug":"chirpy","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Chalk stands out in the crowded minimal blog space by adding just enough polish to feel premium without feeling heavy. The sidebar layout makes good use of horizontal space on desktop, and the subtle CSS animations β€” hover states, transitions, loading effects β€” give the whole site a crafted, alive feeling.\n\nThe built-in Lunr.js search and category filtering are genuinely useful, and the theme's careful attention to cross-browser consistency means it looks right everywhere.\n\n**Who is it for?** Developers and bloggers who want a minimal aesthetic with a bit more visual refinement and user-friendly features like search and category browsing.\n","url":"/themes/chalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Chalk Jekyll Theme","description":"A high quality, completely customisable Jekyll blog theme. Features an elegant two-column layout, full-text search, category filtering, and subtle animations that make the experience feel alive.","key_features":["Full-Text Search","Tag Filtering","Subtle Animations","Category Pages"],"card_description":"Elegant two-column blog with full-text search and category filtering.","category":"Blog","card_image":"/assets/images/themes/chalk-card.webp","theme_screenshots":["/assets/images/themes/chalk-screenshot.webp","/assets/images/themes/chalk-screenshot-2.webp","/assets/images/themes/chalk-screenshot-3.webp"],"demo_url":"https://chalk.nielsenramon.com/","github_url":"https://github.com/nielsenramon/chalk","author":"GitHub Community","github_author_name":"nielsenramon","github_author_url":"https://github.com/nielsenramon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"2.3.0","license":"MIT","stars":1300,"forks":350,"features":["Two-column layout with elegant sidebar","Full-text search powered by Lunr.js","Category filtering on the post listing","Subtle CSS animations throughout","Cross browser compatible","Disqus comments","Google Analytics","Apple touch icon support","Environment-based configuration","SVG social icons"],"slug":"chalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/chirpy","collection":"themes","next":{"path":"_themes/clean-blog.md","relative_path":"_themes/clean-blog.md","excerpt":"<p>Clean Blog is a straightforward, polished blog theme built on Bootstrap 5. Its signature feature is the full-width header image on every post β€” it gives each article its own visual identity without requiring any special setup.</p>\n\n","previous":{"path":"_themes/chirpy.md","relative_path":"_themes/chirpy.md","id":"/themes/chirpy","collection":"themes","url":"/themes/chirpy/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Chirpy Jekyll Theme","description":"A polished, feature-rich blog theme with dark mode, full-text search, reading time, table of contents, and PWA support. One of the fastest-growing Jekyll themes.","key_features":["Dark Mode","Full-Text Search","PWA Support","Table of Contents"],"card_description":"Feature-rich blog with dark mode, search, TOC, and PWA support.","category":"Blog","card_image":"/assets/images/themes/chirpy-card.webp","theme_screenshots":["/assets/images/themes/chirpy-screenshot.webp","/assets/images/themes/chirpy-screenshot-2.webp","/assets/images/themes/chirpy-screenshot-3.webp"],"demo_url":"https://chirpy.cotes.page/","github_url":"https://github.com/cotes2020/jekyll-theme-chirpy","author":"GitHub Community","github_author_name":"Cotes Chung","github_author_url":"https://github.com/cotes2020","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-archives","jekyll-paginate-v2"],"updated_at":"2024-04-01","added_at":"2026-01-05","popular":true,"trending":true,"bestseller":false,"version":"7.1.0","license":"MIT","stars":9800,"forks":1900,"features":["Light and dark mode toggle","Full-text Lunr.js search","Automatic table of contents","Reading time estimate per post","Progressive Web App (PWA) support","Disqus and giscus comments","Google Analytics and GoatCounter","SEO optimised with structured data","Pinned posts","Code syntax highlighting with copy button"],"slug":"chirpy","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/clean-blog","collection":"themes","next":{"path":"_themes/contrast.md","relative_path":"_themes/contrast.md","id":"/themes/contrast","collection":"themes","url":"/themes/contrast/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Contrast Jekyll Theme","description":"A simple, minimal Jekyll blog theme with strong typographic contrast, clean post listings, and support for tags and pagination.","key_features":["High Contrast","Tag Support","Minimal Design","Fast Loading"],"card_description":"Minimal blog with strong typographic contrast and tag support.","category":"Blog","card_image":"/assets/images/themes/contrast-card.webp","theme_screenshots":["/assets/images/themes/contrast-screenshot.webp","/assets/images/themes/contrast-screenshot-2.webp","/assets/images/themes/contrast-screenshot-3.webp"],"demo_url":"https://niklasbuschmann.github.io/contrast/","github_url":"https://github.com/niklasbuschmann/contrast","author":"GitHub Community","github_author_name":"niklasbuschmann","github_author_url":"https://github.com/niklasbuschmann","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-08-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":446,"forks":199,"features":["High contrast typography","Minimal navigation","Tag archive pages","Paginated post list","Clean post layout","RSS feed","GitHub Pages compatible","Fast load times","No JavaScript required","Mobile friendly"],"slug":"contrast","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Clean Blog is a straightforward, polished blog theme built on Bootstrap 5. Its signature feature is the full-width header image on every post β€” it gives each article its own visual identity without requiring any special setup.\n\nPorted from Start Bootstrap's original HTML template, it's one of the most forked Jekyll themes on GitHub.\n\n**Who is it for?** Bloggers who want a classic, reader-friendly blog layout with strong visual post headers.\n","url":"/themes/clean-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Clean Blog Jekyll Theme","description":"A clean, distraction-free blog theme with full-width header images per post. A Start Bootstrap original ported to Jekyll.","key_features":["Post Header Images","Clean Design","GitHub Pages","Bootstrap Based"],"card_description":"Distraction-free blog with full-width header images per post.","category":"Blog","card_image":"/assets/images/themes/clean-blog-card.webp","theme_screenshots":["/assets/images/themes/clean-blog-screenshot.webp","/assets/images/themes/clean-blog-screenshot-2.webp","/assets/images/themes/clean-blog-screenshot-3.webp"],"demo_url":"https://startbootstrap.github.io/startbootstrap-clean-blog-jekyll/","github_url":"https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll","author":"GitHub Community","github_author_name":"Start Bootstrap","github_author_url":"https://github.com/StartBootstrap","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-10-01","added_at":"2026-02-25","popular":true,"trending":false,"bestseller":false,"version":"6.0.9","license":"MIT","stars":2800,"forks":8100,"features":["Full-width header image per post","Bootstrap 5 based","Disqus comments","Contact form","Social sharing","Pagination"],"slug":"clean-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Chirpy has emerged as one of the most beloved Jekyll themes of the last few years. Where many themes offer either good looks or good features, Chirpy delivers both. Its clean, modern design prioritises readability β€” comfortable line lengths, generous whitespace, and a typographic hierarchy that guides your reader through even the longest technical articles.\n\nThe dark mode implementation is among the best in the Jekyll ecosystem: it respects the operating system preference by default, remembers the user's manual override, and transitions smoothly without a flash of unstyled content.\n\n**Who is it for?** Technical bloggers, developers writing tutorials, and anyone publishing long-form content who wants their readers to have a genuinely great experience.\n","url":"/themes/chirpy/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Chirpy Jekyll Theme","description":"A polished, feature-rich blog theme with dark mode, full-text search, reading time, table of contents, and PWA support. One of the fastest-growing Jekyll themes.","key_features":["Dark Mode","Full-Text Search","PWA Support","Table of Contents"],"card_description":"Feature-rich blog with dark mode, search, TOC, and PWA support.","category":"Blog","card_image":"/assets/images/themes/chirpy-card.webp","theme_screenshots":["/assets/images/themes/chirpy-screenshot.webp","/assets/images/themes/chirpy-screenshot-2.webp","/assets/images/themes/chirpy-screenshot-3.webp"],"demo_url":"https://chirpy.cotes.page/","github_url":"https://github.com/cotes2020/jekyll-theme-chirpy","author":"GitHub Community","github_author_name":"Cotes Chung","github_author_url":"https://github.com/cotes2020","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-archives","jekyll-paginate-v2"],"updated_at":"2024-04-01","added_at":"2026-01-05","popular":true,"trending":true,"bestseller":false,"version":"7.1.0","license":"MIT","stars":9800,"forks":1900,"features":["Light and dark mode toggle","Full-text Lunr.js search","Automatic table of contents","Reading time estimate per post","Progressive Web App (PWA) support","Disqus and giscus comments","Google Analytics and GoatCounter","SEO optimised with structured data","Pinned posts","Code syntax highlighting with copy button"],"slug":"chirpy","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/clean-blog.md","relative_path":"_themes/clean-blog.md","excerpt":"<p>Clean Blog is a straightforward, polished blog theme built on Bootstrap 5. Its signature feature is the full-width header image on every post β€” it gives each article its own visual identity without requiring any special setup.</p>\n\n","previous":{"path":"_themes/chirpy.md","relative_path":"_themes/chirpy.md","excerpt":"<p>Chirpy has emerged as one of the most beloved Jekyll themes of the last few years. Where many themes offer either good looks or good features, Chirpy delivers both. Its clean, modern design prioritises readability β€” comfortable line lengths, generous whitespace, and a typographic hierarchy that guides your reader through even the longest technical articles.</p>\n\n","previous":{"path":"_themes/chalk.md","relative_path":"_themes/chalk.md","id":"/themes/chalk","collection":"themes","url":"/themes/chalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Chalk Jekyll Theme","description":"A high quality, completely customisable Jekyll blog theme. Features an elegant two-column layout, full-text search, category filtering, and subtle animations that make the experience feel alive.","key_features":["Full-Text Search","Tag Filtering","Subtle Animations","Category Pages"],"card_description":"Elegant two-column blog with full-text search and category filtering.","category":"Blog","card_image":"/assets/images/themes/chalk-card.webp","theme_screenshots":["/assets/images/themes/chalk-screenshot.webp","/assets/images/themes/chalk-screenshot-2.webp","/assets/images/themes/chalk-screenshot-3.webp"],"demo_url":"https://chalk.nielsenramon.com/","github_url":"https://github.com/nielsenramon/chalk","author":"GitHub Community","github_author_name":"nielsenramon","github_author_url":"https://github.com/nielsenramon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"2.3.0","license":"MIT","stars":1300,"forks":350,"features":["Two-column layout with elegant sidebar","Full-text search powered by Lunr.js","Category filtering on the post listing","Subtle CSS animations throughout","Cross browser compatible","Disqus comments","Google Analytics","Apple touch icon support","Environment-based configuration","SVG social icons"],"slug":"chalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/chirpy","collection":"themes","next":{"path":"_themes/clean-blog.md","relative_path":"_themes/clean-blog.md","id":"/themes/clean-blog","collection":"themes","url":"/themes/clean-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Clean Blog Jekyll Theme","description":"A clean, distraction-free blog theme with full-width header images per post. A Start Bootstrap original ported to Jekyll.","key_features":["Post Header Images","Clean Design","GitHub Pages","Bootstrap Based"],"card_description":"Distraction-free blog with full-width header images per post.","category":"Blog","card_image":"/assets/images/themes/clean-blog-card.webp","theme_screenshots":["/assets/images/themes/clean-blog-screenshot.webp","/assets/images/themes/clean-blog-screenshot-2.webp","/assets/images/themes/clean-blog-screenshot-3.webp"],"demo_url":"https://startbootstrap.github.io/startbootstrap-clean-blog-jekyll/","github_url":"https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll","author":"GitHub Community","github_author_name":"Start Bootstrap","github_author_url":"https://github.com/StartBootstrap","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-10-01","added_at":"2026-02-25","popular":true,"trending":false,"bestseller":false,"version":"6.0.9","license":"MIT","stars":2800,"forks":8100,"features":["Full-width header image per post","Bootstrap 5 based","Disqus comments","Contact form","Social sharing","Pagination"],"slug":"clean-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Chirpy has emerged as one of the most beloved Jekyll themes of the last few years. Where many themes offer either good looks or good features, Chirpy delivers both. Its clean, modern design prioritises readability β€” comfortable line lengths, generous whitespace, and a typographic hierarchy that guides your reader through even the longest technical articles.\n\nThe dark mode implementation is among the best in the Jekyll ecosystem: it respects the operating system preference by default, remembers the user's manual override, and transitions smoothly without a flash of unstyled content.\n\n**Who is it for?** Technical bloggers, developers writing tutorials, and anyone publishing long-form content who wants their readers to have a genuinely great experience.\n","url":"/themes/chirpy/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Chirpy Jekyll Theme","description":"A polished, feature-rich blog theme with dark mode, full-text search, reading time, table of contents, and PWA support. One of the fastest-growing Jekyll themes.","key_features":["Dark Mode","Full-Text Search","PWA Support","Table of Contents"],"card_description":"Feature-rich blog with dark mode, search, TOC, and PWA support.","category":"Blog","card_image":"/assets/images/themes/chirpy-card.webp","theme_screenshots":["/assets/images/themes/chirpy-screenshot.webp","/assets/images/themes/chirpy-screenshot-2.webp","/assets/images/themes/chirpy-screenshot-3.webp"],"demo_url":"https://chirpy.cotes.page/","github_url":"https://github.com/cotes2020/jekyll-theme-chirpy","author":"GitHub Community","github_author_name":"Cotes Chung","github_author_url":"https://github.com/cotes2020","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-archives","jekyll-paginate-v2"],"updated_at":"2024-04-01","added_at":"2026-01-05","popular":true,"trending":true,"bestseller":false,"version":"7.1.0","license":"MIT","stars":9800,"forks":1900,"features":["Light and dark mode toggle","Full-text Lunr.js search","Automatic table of contents","Reading time estimate per post","Progressive Web App (PWA) support","Disqus and giscus comments","Google Analytics and GoatCounter","SEO optimised with structured data","Pinned posts","Code syntax highlighting with copy button"],"slug":"chirpy","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/clean-blog","collection":"themes","next":{"path":"_themes/contrast.md","relative_path":"_themes/contrast.md","excerpt":"<p>Contrast lives up to its name β€” bold, high-contrast typography makes every post immediately legible. The design is stripped back to the bare essentials: a post list, individual post pages, and tag archives.</p>\n\n","previous":{"path":"_themes/clean-blog.md","relative_path":"_themes/clean-blog.md","id":"/themes/clean-blog","collection":"themes","url":"/themes/clean-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Clean Blog Jekyll Theme","description":"A clean, distraction-free blog theme with full-width header images per post. A Start Bootstrap original ported to Jekyll.","key_features":["Post Header Images","Clean Design","GitHub Pages","Bootstrap Based"],"card_description":"Distraction-free blog with full-width header images per post.","category":"Blog","card_image":"/assets/images/themes/clean-blog-card.webp","theme_screenshots":["/assets/images/themes/clean-blog-screenshot.webp","/assets/images/themes/clean-blog-screenshot-2.webp","/assets/images/themes/clean-blog-screenshot-3.webp"],"demo_url":"https://startbootstrap.github.io/startbootstrap-clean-blog-jekyll/","github_url":"https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll","author":"GitHub Community","github_author_name":"Start Bootstrap","github_author_url":"https://github.com/StartBootstrap","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-10-01","added_at":"2026-02-25","popular":true,"trending":false,"bestseller":false,"version":"6.0.9","license":"MIT","stars":2800,"forks":8100,"features":["Full-width header image per post","Bootstrap 5 based","Disqus comments","Contact form","Social sharing","Pagination"],"slug":"clean-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/contrast","collection":"themes","next":{"path":"_themes/creative.md","relative_path":"_themes/creative.md","id":"/themes/creative","collection":"themes","url":"/themes/creative/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Creative Jekyll Theme","description":"A one-page Bootstrap landing page Jekyll theme with a fullscreen hero image, smooth scroll navigation, and portfolio sections.","key_features":["One-Page Layout","Smooth Scroll","Portfolio Sections","Bootstrap Based"],"card_description":"One-page Bootstrap landing page with fullscreen hero and portfolio.","category":"Landing Page","card_image":"/assets/images/themes/creative-card.webp","theme_screenshots":["/assets/images/themes/creative-screenshot.webp","/assets/images/themes/creative-screenshot-2.webp","/assets/images/themes/creative-screenshot-3.webp"],"demo_url":"https://volny.github.io/creative-theme-jekyll/","github_url":"https://github.com/volny/creative-theme-jekyll","author":"GitHub Community","github_author_name":"volny","github_author_url":"https://github.com/volny","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":545,"forks":397,"features":["Fullscreen hero image","Smooth scroll navigation","Portfolio grid section","Services section","Call-to-action buttons","Bootstrap 3 powered","Animated scroll effects","Contact section","GitHub Pages compatible","One-page layout"],"slug":"creative","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Contrast lives up to its name β€” bold, high-contrast typography makes every post immediately legible. The design is stripped back to the bare essentials: a post list, individual post pages, and tag archives.\n\nWith no JavaScript dependencies, pages load nearly instantly.\n\n**Who is it for?** Writers who prioritise readability above all else and want a featherweight theme with zero bloat.\n","url":"/themes/contrast/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Contrast Jekyll Theme","description":"A simple, minimal Jekyll blog theme with strong typographic contrast, clean post listings, and support for tags and pagination.","key_features":["High Contrast","Tag Support","Minimal Design","Fast Loading"],"card_description":"Minimal blog with strong typographic contrast and tag support.","category":"Blog","card_image":"/assets/images/themes/contrast-card.webp","theme_screenshots":["/assets/images/themes/contrast-screenshot.webp","/assets/images/themes/contrast-screenshot-2.webp","/assets/images/themes/contrast-screenshot-3.webp"],"demo_url":"https://niklasbuschmann.github.io/contrast/","github_url":"https://github.com/niklasbuschmann/contrast","author":"GitHub Community","github_author_name":"niklasbuschmann","github_author_url":"https://github.com/niklasbuschmann","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-08-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":446,"forks":199,"features":["High contrast typography","Minimal navigation","Tag archive pages","Paginated post list","Clean post layout","RSS feed","GitHub Pages compatible","Fast load times","No JavaScript required","Mobile friendly"],"slug":"contrast","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Clean Blog is a straightforward, polished blog theme built on Bootstrap 5. Its signature feature is the full-width header image on every post β€” it gives each article its own visual identity without requiring any special setup.\n\nPorted from Start Bootstrap's original HTML template, it's one of the most forked Jekyll themes on GitHub.\n\n**Who is it for?** Bloggers who want a classic, reader-friendly blog layout with strong visual post headers.\n","url":"/themes/clean-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Clean Blog Jekyll Theme","description":"A clean, distraction-free blog theme with full-width header images per post. A Start Bootstrap original ported to Jekyll.","key_features":["Post Header Images","Clean Design","GitHub Pages","Bootstrap Based"],"card_description":"Distraction-free blog with full-width header images per post.","category":"Blog","card_image":"/assets/images/themes/clean-blog-card.webp","theme_screenshots":["/assets/images/themes/clean-blog-screenshot.webp","/assets/images/themes/clean-blog-screenshot-2.webp","/assets/images/themes/clean-blog-screenshot-3.webp"],"demo_url":"https://startbootstrap.github.io/startbootstrap-clean-blog-jekyll/","github_url":"https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll","author":"GitHub Community","github_author_name":"Start Bootstrap","github_author_url":"https://github.com/StartBootstrap","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-10-01","added_at":"2026-02-25","popular":true,"trending":false,"bestseller":false,"version":"6.0.9","license":"MIT","stars":2800,"forks":8100,"features":["Full-width header image per post","Bootstrap 5 based","Disqus comments","Contact form","Social sharing","Pagination"],"slug":"clean-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/contrast.md","relative_path":"_themes/contrast.md","excerpt":"<p>Contrast lives up to its name β€” bold, high-contrast typography makes every post immediately legible. The design is stripped back to the bare essentials: a post list, individual post pages, and tag archives.</p>\n\n","previous":{"path":"_themes/clean-blog.md","relative_path":"_themes/clean-blog.md","excerpt":"<p>Clean Blog is a straightforward, polished blog theme built on Bootstrap 5. Its signature feature is the full-width header image on every post β€” it gives each article its own visual identity without requiring any special setup.</p>\n\n","previous":{"path":"_themes/chirpy.md","relative_path":"_themes/chirpy.md","id":"/themes/chirpy","collection":"themes","url":"/themes/chirpy/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Chirpy Jekyll Theme","description":"A polished, feature-rich blog theme with dark mode, full-text search, reading time, table of contents, and PWA support. One of the fastest-growing Jekyll themes.","key_features":["Dark Mode","Full-Text Search","PWA Support","Table of Contents"],"card_description":"Feature-rich blog with dark mode, search, TOC, and PWA support.","category":"Blog","card_image":"/assets/images/themes/chirpy-card.webp","theme_screenshots":["/assets/images/themes/chirpy-screenshot.webp","/assets/images/themes/chirpy-screenshot-2.webp","/assets/images/themes/chirpy-screenshot-3.webp"],"demo_url":"https://chirpy.cotes.page/","github_url":"https://github.com/cotes2020/jekyll-theme-chirpy","author":"GitHub Community","github_author_name":"Cotes Chung","github_author_url":"https://github.com/cotes2020","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-archives","jekyll-paginate-v2"],"updated_at":"2024-04-01","added_at":"2026-01-05","popular":true,"trending":true,"bestseller":false,"version":"7.1.0","license":"MIT","stars":9800,"forks":1900,"features":["Light and dark mode toggle","Full-text Lunr.js search","Automatic table of contents","Reading time estimate per post","Progressive Web App (PWA) support","Disqus and giscus comments","Google Analytics and GoatCounter","SEO optimised with structured data","Pinned posts","Code syntax highlighting with copy button"],"slug":"chirpy","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/clean-blog","collection":"themes","next":{"path":"_themes/contrast.md","relative_path":"_themes/contrast.md","id":"/themes/contrast","collection":"themes","url":"/themes/contrast/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Contrast Jekyll Theme","description":"A simple, minimal Jekyll blog theme with strong typographic contrast, clean post listings, and support for tags and pagination.","key_features":["High Contrast","Tag Support","Minimal Design","Fast Loading"],"card_description":"Minimal blog with strong typographic contrast and tag support.","category":"Blog","card_image":"/assets/images/themes/contrast-card.webp","theme_screenshots":["/assets/images/themes/contrast-screenshot.webp","/assets/images/themes/contrast-screenshot-2.webp","/assets/images/themes/contrast-screenshot-3.webp"],"demo_url":"https://niklasbuschmann.github.io/contrast/","github_url":"https://github.com/niklasbuschmann/contrast","author":"GitHub Community","github_author_name":"niklasbuschmann","github_author_url":"https://github.com/niklasbuschmann","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-08-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":446,"forks":199,"features":["High contrast typography","Minimal navigation","Tag archive pages","Paginated post list","Clean post layout","RSS feed","GitHub Pages compatible","Fast load times","No JavaScript required","Mobile friendly"],"slug":"contrast","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Clean Blog is a straightforward, polished blog theme built on Bootstrap 5. Its signature feature is the full-width header image on every post β€” it gives each article its own visual identity without requiring any special setup.\n\nPorted from Start Bootstrap's original HTML template, it's one of the most forked Jekyll themes on GitHub.\n\n**Who is it for?** Bloggers who want a classic, reader-friendly blog layout with strong visual post headers.\n","url":"/themes/clean-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Clean Blog Jekyll Theme","description":"A clean, distraction-free blog theme with full-width header images per post. A Start Bootstrap original ported to Jekyll.","key_features":["Post Header Images","Clean Design","GitHub Pages","Bootstrap Based"],"card_description":"Distraction-free blog with full-width header images per post.","category":"Blog","card_image":"/assets/images/themes/clean-blog-card.webp","theme_screenshots":["/assets/images/themes/clean-blog-screenshot.webp","/assets/images/themes/clean-blog-screenshot-2.webp","/assets/images/themes/clean-blog-screenshot-3.webp"],"demo_url":"https://startbootstrap.github.io/startbootstrap-clean-blog-jekyll/","github_url":"https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll","author":"GitHub Community","github_author_name":"Start Bootstrap","github_author_url":"https://github.com/StartBootstrap","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-10-01","added_at":"2026-02-25","popular":true,"trending":false,"bestseller":false,"version":"6.0.9","license":"MIT","stars":2800,"forks":8100,"features":["Full-width header image per post","Bootstrap 5 based","Disqus comments","Contact form","Social sharing","Pagination"],"slug":"clean-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/contrast","collection":"themes","next":{"path":"_themes/creative.md","relative_path":"_themes/creative.md","excerpt":"<p>Creative is a Jekyll adaptation of Start Bootstrap’s Creative theme β€” a bold, fullscreen one-pager built for agencies, studios, and freelancers making a strong first impression.</p>\n\n","previous":{"path":"_themes/contrast.md","relative_path":"_themes/contrast.md","id":"/themes/contrast","collection":"themes","url":"/themes/contrast/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Contrast Jekyll Theme","description":"A simple, minimal Jekyll blog theme with strong typographic contrast, clean post listings, and support for tags and pagination.","key_features":["High Contrast","Tag Support","Minimal Design","Fast Loading"],"card_description":"Minimal blog with strong typographic contrast and tag support.","category":"Blog","card_image":"/assets/images/themes/contrast-card.webp","theme_screenshots":["/assets/images/themes/contrast-screenshot.webp","/assets/images/themes/contrast-screenshot-2.webp","/assets/images/themes/contrast-screenshot-3.webp"],"demo_url":"https://niklasbuschmann.github.io/contrast/","github_url":"https://github.com/niklasbuschmann/contrast","author":"GitHub Community","github_author_name":"niklasbuschmann","github_author_url":"https://github.com/niklasbuschmann","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-08-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":446,"forks":199,"features":["High contrast typography","Minimal navigation","Tag archive pages","Paginated post list","Clean post layout","RSS feed","GitHub Pages compatible","Fast load times","No JavaScript required","Mobile friendly"],"slug":"contrast","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/creative","collection":"themes","next":{"path":"_themes/devlopr-jekyll.md","relative_path":"_themes/devlopr-jekyll.md","id":"/themes/devlopr-jekyll","collection":"themes","url":"/themes/devlopr-jekyll/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Devlopr Jekyll Theme","description":"A feature-rich developer portfolio Jekyll theme with an integrated blog, skills section, CMS support, and dark mode built in.","key_features":["Dark Mode","CMS Support","Skills Section","Portfolio & Blog"],"card_description":"Developer portfolio with blog, skills section, and dark mode built in.","category":"Portfolio","card_image":"/assets/images/themes/devlopr-jekyll-card.webp","theme_screenshots":["/assets/images/themes/devlopr-jekyll-screenshot.webp","/assets/images/themes/devlopr-jekyll-screenshot-2.webp","/assets/images/themes/devlopr-jekyll-screenshot-3.webp"],"demo_url":"https://devlopr.netlify.app/","github_url":"https://github.com/sujaykundu777/devlopr-jekyll","author":"GitHub Community","github_author_name":"sujaykundu777","github_author_url":"https://github.com/sujaykundu777","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"4.4.0","license":"MIT","stars":450,"forks":400,"features":["Built-in CMS support (Netlify CMS + Forestry)","Dark mode toggle","Developer portfolio section","Blog with categories and tags","Projects showcase grid","Skills and timeline sections","Newsletter subscription support","Disqus and Utterances comments","Google Analytics","GitHub Pages compatible"],"slug":"devlopr-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Creative is a Jekyll adaptation of Start Bootstrap's Creative theme β€” a bold, fullscreen one-pager built for agencies, studios, and freelancers making a strong first impression.\n\nA large hero image commands attention above the fold, while smooth-scroll navigation guides visitors through portfolio, services, and contact sections below.\n\n**Who is it for?** Agencies and freelancers who need a striking one-page landing site that showcases their portfolio and services.\n","url":"/themes/creative/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Creative Jekyll Theme","description":"A one-page Bootstrap landing page Jekyll theme with a fullscreen hero image, smooth scroll navigation, and portfolio sections.","key_features":["One-Page Layout","Smooth Scroll","Portfolio Sections","Bootstrap Based"],"card_description":"One-page Bootstrap landing page with fullscreen hero and portfolio.","category":"Landing Page","card_image":"/assets/images/themes/creative-card.webp","theme_screenshots":["/assets/images/themes/creative-screenshot.webp","/assets/images/themes/creative-screenshot-2.webp","/assets/images/themes/creative-screenshot-3.webp"],"demo_url":"https://volny.github.io/creative-theme-jekyll/","github_url":"https://github.com/volny/creative-theme-jekyll","author":"GitHub Community","github_author_name":"volny","github_author_url":"https://github.com/volny","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":545,"forks":397,"features":["Fullscreen hero image","Smooth scroll navigation","Portfolio grid section","Services section","Call-to-action buttons","Bootstrap 3 powered","Animated scroll effects","Contact section","GitHub Pages compatible","One-page layout"],"slug":"creative","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Contrast lives up to its name β€” bold, high-contrast typography makes every post immediately legible. The design is stripped back to the bare essentials: a post list, individual post pages, and tag archives.\n\nWith no JavaScript dependencies, pages load nearly instantly.\n\n**Who is it for?** Writers who prioritise readability above all else and want a featherweight theme with zero bloat.\n","url":"/themes/contrast/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Contrast Jekyll Theme","description":"A simple, minimal Jekyll blog theme with strong typographic contrast, clean post listings, and support for tags and pagination.","key_features":["High Contrast","Tag Support","Minimal Design","Fast Loading"],"card_description":"Minimal blog with strong typographic contrast and tag support.","category":"Blog","card_image":"/assets/images/themes/contrast-card.webp","theme_screenshots":["/assets/images/themes/contrast-screenshot.webp","/assets/images/themes/contrast-screenshot-2.webp","/assets/images/themes/contrast-screenshot-3.webp"],"demo_url":"https://niklasbuschmann.github.io/contrast/","github_url":"https://github.com/niklasbuschmann/contrast","author":"GitHub Community","github_author_name":"niklasbuschmann","github_author_url":"https://github.com/niklasbuschmann","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-08-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":446,"forks":199,"features":["High contrast typography","Minimal navigation","Tag archive pages","Paginated post list","Clean post layout","RSS feed","GitHub Pages compatible","Fast load times","No JavaScript required","Mobile friendly"],"slug":"contrast","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/creative.md","relative_path":"_themes/creative.md","excerpt":"<p>Creative is a Jekyll adaptation of Start Bootstrap’s Creative theme β€” a bold, fullscreen one-pager built for agencies, studios, and freelancers making a strong first impression.</p>\n\n","previous":{"path":"_themes/contrast.md","relative_path":"_themes/contrast.md","excerpt":"<p>Contrast lives up to its name β€” bold, high-contrast typography makes every post immediately legible. The design is stripped back to the bare essentials: a post list, individual post pages, and tag archives.</p>\n\n","previous":{"path":"_themes/clean-blog.md","relative_path":"_themes/clean-blog.md","id":"/themes/clean-blog","collection":"themes","url":"/themes/clean-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Clean Blog Jekyll Theme","description":"A clean, distraction-free blog theme with full-width header images per post. A Start Bootstrap original ported to Jekyll.","key_features":["Post Header Images","Clean Design","GitHub Pages","Bootstrap Based"],"card_description":"Distraction-free blog with full-width header images per post.","category":"Blog","card_image":"/assets/images/themes/clean-blog-card.webp","theme_screenshots":["/assets/images/themes/clean-blog-screenshot.webp","/assets/images/themes/clean-blog-screenshot-2.webp","/assets/images/themes/clean-blog-screenshot-3.webp"],"demo_url":"https://startbootstrap.github.io/startbootstrap-clean-blog-jekyll/","github_url":"https://github.com/StartBootstrap/startbootstrap-clean-blog-jekyll","author":"GitHub Community","github_author_name":"Start Bootstrap","github_author_url":"https://github.com/StartBootstrap","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-10-01","added_at":"2026-02-25","popular":true,"trending":false,"bestseller":false,"version":"6.0.9","license":"MIT","stars":2800,"forks":8100,"features":["Full-width header image per post","Bootstrap 5 based","Disqus comments","Contact form","Social sharing","Pagination"],"slug":"clean-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/contrast","collection":"themes","next":{"path":"_themes/creative.md","relative_path":"_themes/creative.md","id":"/themes/creative","collection":"themes","url":"/themes/creative/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Creative Jekyll Theme","description":"A one-page Bootstrap landing page Jekyll theme with a fullscreen hero image, smooth scroll navigation, and portfolio sections.","key_features":["One-Page Layout","Smooth Scroll","Portfolio Sections","Bootstrap Based"],"card_description":"One-page Bootstrap landing page with fullscreen hero and portfolio.","category":"Landing Page","card_image":"/assets/images/themes/creative-card.webp","theme_screenshots":["/assets/images/themes/creative-screenshot.webp","/assets/images/themes/creative-screenshot-2.webp","/assets/images/themes/creative-screenshot-3.webp"],"demo_url":"https://volny.github.io/creative-theme-jekyll/","github_url":"https://github.com/volny/creative-theme-jekyll","author":"GitHub Community","github_author_name":"volny","github_author_url":"https://github.com/volny","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":545,"forks":397,"features":["Fullscreen hero image","Smooth scroll navigation","Portfolio grid section","Services section","Call-to-action buttons","Bootstrap 3 powered","Animated scroll effects","Contact section","GitHub Pages compatible","One-page layout"],"slug":"creative","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Contrast lives up to its name β€” bold, high-contrast typography makes every post immediately legible. The design is stripped back to the bare essentials: a post list, individual post pages, and tag archives.\n\nWith no JavaScript dependencies, pages load nearly instantly.\n\n**Who is it for?** Writers who prioritise readability above all else and want a featherweight theme with zero bloat.\n","url":"/themes/contrast/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Contrast Jekyll Theme","description":"A simple, minimal Jekyll blog theme with strong typographic contrast, clean post listings, and support for tags and pagination.","key_features":["High Contrast","Tag Support","Minimal Design","Fast Loading"],"card_description":"Minimal blog with strong typographic contrast and tag support.","category":"Blog","card_image":"/assets/images/themes/contrast-card.webp","theme_screenshots":["/assets/images/themes/contrast-screenshot.webp","/assets/images/themes/contrast-screenshot-2.webp","/assets/images/themes/contrast-screenshot-3.webp"],"demo_url":"https://niklasbuschmann.github.io/contrast/","github_url":"https://github.com/niklasbuschmann/contrast","author":"GitHub Community","github_author_name":"niklasbuschmann","github_author_url":"https://github.com/niklasbuschmann","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-08-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":446,"forks":199,"features":["High contrast typography","Minimal navigation","Tag archive pages","Paginated post list","Clean post layout","RSS feed","GitHub Pages compatible","Fast load times","No JavaScript required","Mobile friendly"],"slug":"contrast","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/creative","collection":"themes","next":{"path":"_themes/devlopr-jekyll.md","relative_path":"_themes/devlopr-jekyll.md","excerpt":"<p>Devlopr stands out from every other Jekyll theme in one important way: it ships with built-in CMS support. You can write and publish blog posts through a browser-based admin interface β€” no terminal, no text editor, no git commits. This makes it genuinely practical for developers who want the speed and security of a static site but the convenience of a CMS for day-to-day content updates.</p>\n\n","previous":{"path":"_themes/creative.md","relative_path":"_themes/creative.md","id":"/themes/creative","collection":"themes","url":"/themes/creative/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Creative Jekyll Theme","description":"A one-page Bootstrap landing page Jekyll theme with a fullscreen hero image, smooth scroll navigation, and portfolio sections.","key_features":["One-Page Layout","Smooth Scroll","Portfolio Sections","Bootstrap Based"],"card_description":"One-page Bootstrap landing page with fullscreen hero and portfolio.","category":"Landing Page","card_image":"/assets/images/themes/creative-card.webp","theme_screenshots":["/assets/images/themes/creative-screenshot.webp","/assets/images/themes/creative-screenshot-2.webp","/assets/images/themes/creative-screenshot-3.webp"],"demo_url":"https://volny.github.io/creative-theme-jekyll/","github_url":"https://github.com/volny/creative-theme-jekyll","author":"GitHub Community","github_author_name":"volny","github_author_url":"https://github.com/volny","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":545,"forks":397,"features":["Fullscreen hero image","Smooth scroll navigation","Portfolio grid section","Services section","Call-to-action buttons","Bootstrap 3 powered","Animated scroll effects","Contact section","GitHub Pages compatible","One-page layout"],"slug":"creative","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/devlopr-jekyll","collection":"themes","next":{"path":"_themes/dinky.md","relative_path":"_themes/dinky.md","id":"/themes/dinky","collection":"themes","url":"/themes/dinky/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Dinky Jekyll Theme","description":"A compact GitHub Pages Jekyll theme with a fixed sidebar and clean layout. Great for small documentation pages and personal project sites.","key_features":["GitHub Pages","Fixed Sidebar","Project Docs","Compact Layout"],"card_description":"Compact GitHub Pages theme with fixed sidebar for small project sites.","category":"Documentation","card_image":"/assets/images/themes/dinky-card.webp","theme_screenshots":["/assets/images/themes/dinky-screenshot.webp","/assets/images/themes/dinky-screenshot-2.webp","/assets/images/themes/dinky-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/dinky/","github_url":"https://github.com/pages-themes/dinky","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Compact sidebar navigation","Bright blue accent colours","Clean documentation layout","Single-line enable via _config.yml","Responsive design","No local Jekyll install needed"],"slug":"dinky","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Devlopr stands out from every other Jekyll theme in one important way: it ships with built-in CMS support. You can write and publish blog posts through a browser-based admin interface β€” no terminal, no text editor, no git commits. This makes it genuinely practical for developers who want the speed and security of a static site but the convenience of a CMS for day-to-day content updates.\n\nBeyond the CMS integration, it's a well-rounded developer portfolio theme with sections for projects, skills, timeline, and a blog β€” all with dark mode support.\n\n**Who is it for?** Developers who want a personal portfolio and blog with CMS-based content editing, so they can write posts from anywhere without a local development environment.\n","url":"/themes/devlopr-jekyll/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Devlopr Jekyll Theme","description":"A feature-rich developer portfolio Jekyll theme with an integrated blog, skills section, CMS support, and dark mode built in.","key_features":["Dark Mode","CMS Support","Skills Section","Portfolio & Blog"],"card_description":"Developer portfolio with blog, skills section, and dark mode built in.","category":"Portfolio","card_image":"/assets/images/themes/devlopr-jekyll-card.webp","theme_screenshots":["/assets/images/themes/devlopr-jekyll-screenshot.webp","/assets/images/themes/devlopr-jekyll-screenshot-2.webp","/assets/images/themes/devlopr-jekyll-screenshot-3.webp"],"demo_url":"https://devlopr.netlify.app/","github_url":"https://github.com/sujaykundu777/devlopr-jekyll","author":"GitHub Community","github_author_name":"sujaykundu777","github_author_url":"https://github.com/sujaykundu777","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"4.4.0","license":"MIT","stars":450,"forks":400,"features":["Built-in CMS support (Netlify CMS + Forestry)","Dark mode toggle","Developer portfolio section","Blog with categories and tags","Projects showcase grid","Skills and timeline sections","Newsletter subscription support","Disqus and Utterances comments","Google Analytics","GitHub Pages compatible"],"slug":"devlopr-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Creative is a Jekyll adaptation of Start Bootstrap's Creative theme β€” a bold, fullscreen one-pager built for agencies, studios, and freelancers making a strong first impression.\n\nA large hero image commands attention above the fold, while smooth-scroll navigation guides visitors through portfolio, services, and contact sections below.\n\n**Who is it for?** Agencies and freelancers who need a striking one-page landing site that showcases their portfolio and services.\n","url":"/themes/creative/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Creative Jekyll Theme","description":"A one-page Bootstrap landing page Jekyll theme with a fullscreen hero image, smooth scroll navigation, and portfolio sections.","key_features":["One-Page Layout","Smooth Scroll","Portfolio Sections","Bootstrap Based"],"card_description":"One-page Bootstrap landing page with fullscreen hero and portfolio.","category":"Landing Page","card_image":"/assets/images/themes/creative-card.webp","theme_screenshots":["/assets/images/themes/creative-screenshot.webp","/assets/images/themes/creative-screenshot-2.webp","/assets/images/themes/creative-screenshot-3.webp"],"demo_url":"https://volny.github.io/creative-theme-jekyll/","github_url":"https://github.com/volny/creative-theme-jekyll","author":"GitHub Community","github_author_name":"volny","github_author_url":"https://github.com/volny","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":545,"forks":397,"features":["Fullscreen hero image","Smooth scroll navigation","Portfolio grid section","Services section","Call-to-action buttons","Bootstrap 3 powered","Animated scroll effects","Contact section","GitHub Pages compatible","One-page layout"],"slug":"creative","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/devlopr-jekyll.md","relative_path":"_themes/devlopr-jekyll.md","excerpt":"<p>Devlopr stands out from every other Jekyll theme in one important way: it ships with built-in CMS support. You can write and publish blog posts through a browser-based admin interface β€” no terminal, no text editor, no git commits. This makes it genuinely practical for developers who want the speed and security of a static site but the convenience of a CMS for day-to-day content updates.</p>\n\n","previous":{"path":"_themes/creative.md","relative_path":"_themes/creative.md","excerpt":"<p>Creative is a Jekyll adaptation of Start Bootstrap’s Creative theme β€” a bold, fullscreen one-pager built for agencies, studios, and freelancers making a strong first impression.</p>\n\n","previous":{"path":"_themes/contrast.md","relative_path":"_themes/contrast.md","id":"/themes/contrast","collection":"themes","url":"/themes/contrast/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Contrast Jekyll Theme","description":"A simple, minimal Jekyll blog theme with strong typographic contrast, clean post listings, and support for tags and pagination.","key_features":["High Contrast","Tag Support","Minimal Design","Fast Loading"],"card_description":"Minimal blog with strong typographic contrast and tag support.","category":"Blog","card_image":"/assets/images/themes/contrast-card.webp","theme_screenshots":["/assets/images/themes/contrast-screenshot.webp","/assets/images/themes/contrast-screenshot-2.webp","/assets/images/themes/contrast-screenshot-3.webp"],"demo_url":"https://niklasbuschmann.github.io/contrast/","github_url":"https://github.com/niklasbuschmann/contrast","author":"GitHub Community","github_author_name":"niklasbuschmann","github_author_url":"https://github.com/niklasbuschmann","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-08-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":446,"forks":199,"features":["High contrast typography","Minimal navigation","Tag archive pages","Paginated post list","Clean post layout","RSS feed","GitHub Pages compatible","Fast load times","No JavaScript required","Mobile friendly"],"slug":"contrast","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/creative","collection":"themes","next":{"path":"_themes/devlopr-jekyll.md","relative_path":"_themes/devlopr-jekyll.md","id":"/themes/devlopr-jekyll","collection":"themes","url":"/themes/devlopr-jekyll/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Devlopr Jekyll Theme","description":"A feature-rich developer portfolio Jekyll theme with an integrated blog, skills section, CMS support, and dark mode built in.","key_features":["Dark Mode","CMS Support","Skills Section","Portfolio & Blog"],"card_description":"Developer portfolio with blog, skills section, and dark mode built in.","category":"Portfolio","card_image":"/assets/images/themes/devlopr-jekyll-card.webp","theme_screenshots":["/assets/images/themes/devlopr-jekyll-screenshot.webp","/assets/images/themes/devlopr-jekyll-screenshot-2.webp","/assets/images/themes/devlopr-jekyll-screenshot-3.webp"],"demo_url":"https://devlopr.netlify.app/","github_url":"https://github.com/sujaykundu777/devlopr-jekyll","author":"GitHub Community","github_author_name":"sujaykundu777","github_author_url":"https://github.com/sujaykundu777","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"4.4.0","license":"MIT","stars":450,"forks":400,"features":["Built-in CMS support (Netlify CMS + Forestry)","Dark mode toggle","Developer portfolio section","Blog with categories and tags","Projects showcase grid","Skills and timeline sections","Newsletter subscription support","Disqus and Utterances comments","Google Analytics","GitHub Pages compatible"],"slug":"devlopr-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Creative is a Jekyll adaptation of Start Bootstrap's Creative theme β€” a bold, fullscreen one-pager built for agencies, studios, and freelancers making a strong first impression.\n\nA large hero image commands attention above the fold, while smooth-scroll navigation guides visitors through portfolio, services, and contact sections below.\n\n**Who is it for?** Agencies and freelancers who need a striking one-page landing site that showcases their portfolio and services.\n","url":"/themes/creative/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Creative Jekyll Theme","description":"A one-page Bootstrap landing page Jekyll theme with a fullscreen hero image, smooth scroll navigation, and portfolio sections.","key_features":["One-Page Layout","Smooth Scroll","Portfolio Sections","Bootstrap Based"],"card_description":"One-page Bootstrap landing page with fullscreen hero and portfolio.","category":"Landing Page","card_image":"/assets/images/themes/creative-card.webp","theme_screenshots":["/assets/images/themes/creative-screenshot.webp","/assets/images/themes/creative-screenshot-2.webp","/assets/images/themes/creative-screenshot-3.webp"],"demo_url":"https://volny.github.io/creative-theme-jekyll/","github_url":"https://github.com/volny/creative-theme-jekyll","author":"GitHub Community","github_author_name":"volny","github_author_url":"https://github.com/volny","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":545,"forks":397,"features":["Fullscreen hero image","Smooth scroll navigation","Portfolio grid section","Services section","Call-to-action buttons","Bootstrap 3 powered","Animated scroll effects","Contact section","GitHub Pages compatible","One-page layout"],"slug":"creative","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/devlopr-jekyll","collection":"themes","next":{"path":"_themes/dinky.md","relative_path":"_themes/dinky.md","excerpt":"<p>Dinky is a compact, sidebar-based GitHub Pages official theme well suited to small-to-medium project documentation sites. Its bright blue accents and tidy layout feel modern and approachable, and the sidebar keeps navigation visible without consuming too much page space.</p>\n\n","previous":{"path":"_themes/devlopr-jekyll.md","relative_path":"_themes/devlopr-jekyll.md","id":"/themes/devlopr-jekyll","collection":"themes","url":"/themes/devlopr-jekyll/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Devlopr Jekyll Theme","description":"A feature-rich developer portfolio Jekyll theme with an integrated blog, skills section, CMS support, and dark mode built in.","key_features":["Dark Mode","CMS Support","Skills Section","Portfolio & Blog"],"card_description":"Developer portfolio with blog, skills section, and dark mode built in.","category":"Portfolio","card_image":"/assets/images/themes/devlopr-jekyll-card.webp","theme_screenshots":["/assets/images/themes/devlopr-jekyll-screenshot.webp","/assets/images/themes/devlopr-jekyll-screenshot-2.webp","/assets/images/themes/devlopr-jekyll-screenshot-3.webp"],"demo_url":"https://devlopr.netlify.app/","github_url":"https://github.com/sujaykundu777/devlopr-jekyll","author":"GitHub Community","github_author_name":"sujaykundu777","github_author_url":"https://github.com/sujaykundu777","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"4.4.0","license":"MIT","stars":450,"forks":400,"features":["Built-in CMS support (Netlify CMS + Forestry)","Dark mode toggle","Developer portfolio section","Blog with categories and tags","Projects showcase grid","Skills and timeline sections","Newsletter subscription support","Disqus and Utterances comments","Google Analytics","GitHub Pages compatible"],"slug":"devlopr-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/dinky","collection":"themes","next":{"path":"_themes/documentation.md","relative_path":"_themes/documentation.md","id":"/themes/documentation","collection":"themes","url":"/themes/documentation/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Documentation Jekyll Theme","description":"A documentation and help system Jekyll theme with search, navigation sidebar, and clean typography for technical writing.","key_features":["Search Built-in","Sidebar Nav","Clean Typography","GitHub Pages"],"card_description":"Help system theme with search, sidebar navigation, and clean typography.","category":"Documentation","card_image":"/assets/images/themes/documentation-card.webp","theme_screenshots":["/assets/images/themes/documentation-screenshot.webp","/assets/images/themes/documentation-screenshot-2.webp","/assets/images/themes/documentation-screenshot-3.webp"],"demo_url":"https://docs.cloudcannon.com/","github_url":"https://github.com/CloudCannon/documentation-jekyll-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2024-03-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1194,"forks":423,"features":["Collapsible sidebar navigation","Built-in search","Clean documentation layout","Breadcrumb navigation","Code syntax highlighting","Table of contents","Previous / Next page links","Responsive design","GitHub Pages compatible","Easy content organisation"],"slug":"documentation","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Dinky is a compact, sidebar-based GitHub Pages official theme well suited to small-to-medium project documentation sites. Its bright blue accents and tidy layout feel modern and approachable, and the sidebar keeps navigation visible without consuming too much page space.\n\nLike all official GitHub Pages themes, it activates with a single `theme:` line in your config β€” no gem management, no local installation.\n\n**Who is it for?** Developers who want a structured sidebar layout for project documentation without the complexity of full documentation frameworks like Just the Docs.\n","url":"/themes/dinky/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Dinky Jekyll Theme","description":"A compact GitHub Pages Jekyll theme with a fixed sidebar and clean layout. Great for small documentation pages and personal project sites.","key_features":["GitHub Pages","Fixed Sidebar","Project Docs","Compact Layout"],"card_description":"Compact GitHub Pages theme with fixed sidebar for small project sites.","category":"Documentation","card_image":"/assets/images/themes/dinky-card.webp","theme_screenshots":["/assets/images/themes/dinky-screenshot.webp","/assets/images/themes/dinky-screenshot-2.webp","/assets/images/themes/dinky-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/dinky/","github_url":"https://github.com/pages-themes/dinky","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Compact sidebar navigation","Bright blue accent colours","Clean documentation layout","Single-line enable via _config.yml","Responsive design","No local Jekyll install needed"],"slug":"dinky","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Devlopr stands out from every other Jekyll theme in one important way: it ships with built-in CMS support. You can write and publish blog posts through a browser-based admin interface β€” no terminal, no text editor, no git commits. This makes it genuinely practical for developers who want the speed and security of a static site but the convenience of a CMS for day-to-day content updates.\n\nBeyond the CMS integration, it's a well-rounded developer portfolio theme with sections for projects, skills, timeline, and a blog β€” all with dark mode support.\n\n**Who is it for?** Developers who want a personal portfolio and blog with CMS-based content editing, so they can write posts from anywhere without a local development environment.\n","url":"/themes/devlopr-jekyll/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Devlopr Jekyll Theme","description":"A feature-rich developer portfolio Jekyll theme with an integrated blog, skills section, CMS support, and dark mode built in.","key_features":["Dark Mode","CMS Support","Skills Section","Portfolio & Blog"],"card_description":"Developer portfolio with blog, skills section, and dark mode built in.","category":"Portfolio","card_image":"/assets/images/themes/devlopr-jekyll-card.webp","theme_screenshots":["/assets/images/themes/devlopr-jekyll-screenshot.webp","/assets/images/themes/devlopr-jekyll-screenshot-2.webp","/assets/images/themes/devlopr-jekyll-screenshot-3.webp"],"demo_url":"https://devlopr.netlify.app/","github_url":"https://github.com/sujaykundu777/devlopr-jekyll","author":"GitHub Community","github_author_name":"sujaykundu777","github_author_url":"https://github.com/sujaykundu777","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"4.4.0","license":"MIT","stars":450,"forks":400,"features":["Built-in CMS support (Netlify CMS + Forestry)","Dark mode toggle","Developer portfolio section","Blog with categories and tags","Projects showcase grid","Skills and timeline sections","Newsletter subscription support","Disqus and Utterances comments","Google Analytics","GitHub Pages compatible"],"slug":"devlopr-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/dinky.md","relative_path":"_themes/dinky.md","excerpt":"<p>Dinky is a compact, sidebar-based GitHub Pages official theme well suited to small-to-medium project documentation sites. Its bright blue accents and tidy layout feel modern and approachable, and the sidebar keeps navigation visible without consuming too much page space.</p>\n\n","previous":{"path":"_themes/devlopr-jekyll.md","relative_path":"_themes/devlopr-jekyll.md","excerpt":"<p>Devlopr stands out from every other Jekyll theme in one important way: it ships with built-in CMS support. You can write and publish blog posts through a browser-based admin interface β€” no terminal, no text editor, no git commits. This makes it genuinely practical for developers who want the speed and security of a static site but the convenience of a CMS for day-to-day content updates.</p>\n\n","previous":{"path":"_themes/creative.md","relative_path":"_themes/creative.md","id":"/themes/creative","collection":"themes","url":"/themes/creative/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Creative Jekyll Theme","description":"A one-page Bootstrap landing page Jekyll theme with a fullscreen hero image, smooth scroll navigation, and portfolio sections.","key_features":["One-Page Layout","Smooth Scroll","Portfolio Sections","Bootstrap Based"],"card_description":"One-page Bootstrap landing page with fullscreen hero and portfolio.","category":"Landing Page","card_image":"/assets/images/themes/creative-card.webp","theme_screenshots":["/assets/images/themes/creative-screenshot.webp","/assets/images/themes/creative-screenshot-2.webp","/assets/images/themes/creative-screenshot-3.webp"],"demo_url":"https://volny.github.io/creative-theme-jekyll/","github_url":"https://github.com/volny/creative-theme-jekyll","author":"GitHub Community","github_author_name":"volny","github_author_url":"https://github.com/volny","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":545,"forks":397,"features":["Fullscreen hero image","Smooth scroll navigation","Portfolio grid section","Services section","Call-to-action buttons","Bootstrap 3 powered","Animated scroll effects","Contact section","GitHub Pages compatible","One-page layout"],"slug":"creative","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/devlopr-jekyll","collection":"themes","next":{"path":"_themes/dinky.md","relative_path":"_themes/dinky.md","id":"/themes/dinky","collection":"themes","url":"/themes/dinky/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Dinky Jekyll Theme","description":"A compact GitHub Pages Jekyll theme with a fixed sidebar and clean layout. Great for small documentation pages and personal project sites.","key_features":["GitHub Pages","Fixed Sidebar","Project Docs","Compact Layout"],"card_description":"Compact GitHub Pages theme with fixed sidebar for small project sites.","category":"Documentation","card_image":"/assets/images/themes/dinky-card.webp","theme_screenshots":["/assets/images/themes/dinky-screenshot.webp","/assets/images/themes/dinky-screenshot-2.webp","/assets/images/themes/dinky-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/dinky/","github_url":"https://github.com/pages-themes/dinky","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Compact sidebar navigation","Bright blue accent colours","Clean documentation layout","Single-line enable via _config.yml","Responsive design","No local Jekyll install needed"],"slug":"dinky","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Devlopr stands out from every other Jekyll theme in one important way: it ships with built-in CMS support. You can write and publish blog posts through a browser-based admin interface β€” no terminal, no text editor, no git commits. This makes it genuinely practical for developers who want the speed and security of a static site but the convenience of a CMS for day-to-day content updates.\n\nBeyond the CMS integration, it's a well-rounded developer portfolio theme with sections for projects, skills, timeline, and a blog β€” all with dark mode support.\n\n**Who is it for?** Developers who want a personal portfolio and blog with CMS-based content editing, so they can write posts from anywhere without a local development environment.\n","url":"/themes/devlopr-jekyll/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Devlopr Jekyll Theme","description":"A feature-rich developer portfolio Jekyll theme with an integrated blog, skills section, CMS support, and dark mode built in.","key_features":["Dark Mode","CMS Support","Skills Section","Portfolio & Blog"],"card_description":"Developer portfolio with blog, skills section, and dark mode built in.","category":"Portfolio","card_image":"/assets/images/themes/devlopr-jekyll-card.webp","theme_screenshots":["/assets/images/themes/devlopr-jekyll-screenshot.webp","/assets/images/themes/devlopr-jekyll-screenshot-2.webp","/assets/images/themes/devlopr-jekyll-screenshot-3.webp"],"demo_url":"https://devlopr.netlify.app/","github_url":"https://github.com/sujaykundu777/devlopr-jekyll","author":"GitHub Community","github_author_name":"sujaykundu777","github_author_url":"https://github.com/sujaykundu777","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"4.4.0","license":"MIT","stars":450,"forks":400,"features":["Built-in CMS support (Netlify CMS + Forestry)","Dark mode toggle","Developer portfolio section","Blog with categories and tags","Projects showcase grid","Skills and timeline sections","Newsletter subscription support","Disqus and Utterances comments","Google Analytics","GitHub Pages compatible"],"slug":"devlopr-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/dinky","collection":"themes","next":{"path":"_themes/documentation.md","relative_path":"_themes/documentation.md","excerpt":"<p>Documentation is a clean, professional Jekyll theme from CloudCannon designed specifically for technical documentation and help systems.</p>\n\n","previous":{"path":"_themes/dinky.md","relative_path":"_themes/dinky.md","id":"/themes/dinky","collection":"themes","url":"/themes/dinky/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Dinky Jekyll Theme","description":"A compact GitHub Pages Jekyll theme with a fixed sidebar and clean layout. Great for small documentation pages and personal project sites.","key_features":["GitHub Pages","Fixed Sidebar","Project Docs","Compact Layout"],"card_description":"Compact GitHub Pages theme with fixed sidebar for small project sites.","category":"Documentation","card_image":"/assets/images/themes/dinky-card.webp","theme_screenshots":["/assets/images/themes/dinky-screenshot.webp","/assets/images/themes/dinky-screenshot-2.webp","/assets/images/themes/dinky-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/dinky/","github_url":"https://github.com/pages-themes/dinky","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Compact sidebar navigation","Bright blue accent colours","Clean documentation layout","Single-line enable via _config.yml","Responsive design","No local Jekyll install needed"],"slug":"dinky","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/documentation","collection":"themes","next":{"path":"_themes/feeling-responsive.md","relative_path":"_themes/feeling-responsive.md","id":"/themes/feeling-responsive","collection":"themes","url":"/themes/feeling-responsive/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Feeling Responsive Jekyll Theme","description":"A multipurpose responsive Jekyll theme built on the Foundation framework with flexible layouts, widgets, and rich customisation options.","key_features":["Foundation Framework","Flexible Layouts","Rich Widgets","Multi-Purpose"],"card_description":"Multipurpose Foundation theme with flexible layouts and rich widgets.","category":"Blog","card_image":"/assets/images/themes/feeling-responsive-card.webp","theme_screenshots":["/assets/images/themes/feeling-responsive-screenshot.webp","/assets/images/themes/feeling-responsive-screenshot-2.webp","/assets/images/themes/feeling-responsive-screenshot-3.webp"],"demo_url":"https://phlow.github.io/feeling-responsive/","github_url":"https://github.com/Phlow/feeling-responsive","author":"GitHub Community","github_author_name":"Phlow","github_author_url":"https://github.com/Phlow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-06-27","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":945,"forks":614,"features":["Foundation framework","Multiple layout options","Widgetised sidebar","Video embedding support","Image galleries","Google Analytics","Disqus comments","Multilingual ready","GitHub Pages compatible","Extensive documentation"],"slug":"feeling-responsive","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Documentation is a clean, professional Jekyll theme from CloudCannon designed specifically for technical documentation and help systems.\n\nA collapsible sidebar handles deep navigation hierarchies, while built-in search lets users find content instantly. Code blocks are syntax-highlighted throughout.\n\n**Who is it for?** Developers and teams who need to publish product documentation, API references, or technical guides as a static site.\n","url":"/themes/documentation/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Documentation Jekyll Theme","description":"A documentation and help system Jekyll theme with search, navigation sidebar, and clean typography for technical writing.","key_features":["Search Built-in","Sidebar Nav","Clean Typography","GitHub Pages"],"card_description":"Help system theme with search, sidebar navigation, and clean typography.","category":"Documentation","card_image":"/assets/images/themes/documentation-card.webp","theme_screenshots":["/assets/images/themes/documentation-screenshot.webp","/assets/images/themes/documentation-screenshot-2.webp","/assets/images/themes/documentation-screenshot-3.webp"],"demo_url":"https://docs.cloudcannon.com/","github_url":"https://github.com/CloudCannon/documentation-jekyll-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2024-03-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1194,"forks":423,"features":["Collapsible sidebar navigation","Built-in search","Clean documentation layout","Breadcrumb navigation","Code syntax highlighting","Table of contents","Previous / Next page links","Responsive design","GitHub Pages compatible","Easy content organisation"],"slug":"documentation","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Dinky is a compact, sidebar-based GitHub Pages official theme well suited to small-to-medium project documentation sites. Its bright blue accents and tidy layout feel modern and approachable, and the sidebar keeps navigation visible without consuming too much page space.\n\nLike all official GitHub Pages themes, it activates with a single `theme:` line in your config β€” no gem management, no local installation.\n\n**Who is it for?** Developers who want a structured sidebar layout for project documentation without the complexity of full documentation frameworks like Just the Docs.\n","url":"/themes/dinky/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Dinky Jekyll Theme","description":"A compact GitHub Pages Jekyll theme with a fixed sidebar and clean layout. Great for small documentation pages and personal project sites.","key_features":["GitHub Pages","Fixed Sidebar","Project Docs","Compact Layout"],"card_description":"Compact GitHub Pages theme with fixed sidebar for small project sites.","category":"Documentation","card_image":"/assets/images/themes/dinky-card.webp","theme_screenshots":["/assets/images/themes/dinky-screenshot.webp","/assets/images/themes/dinky-screenshot-2.webp","/assets/images/themes/dinky-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/dinky/","github_url":"https://github.com/pages-themes/dinky","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Compact sidebar navigation","Bright blue accent colours","Clean documentation layout","Single-line enable via _config.yml","Responsive design","No local Jekyll install needed"],"slug":"dinky","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/documentation.md","relative_path":"_themes/documentation.md","excerpt":"<p>Documentation is a clean, professional Jekyll theme from CloudCannon designed specifically for technical documentation and help systems.</p>\n\n","previous":{"path":"_themes/dinky.md","relative_path":"_themes/dinky.md","excerpt":"<p>Dinky is a compact, sidebar-based GitHub Pages official theme well suited to small-to-medium project documentation sites. Its bright blue accents and tidy layout feel modern and approachable, and the sidebar keeps navigation visible without consuming too much page space.</p>\n\n","previous":{"path":"_themes/devlopr-jekyll.md","relative_path":"_themes/devlopr-jekyll.md","id":"/themes/devlopr-jekyll","collection":"themes","url":"/themes/devlopr-jekyll/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Devlopr Jekyll Theme","description":"A feature-rich developer portfolio Jekyll theme with an integrated blog, skills section, CMS support, and dark mode built in.","key_features":["Dark Mode","CMS Support","Skills Section","Portfolio & Blog"],"card_description":"Developer portfolio with blog, skills section, and dark mode built in.","category":"Portfolio","card_image":"/assets/images/themes/devlopr-jekyll-card.webp","theme_screenshots":["/assets/images/themes/devlopr-jekyll-screenshot.webp","/assets/images/themes/devlopr-jekyll-screenshot-2.webp","/assets/images/themes/devlopr-jekyll-screenshot-3.webp"],"demo_url":"https://devlopr.netlify.app/","github_url":"https://github.com/sujaykundu777/devlopr-jekyll","author":"GitHub Community","github_author_name":"sujaykundu777","github_author_url":"https://github.com/sujaykundu777","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"4.4.0","license":"MIT","stars":450,"forks":400,"features":["Built-in CMS support (Netlify CMS + Forestry)","Dark mode toggle","Developer portfolio section","Blog with categories and tags","Projects showcase grid","Skills and timeline sections","Newsletter subscription support","Disqus and Utterances comments","Google Analytics","GitHub Pages compatible"],"slug":"devlopr-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/dinky","collection":"themes","next":{"path":"_themes/documentation.md","relative_path":"_themes/documentation.md","id":"/themes/documentation","collection":"themes","url":"/themes/documentation/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Documentation Jekyll Theme","description":"A documentation and help system Jekyll theme with search, navigation sidebar, and clean typography for technical writing.","key_features":["Search Built-in","Sidebar Nav","Clean Typography","GitHub Pages"],"card_description":"Help system theme with search, sidebar navigation, and clean typography.","category":"Documentation","card_image":"/assets/images/themes/documentation-card.webp","theme_screenshots":["/assets/images/themes/documentation-screenshot.webp","/assets/images/themes/documentation-screenshot-2.webp","/assets/images/themes/documentation-screenshot-3.webp"],"demo_url":"https://docs.cloudcannon.com/","github_url":"https://github.com/CloudCannon/documentation-jekyll-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2024-03-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1194,"forks":423,"features":["Collapsible sidebar navigation","Built-in search","Clean documentation layout","Breadcrumb navigation","Code syntax highlighting","Table of contents","Previous / Next page links","Responsive design","GitHub Pages compatible","Easy content organisation"],"slug":"documentation","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Dinky is a compact, sidebar-based GitHub Pages official theme well suited to small-to-medium project documentation sites. Its bright blue accents and tidy layout feel modern and approachable, and the sidebar keeps navigation visible without consuming too much page space.\n\nLike all official GitHub Pages themes, it activates with a single `theme:` line in your config β€” no gem management, no local installation.\n\n**Who is it for?** Developers who want a structured sidebar layout for project documentation without the complexity of full documentation frameworks like Just the Docs.\n","url":"/themes/dinky/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Dinky Jekyll Theme","description":"A compact GitHub Pages Jekyll theme with a fixed sidebar and clean layout. Great for small documentation pages and personal project sites.","key_features":["GitHub Pages","Fixed Sidebar","Project Docs","Compact Layout"],"card_description":"Compact GitHub Pages theme with fixed sidebar for small project sites.","category":"Documentation","card_image":"/assets/images/themes/dinky-card.webp","theme_screenshots":["/assets/images/themes/dinky-screenshot.webp","/assets/images/themes/dinky-screenshot-2.webp","/assets/images/themes/dinky-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/dinky/","github_url":"https://github.com/pages-themes/dinky","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Compact sidebar navigation","Bright blue accent colours","Clean documentation layout","Single-line enable via _config.yml","Responsive design","No local Jekyll install needed"],"slug":"dinky","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/documentation","collection":"themes","next":{"path":"_themes/feeling-responsive.md","relative_path":"_themes/feeling-responsive.md","excerpt":"<p>Feeling Responsive is one of the most feature-rich free Jekyll themes available, built on Zurb’s Foundation framework. It offers a wide range of layouts β€” from full-width magazine-style pages to narrow reading columns.</p>\n\n","previous":{"path":"_themes/documentation.md","relative_path":"_themes/documentation.md","id":"/themes/documentation","collection":"themes","url":"/themes/documentation/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Documentation Jekyll Theme","description":"A documentation and help system Jekyll theme with search, navigation sidebar, and clean typography for technical writing.","key_features":["Search Built-in","Sidebar Nav","Clean Typography","GitHub Pages"],"card_description":"Help system theme with search, sidebar navigation, and clean typography.","category":"Documentation","card_image":"/assets/images/themes/documentation-card.webp","theme_screenshots":["/assets/images/themes/documentation-screenshot.webp","/assets/images/themes/documentation-screenshot-2.webp","/assets/images/themes/documentation-screenshot-3.webp"],"demo_url":"https://docs.cloudcannon.com/","github_url":"https://github.com/CloudCannon/documentation-jekyll-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2024-03-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1194,"forks":423,"features":["Collapsible sidebar navigation","Built-in search","Clean documentation layout","Breadcrumb navigation","Code syntax highlighting","Table of contents","Previous / Next page links","Responsive design","GitHub Pages compatible","Easy content organisation"],"slug":"documentation","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/feeling-responsive","collection":"themes","next":{"path":"_themes/flexible-jekyll.md","relative_path":"_themes/flexible-jekyll.md","id":"/themes/flexible-jekyll","collection":"themes","url":"/themes/flexible-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Flexible Jekyll","description":"A simple and clean Jekyll theme with a minimal design, dark mode support, tag pages, and a flexible two-column layout.","key_features":["Dark Mode","Two-Column Layout","Tag Pages","Clean Design"],"card_description":"Simple, clean blog with dark mode and flexible two-column layout.","category":"Blog","card_image":"/assets/images/themes/flexible-jekyll-card.webp","theme_screenshots":["/assets/images/themes/flexible-jekyll-screenshot.webp","/assets/images/themes/flexible-jekyll-screenshot-2.webp","/assets/images/themes/flexible-jekyll-screenshot-3.webp"],"demo_url":"https://artemsheludko.github.io/flexible-jekyll/","github_url":"https://github.com/artemsheludko/flexible-jekyll","author":"GitHub Community","github_author_name":"artemsheludko","github_author_url":"https://github.com/artemsheludko","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-06-21","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":782,"forks":449,"features":["Light and dark mode","Two-column layout","Tag archive pages","Author sidebar","Featured post images","Disqus comments","Google Analytics","Social media links","GitHub Pages compatible","Clean minimal design"],"slug":"flexible-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Feeling Responsive is one of the most feature-rich free Jekyll themes available, built on Zurb's Foundation framework. It offers a wide range of layouts β€” from full-width magazine-style pages to narrow reading columns.\n\nThe theme ships with widgets, gallery support, video embedding, and multilingual capabilities. Its extensive documentation makes customisation straightforward even for less experienced developers.\n\n**Who is it for?** Bloggers and small publishers who want a flexible, feature-rich theme without paying for a premium option.\n","url":"/themes/feeling-responsive/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Feeling Responsive Jekyll Theme","description":"A multipurpose responsive Jekyll theme built on the Foundation framework with flexible layouts, widgets, and rich customisation options.","key_features":["Foundation Framework","Flexible Layouts","Rich Widgets","Multi-Purpose"],"card_description":"Multipurpose Foundation theme with flexible layouts and rich widgets.","category":"Blog","card_image":"/assets/images/themes/feeling-responsive-card.webp","theme_screenshots":["/assets/images/themes/feeling-responsive-screenshot.webp","/assets/images/themes/feeling-responsive-screenshot-2.webp","/assets/images/themes/feeling-responsive-screenshot-3.webp"],"demo_url":"https://phlow.github.io/feeling-responsive/","github_url":"https://github.com/Phlow/feeling-responsive","author":"GitHub Community","github_author_name":"Phlow","github_author_url":"https://github.com/Phlow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-06-27","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":945,"forks":614,"features":["Foundation framework","Multiple layout options","Widgetised sidebar","Video embedding support","Image galleries","Google Analytics","Disqus comments","Multilingual ready","GitHub Pages compatible","Extensive documentation"],"slug":"feeling-responsive","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Documentation is a clean, professional Jekyll theme from CloudCannon designed specifically for technical documentation and help systems.\n\nA collapsible sidebar handles deep navigation hierarchies, while built-in search lets users find content instantly. Code blocks are syntax-highlighted throughout.\n\n**Who is it for?** Developers and teams who need to publish product documentation, API references, or technical guides as a static site.\n","url":"/themes/documentation/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Documentation Jekyll Theme","description":"A documentation and help system Jekyll theme with search, navigation sidebar, and clean typography for technical writing.","key_features":["Search Built-in","Sidebar Nav","Clean Typography","GitHub Pages"],"card_description":"Help system theme with search, sidebar navigation, and clean typography.","category":"Documentation","card_image":"/assets/images/themes/documentation-card.webp","theme_screenshots":["/assets/images/themes/documentation-screenshot.webp","/assets/images/themes/documentation-screenshot-2.webp","/assets/images/themes/documentation-screenshot-3.webp"],"demo_url":"https://docs.cloudcannon.com/","github_url":"https://github.com/CloudCannon/documentation-jekyll-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2024-03-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1194,"forks":423,"features":["Collapsible sidebar navigation","Built-in search","Clean documentation layout","Breadcrumb navigation","Code syntax highlighting","Table of contents","Previous / Next page links","Responsive design","GitHub Pages compatible","Easy content organisation"],"slug":"documentation","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/feeling-responsive.md","relative_path":"_themes/feeling-responsive.md","excerpt":"<p>Feeling Responsive is one of the most feature-rich free Jekyll themes available, built on Zurb’s Foundation framework. It offers a wide range of layouts β€” from full-width magazine-style pages to narrow reading columns.</p>\n\n","previous":{"path":"_themes/documentation.md","relative_path":"_themes/documentation.md","excerpt":"<p>Documentation is a clean, professional Jekyll theme from CloudCannon designed specifically for technical documentation and help systems.</p>\n\n","previous":{"path":"_themes/dinky.md","relative_path":"_themes/dinky.md","id":"/themes/dinky","collection":"themes","url":"/themes/dinky/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Dinky Jekyll Theme","description":"A compact GitHub Pages Jekyll theme with a fixed sidebar and clean layout. Great for small documentation pages and personal project sites.","key_features":["GitHub Pages","Fixed Sidebar","Project Docs","Compact Layout"],"card_description":"Compact GitHub Pages theme with fixed sidebar for small project sites.","category":"Documentation","card_image":"/assets/images/themes/dinky-card.webp","theme_screenshots":["/assets/images/themes/dinky-screenshot.webp","/assets/images/themes/dinky-screenshot-2.webp","/assets/images/themes/dinky-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/dinky/","github_url":"https://github.com/pages-themes/dinky","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Compact sidebar navigation","Bright blue accent colours","Clean documentation layout","Single-line enable via _config.yml","Responsive design","No local Jekyll install needed"],"slug":"dinky","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/documentation","collection":"themes","next":{"path":"_themes/feeling-responsive.md","relative_path":"_themes/feeling-responsive.md","id":"/themes/feeling-responsive","collection":"themes","url":"/themes/feeling-responsive/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Feeling Responsive Jekyll Theme","description":"A multipurpose responsive Jekyll theme built on the Foundation framework with flexible layouts, widgets, and rich customisation options.","key_features":["Foundation Framework","Flexible Layouts","Rich Widgets","Multi-Purpose"],"card_description":"Multipurpose Foundation theme with flexible layouts and rich widgets.","category":"Blog","card_image":"/assets/images/themes/feeling-responsive-card.webp","theme_screenshots":["/assets/images/themes/feeling-responsive-screenshot.webp","/assets/images/themes/feeling-responsive-screenshot-2.webp","/assets/images/themes/feeling-responsive-screenshot-3.webp"],"demo_url":"https://phlow.github.io/feeling-responsive/","github_url":"https://github.com/Phlow/feeling-responsive","author":"GitHub Community","github_author_name":"Phlow","github_author_url":"https://github.com/Phlow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-06-27","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":945,"forks":614,"features":["Foundation framework","Multiple layout options","Widgetised sidebar","Video embedding support","Image galleries","Google Analytics","Disqus comments","Multilingual ready","GitHub Pages compatible","Extensive documentation"],"slug":"feeling-responsive","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Documentation is a clean, professional Jekyll theme from CloudCannon designed specifically for technical documentation and help systems.\n\nA collapsible sidebar handles deep navigation hierarchies, while built-in search lets users find content instantly. Code blocks are syntax-highlighted throughout.\n\n**Who is it for?** Developers and teams who need to publish product documentation, API references, or technical guides as a static site.\n","url":"/themes/documentation/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Documentation Jekyll Theme","description":"A documentation and help system Jekyll theme with search, navigation sidebar, and clean typography for technical writing.","key_features":["Search Built-in","Sidebar Nav","Clean Typography","GitHub Pages"],"card_description":"Help system theme with search, sidebar navigation, and clean typography.","category":"Documentation","card_image":"/assets/images/themes/documentation-card.webp","theme_screenshots":["/assets/images/themes/documentation-screenshot.webp","/assets/images/themes/documentation-screenshot-2.webp","/assets/images/themes/documentation-screenshot-3.webp"],"demo_url":"https://docs.cloudcannon.com/","github_url":"https://github.com/CloudCannon/documentation-jekyll-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2024-03-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1194,"forks":423,"features":["Collapsible sidebar navigation","Built-in search","Clean documentation layout","Breadcrumb navigation","Code syntax highlighting","Table of contents","Previous / Next page links","Responsive design","GitHub Pages compatible","Easy content organisation"],"slug":"documentation","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/feeling-responsive","collection":"themes","next":{"path":"_themes/flexible-jekyll.md","relative_path":"_themes/flexible-jekyll.md","excerpt":"<p>Flexible Jekyll is a clean, versatile theme with a two-column layout β€” posts on the left, author sidebar on the right. It ships with both light and dark modes, letting readers choose their preferred reading environment.</p>\n\n","previous":{"path":"_themes/feeling-responsive.md","relative_path":"_themes/feeling-responsive.md","id":"/themes/feeling-responsive","collection":"themes","url":"/themes/feeling-responsive/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Feeling Responsive Jekyll Theme","description":"A multipurpose responsive Jekyll theme built on the Foundation framework with flexible layouts, widgets, and rich customisation options.","key_features":["Foundation Framework","Flexible Layouts","Rich Widgets","Multi-Purpose"],"card_description":"Multipurpose Foundation theme with flexible layouts and rich widgets.","category":"Blog","card_image":"/assets/images/themes/feeling-responsive-card.webp","theme_screenshots":["/assets/images/themes/feeling-responsive-screenshot.webp","/assets/images/themes/feeling-responsive-screenshot-2.webp","/assets/images/themes/feeling-responsive-screenshot-3.webp"],"demo_url":"https://phlow.github.io/feeling-responsive/","github_url":"https://github.com/Phlow/feeling-responsive","author":"GitHub Community","github_author_name":"Phlow","github_author_url":"https://github.com/Phlow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-06-27","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":945,"forks":614,"features":["Foundation framework","Multiple layout options","Widgetised sidebar","Video embedding support","Image galleries","Google Analytics","Disqus comments","Multilingual ready","GitHub Pages compatible","Extensive documentation"],"slug":"feeling-responsive","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/flexible-jekyll","collection":"themes","next":{"path":"_themes/forty.md","relative_path":"_themes/forty.md","id":"/themes/forty","collection":"themes","url":"/themes/forty/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Forty Jekyll Theme","description":"A visually striking multipurpose Jekyll theme inspired by HTML5 UP. Features tiled project sections and high-impact full-screen headers.","key_features":["Full-Screen Headers","Tiled Portfolio","Dark Mode","Striking Visuals"],"card_description":"Visually striking multipurpose theme with tiled sections and full-screen headers.","category":"Portfolio","card_image":"/assets/images/themes/forty-card.webp","theme_screenshots":["/assets/images/themes/forty-screenshot.webp","/assets/images/themes/forty-screenshot-2.webp","/assets/images/themes/forty-screenshot-3.webp"],"demo_url":"https://andrewbanchich.github.io/forty-jekyll-theme/","github_url":"https://github.com/andrewbanchich/forty-jekyll-theme","author":"GitHub Community","github_author_name":"Andrew Banchich","github_author_url":"https://github.com/andrewbanchich","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC3","stars":1100,"forks":1200,"features":["Tile-based portfolio grid","Full-screen banner","Dark/light tile contrast","Contact form","Portfolio and blog sections"],"slug":"forty","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Flexible Jekyll is a clean, versatile theme with a two-column layout β€” posts on the left, author sidebar on the right. It ships with both light and dark modes, letting readers choose their preferred reading environment.\n\nThe design is deliberately understated, keeping the focus entirely on content. Tag archive pages make it easy to navigate a large back-catalogue of posts.\n\n**Who is it for?** Bloggers who want a clean, readable two-column layout with dark mode support out of the box.\n","url":"/themes/flexible-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Flexible Jekyll","description":"A simple and clean Jekyll theme with a minimal design, dark mode support, tag pages, and a flexible two-column layout.","key_features":["Dark Mode","Two-Column Layout","Tag Pages","Clean Design"],"card_description":"Simple, clean blog with dark mode and flexible two-column layout.","category":"Blog","card_image":"/assets/images/themes/flexible-jekyll-card.webp","theme_screenshots":["/assets/images/themes/flexible-jekyll-screenshot.webp","/assets/images/themes/flexible-jekyll-screenshot-2.webp","/assets/images/themes/flexible-jekyll-screenshot-3.webp"],"demo_url":"https://artemsheludko.github.io/flexible-jekyll/","github_url":"https://github.com/artemsheludko/flexible-jekyll","author":"GitHub Community","github_author_name":"artemsheludko","github_author_url":"https://github.com/artemsheludko","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-06-21","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":782,"forks":449,"features":["Light and dark mode","Two-column layout","Tag archive pages","Author sidebar","Featured post images","Disqus comments","Google Analytics","Social media links","GitHub Pages compatible","Clean minimal design"],"slug":"flexible-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Feeling Responsive is one of the most feature-rich free Jekyll themes available, built on Zurb's Foundation framework. It offers a wide range of layouts β€” from full-width magazine-style pages to narrow reading columns.\n\nThe theme ships with widgets, gallery support, video embedding, and multilingual capabilities. Its extensive documentation makes customisation straightforward even for less experienced developers.\n\n**Who is it for?** Bloggers and small publishers who want a flexible, feature-rich theme without paying for a premium option.\n","url":"/themes/feeling-responsive/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Feeling Responsive Jekyll Theme","description":"A multipurpose responsive Jekyll theme built on the Foundation framework with flexible layouts, widgets, and rich customisation options.","key_features":["Foundation Framework","Flexible Layouts","Rich Widgets","Multi-Purpose"],"card_description":"Multipurpose Foundation theme with flexible layouts and rich widgets.","category":"Blog","card_image":"/assets/images/themes/feeling-responsive-card.webp","theme_screenshots":["/assets/images/themes/feeling-responsive-screenshot.webp","/assets/images/themes/feeling-responsive-screenshot-2.webp","/assets/images/themes/feeling-responsive-screenshot-3.webp"],"demo_url":"https://phlow.github.io/feeling-responsive/","github_url":"https://github.com/Phlow/feeling-responsive","author":"GitHub Community","github_author_name":"Phlow","github_author_url":"https://github.com/Phlow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-06-27","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":945,"forks":614,"features":["Foundation framework","Multiple layout options","Widgetised sidebar","Video embedding support","Image galleries","Google Analytics","Disqus comments","Multilingual ready","GitHub Pages compatible","Extensive documentation"],"slug":"feeling-responsive","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/flexible-jekyll.md","relative_path":"_themes/flexible-jekyll.md","excerpt":"<p>Flexible Jekyll is a clean, versatile theme with a two-column layout β€” posts on the left, author sidebar on the right. It ships with both light and dark modes, letting readers choose their preferred reading environment.</p>\n\n","previous":{"path":"_themes/feeling-responsive.md","relative_path":"_themes/feeling-responsive.md","excerpt":"<p>Feeling Responsive is one of the most feature-rich free Jekyll themes available, built on Zurb’s Foundation framework. It offers a wide range of layouts β€” from full-width magazine-style pages to narrow reading columns.</p>\n\n","previous":{"path":"_themes/documentation.md","relative_path":"_themes/documentation.md","id":"/themes/documentation","collection":"themes","url":"/themes/documentation/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Documentation Jekyll Theme","description":"A documentation and help system Jekyll theme with search, navigation sidebar, and clean typography for technical writing.","key_features":["Search Built-in","Sidebar Nav","Clean Typography","GitHub Pages"],"card_description":"Help system theme with search, sidebar navigation, and clean typography.","category":"Documentation","card_image":"/assets/images/themes/documentation-card.webp","theme_screenshots":["/assets/images/themes/documentation-screenshot.webp","/assets/images/themes/documentation-screenshot-2.webp","/assets/images/themes/documentation-screenshot-3.webp"],"demo_url":"https://docs.cloudcannon.com/","github_url":"https://github.com/CloudCannon/documentation-jekyll-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2024-03-03","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1194,"forks":423,"features":["Collapsible sidebar navigation","Built-in search","Clean documentation layout","Breadcrumb navigation","Code syntax highlighting","Table of contents","Previous / Next page links","Responsive design","GitHub Pages compatible","Easy content organisation"],"slug":"documentation","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/feeling-responsive","collection":"themes","next":{"path":"_themes/flexible-jekyll.md","relative_path":"_themes/flexible-jekyll.md","id":"/themes/flexible-jekyll","collection":"themes","url":"/themes/flexible-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Flexible Jekyll","description":"A simple and clean Jekyll theme with a minimal design, dark mode support, tag pages, and a flexible two-column layout.","key_features":["Dark Mode","Two-Column Layout","Tag Pages","Clean Design"],"card_description":"Simple, clean blog with dark mode and flexible two-column layout.","category":"Blog","card_image":"/assets/images/themes/flexible-jekyll-card.webp","theme_screenshots":["/assets/images/themes/flexible-jekyll-screenshot.webp","/assets/images/themes/flexible-jekyll-screenshot-2.webp","/assets/images/themes/flexible-jekyll-screenshot-3.webp"],"demo_url":"https://artemsheludko.github.io/flexible-jekyll/","github_url":"https://github.com/artemsheludko/flexible-jekyll","author":"GitHub Community","github_author_name":"artemsheludko","github_author_url":"https://github.com/artemsheludko","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-06-21","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":782,"forks":449,"features":["Light and dark mode","Two-column layout","Tag archive pages","Author sidebar","Featured post images","Disqus comments","Google Analytics","Social media links","GitHub Pages compatible","Clean minimal design"],"slug":"flexible-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Feeling Responsive is one of the most feature-rich free Jekyll themes available, built on Zurb's Foundation framework. It offers a wide range of layouts β€” from full-width magazine-style pages to narrow reading columns.\n\nThe theme ships with widgets, gallery support, video embedding, and multilingual capabilities. Its extensive documentation makes customisation straightforward even for less experienced developers.\n\n**Who is it for?** Bloggers and small publishers who want a flexible, feature-rich theme without paying for a premium option.\n","url":"/themes/feeling-responsive/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Feeling Responsive Jekyll Theme","description":"A multipurpose responsive Jekyll theme built on the Foundation framework with flexible layouts, widgets, and rich customisation options.","key_features":["Foundation Framework","Flexible Layouts","Rich Widgets","Multi-Purpose"],"card_description":"Multipurpose Foundation theme with flexible layouts and rich widgets.","category":"Blog","card_image":"/assets/images/themes/feeling-responsive-card.webp","theme_screenshots":["/assets/images/themes/feeling-responsive-screenshot.webp","/assets/images/themes/feeling-responsive-screenshot-2.webp","/assets/images/themes/feeling-responsive-screenshot-3.webp"],"demo_url":"https://phlow.github.io/feeling-responsive/","github_url":"https://github.com/Phlow/feeling-responsive","author":"GitHub Community","github_author_name":"Phlow","github_author_url":"https://github.com/Phlow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-06-27","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":945,"forks":614,"features":["Foundation framework","Multiple layout options","Widgetised sidebar","Video embedding support","Image galleries","Google Analytics","Disqus comments","Multilingual ready","GitHub Pages compatible","Extensive documentation"],"slug":"feeling-responsive","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/flexible-jekyll","collection":"themes","next":{"path":"_themes/forty.md","relative_path":"_themes/forty.md","excerpt":"<p>Forty is a Jekyll port of the popular HTML5 UP design of the same name. Its bold tile-based layout creates a striking visual grid where each tile can show off a project, case study, or article.</p>\n\n","previous":{"path":"_themes/flexible-jekyll.md","relative_path":"_themes/flexible-jekyll.md","id":"/themes/flexible-jekyll","collection":"themes","url":"/themes/flexible-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Flexible Jekyll","description":"A simple and clean Jekyll theme with a minimal design, dark mode support, tag pages, and a flexible two-column layout.","key_features":["Dark Mode","Two-Column Layout","Tag Pages","Clean Design"],"card_description":"Simple, clean blog with dark mode and flexible two-column layout.","category":"Blog","card_image":"/assets/images/themes/flexible-jekyll-card.webp","theme_screenshots":["/assets/images/themes/flexible-jekyll-screenshot.webp","/assets/images/themes/flexible-jekyll-screenshot-2.webp","/assets/images/themes/flexible-jekyll-screenshot-3.webp"],"demo_url":"https://artemsheludko.github.io/flexible-jekyll/","github_url":"https://github.com/artemsheludko/flexible-jekyll","author":"GitHub Community","github_author_name":"artemsheludko","github_author_url":"https://github.com/artemsheludko","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-06-21","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":782,"forks":449,"features":["Light and dark mode","Two-column layout","Tag archive pages","Author sidebar","Featured post images","Disqus comments","Google Analytics","Social media links","GitHub Pages compatible","Clean minimal design"],"slug":"flexible-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/forty","collection":"themes","next":{"path":"_themes/freelancer.md","relative_path":"_themes/freelancer.md","id":"/themes/freelancer","collection":"themes","url":"/themes/freelancer/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Freelancer Jekyll Theme","description":"A flat design landing page and portfolio Jekyll theme based on the popular Freelancer Bootstrap theme by Start Bootstrap.","key_features":["One-Page Portfolio","Project Showcase","Contact Form","Bootstrap Based"],"card_description":"Flat design portfolio and landing page theme for freelancers.","category":"Portfolio","card_image":"/assets/images/themes/freelancer-card.webp","theme_screenshots":["/assets/images/themes/freelancer-screenshot.webp","/assets/images/themes/freelancer-screenshot-2.webp","/assets/images/themes/freelancer-screenshot-3.webp"],"demo_url":"https://jeromelachaud.com/freelancer-theme/","github_url":"https://github.com/jeromelachaud/freelancer-theme","author":"GitHub Community","github_author_name":"Jerome Lachaud","github_author_url":"https://github.com/jeromelachaud","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1488,"forks":623,"features":["One-page scrolling layout","Portfolio grid with modals","Flat design aesthetic","Bootstrap 3 powered","Contact form section","Smooth scroll navigation","Animated header","Skills section","GitHub Pages compatible","Fully responsive"],"slug":"freelancer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Forty is a Jekyll port of the popular HTML5 UP design of the same name. Its bold tile-based layout creates a striking visual grid where each tile can show off a project, case study, or article.\n\nThe alternating dark and light tiles create visual rhythm and make each piece of work feel intentional.\n\n**Who is it for?** Designers, photographers, and creatives who want a visually bold portfolio site that showcases work in large format.\n","url":"/themes/forty/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Forty Jekyll Theme","description":"A visually striking multipurpose Jekyll theme inspired by HTML5 UP. Features tiled project sections and high-impact full-screen headers.","key_features":["Full-Screen Headers","Tiled Portfolio","Dark Mode","Striking Visuals"],"card_description":"Visually striking multipurpose theme with tiled sections and full-screen headers.","category":"Portfolio","card_image":"/assets/images/themes/forty-card.webp","theme_screenshots":["/assets/images/themes/forty-screenshot.webp","/assets/images/themes/forty-screenshot-2.webp","/assets/images/themes/forty-screenshot-3.webp"],"demo_url":"https://andrewbanchich.github.io/forty-jekyll-theme/","github_url":"https://github.com/andrewbanchich/forty-jekyll-theme","author":"GitHub Community","github_author_name":"Andrew Banchich","github_author_url":"https://github.com/andrewbanchich","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC3","stars":1100,"forks":1200,"features":["Tile-based portfolio grid","Full-screen banner","Dark/light tile contrast","Contact form","Portfolio and blog sections"],"slug":"forty","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Flexible Jekyll is a clean, versatile theme with a two-column layout β€” posts on the left, author sidebar on the right. It ships with both light and dark modes, letting readers choose their preferred reading environment.\n\nThe design is deliberately understated, keeping the focus entirely on content. Tag archive pages make it easy to navigate a large back-catalogue of posts.\n\n**Who is it for?** Bloggers who want a clean, readable two-column layout with dark mode support out of the box.\n","url":"/themes/flexible-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Flexible Jekyll","description":"A simple and clean Jekyll theme with a minimal design, dark mode support, tag pages, and a flexible two-column layout.","key_features":["Dark Mode","Two-Column Layout","Tag Pages","Clean Design"],"card_description":"Simple, clean blog with dark mode and flexible two-column layout.","category":"Blog","card_image":"/assets/images/themes/flexible-jekyll-card.webp","theme_screenshots":["/assets/images/themes/flexible-jekyll-screenshot.webp","/assets/images/themes/flexible-jekyll-screenshot-2.webp","/assets/images/themes/flexible-jekyll-screenshot-3.webp"],"demo_url":"https://artemsheludko.github.io/flexible-jekyll/","github_url":"https://github.com/artemsheludko/flexible-jekyll","author":"GitHub Community","github_author_name":"artemsheludko","github_author_url":"https://github.com/artemsheludko","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-06-21","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":782,"forks":449,"features":["Light and dark mode","Two-column layout","Tag archive pages","Author sidebar","Featured post images","Disqus comments","Google Analytics","Social media links","GitHub Pages compatible","Clean minimal design"],"slug":"flexible-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/forty.md","relative_path":"_themes/forty.md","excerpt":"<p>Forty is a Jekyll port of the popular HTML5 UP design of the same name. Its bold tile-based layout creates a striking visual grid where each tile can show off a project, case study, or article.</p>\n\n","previous":{"path":"_themes/flexible-jekyll.md","relative_path":"_themes/flexible-jekyll.md","excerpt":"<p>Flexible Jekyll is a clean, versatile theme with a two-column layout β€” posts on the left, author sidebar on the right. It ships with both light and dark modes, letting readers choose their preferred reading environment.</p>\n\n","previous":{"path":"_themes/feeling-responsive.md","relative_path":"_themes/feeling-responsive.md","id":"/themes/feeling-responsive","collection":"themes","url":"/themes/feeling-responsive/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Feeling Responsive Jekyll Theme","description":"A multipurpose responsive Jekyll theme built on the Foundation framework with flexible layouts, widgets, and rich customisation options.","key_features":["Foundation Framework","Flexible Layouts","Rich Widgets","Multi-Purpose"],"card_description":"Multipurpose Foundation theme with flexible layouts and rich widgets.","category":"Blog","card_image":"/assets/images/themes/feeling-responsive-card.webp","theme_screenshots":["/assets/images/themes/feeling-responsive-screenshot.webp","/assets/images/themes/feeling-responsive-screenshot-2.webp","/assets/images/themes/feeling-responsive-screenshot-3.webp"],"demo_url":"https://phlow.github.io/feeling-responsive/","github_url":"https://github.com/Phlow/feeling-responsive","author":"GitHub Community","github_author_name":"Phlow","github_author_url":"https://github.com/Phlow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-06-27","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":945,"forks":614,"features":["Foundation framework","Multiple layout options","Widgetised sidebar","Video embedding support","Image galleries","Google Analytics","Disqus comments","Multilingual ready","GitHub Pages compatible","Extensive documentation"],"slug":"feeling-responsive","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/flexible-jekyll","collection":"themes","next":{"path":"_themes/forty.md","relative_path":"_themes/forty.md","id":"/themes/forty","collection":"themes","url":"/themes/forty/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Forty Jekyll Theme","description":"A visually striking multipurpose Jekyll theme inspired by HTML5 UP. Features tiled project sections and high-impact full-screen headers.","key_features":["Full-Screen Headers","Tiled Portfolio","Dark Mode","Striking Visuals"],"card_description":"Visually striking multipurpose theme with tiled sections and full-screen headers.","category":"Portfolio","card_image":"/assets/images/themes/forty-card.webp","theme_screenshots":["/assets/images/themes/forty-screenshot.webp","/assets/images/themes/forty-screenshot-2.webp","/assets/images/themes/forty-screenshot-3.webp"],"demo_url":"https://andrewbanchich.github.io/forty-jekyll-theme/","github_url":"https://github.com/andrewbanchich/forty-jekyll-theme","author":"GitHub Community","github_author_name":"Andrew Banchich","github_author_url":"https://github.com/andrewbanchich","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC3","stars":1100,"forks":1200,"features":["Tile-based portfolio grid","Full-screen banner","Dark/light tile contrast","Contact form","Portfolio and blog sections"],"slug":"forty","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Flexible Jekyll is a clean, versatile theme with a two-column layout β€” posts on the left, author sidebar on the right. It ships with both light and dark modes, letting readers choose their preferred reading environment.\n\nThe design is deliberately understated, keeping the focus entirely on content. Tag archive pages make it easy to navigate a large back-catalogue of posts.\n\n**Who is it for?** Bloggers who want a clean, readable two-column layout with dark mode support out of the box.\n","url":"/themes/flexible-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Flexible Jekyll","description":"A simple and clean Jekyll theme with a minimal design, dark mode support, tag pages, and a flexible two-column layout.","key_features":["Dark Mode","Two-Column Layout","Tag Pages","Clean Design"],"card_description":"Simple, clean blog with dark mode and flexible two-column layout.","category":"Blog","card_image":"/assets/images/themes/flexible-jekyll-card.webp","theme_screenshots":["/assets/images/themes/flexible-jekyll-screenshot.webp","/assets/images/themes/flexible-jekyll-screenshot-2.webp","/assets/images/themes/flexible-jekyll-screenshot-3.webp"],"demo_url":"https://artemsheludko.github.io/flexible-jekyll/","github_url":"https://github.com/artemsheludko/flexible-jekyll","author":"GitHub Community","github_author_name":"artemsheludko","github_author_url":"https://github.com/artemsheludko","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-06-21","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":782,"forks":449,"features":["Light and dark mode","Two-column layout","Tag archive pages","Author sidebar","Featured post images","Disqus comments","Google Analytics","Social media links","GitHub Pages compatible","Clean minimal design"],"slug":"flexible-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/forty","collection":"themes","next":{"path":"_themes/freelancer.md","relative_path":"_themes/freelancer.md","excerpt":"<p>Freelancer is a Jekyll port of Start Bootstrap’s popular Freelancer theme β€” a one-page scrolling layout built for designers and developers showcasing their work.</p>\n\n","previous":{"path":"_themes/forty.md","relative_path":"_themes/forty.md","id":"/themes/forty","collection":"themes","url":"/themes/forty/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Forty Jekyll Theme","description":"A visually striking multipurpose Jekyll theme inspired by HTML5 UP. Features tiled project sections and high-impact full-screen headers.","key_features":["Full-Screen Headers","Tiled Portfolio","Dark Mode","Striking Visuals"],"card_description":"Visually striking multipurpose theme with tiled sections and full-screen headers.","category":"Portfolio","card_image":"/assets/images/themes/forty-card.webp","theme_screenshots":["/assets/images/themes/forty-screenshot.webp","/assets/images/themes/forty-screenshot-2.webp","/assets/images/themes/forty-screenshot-3.webp"],"demo_url":"https://andrewbanchich.github.io/forty-jekyll-theme/","github_url":"https://github.com/andrewbanchich/forty-jekyll-theme","author":"GitHub Community","github_author_name":"Andrew Banchich","github_author_url":"https://github.com/andrewbanchich","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC3","stars":1100,"forks":1200,"features":["Tile-based portfolio grid","Full-screen banner","Dark/light tile contrast","Contact form","Portfolio and blog sections"],"slug":"forty","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/freelancer","collection":"themes","next":{"path":"_themes/hacker-blog.md","relative_path":"_themes/hacker-blog.md","id":"/themes/hacker-blog","collection":"themes","url":"/themes/hacker-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Blog Jekyll Theme","description":"A minimal, terminal-inspired dark Jekyll blog theme for developers. Pure CLI aesthetic β€” black background, monospace font, zero distractions.","key_features":["Terminal Aesthetic","GitHub Pages","Fast Loading","Minimal Design"],"card_description":"Terminal-inspired dark blog β€” monospace, minimal, distraction-free.","category":"Blog","card_image":"/assets/images/themes/hacker-blog-card.webp","theme_screenshots":["/assets/images/themes/hacker-blog-screenshot.webp","/assets/images/themes/hacker-blog-screenshot-2.webp","/assets/images/themes/hacker-blog-screenshot-3.webp"],"demo_url":"https://tocttou.github.io/hacker-blog/","github_url":"https://github.com/tocttou/hacker-blog","author":"GitHub Community","github_author_name":"Ashish Chaudhary","github_author_url":"https://github.com/tocttou","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-03-05","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1200,"forks":380,"features":["Terminal-inspired aesthetic","Pure dark mode","Minimal layout","Fast loading","No JavaScript"],"slug":"hacker-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Freelancer is a Jekyll port of Start Bootstrap's popular Freelancer theme β€” a one-page scrolling layout built for designers and developers showcasing their work.\n\nThe portfolio grid opens each project in a modal overlay, keeping the visitor on the same page. A flat design aesthetic with bold colours makes it stand out without being cluttered.\n\n**Who is it for?** Freelancers and designers who want a polished single-page portfolio to showcase their work and attract clients.\n","url":"/themes/freelancer/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Freelancer Jekyll Theme","description":"A flat design landing page and portfolio Jekyll theme based on the popular Freelancer Bootstrap theme by Start Bootstrap.","key_features":["One-Page Portfolio","Project Showcase","Contact Form","Bootstrap Based"],"card_description":"Flat design portfolio and landing page theme for freelancers.","category":"Portfolio","card_image":"/assets/images/themes/freelancer-card.webp","theme_screenshots":["/assets/images/themes/freelancer-screenshot.webp","/assets/images/themes/freelancer-screenshot-2.webp","/assets/images/themes/freelancer-screenshot-3.webp"],"demo_url":"https://jeromelachaud.com/freelancer-theme/","github_url":"https://github.com/jeromelachaud/freelancer-theme","author":"GitHub Community","github_author_name":"Jerome Lachaud","github_author_url":"https://github.com/jeromelachaud","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1488,"forks":623,"features":["One-page scrolling layout","Portfolio grid with modals","Flat design aesthetic","Bootstrap 3 powered","Contact form section","Smooth scroll navigation","Animated header","Skills section","GitHub Pages compatible","Fully responsive"],"slug":"freelancer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Forty is a Jekyll port of the popular HTML5 UP design of the same name. Its bold tile-based layout creates a striking visual grid where each tile can show off a project, case study, or article.\n\nThe alternating dark and light tiles create visual rhythm and make each piece of work feel intentional.\n\n**Who is it for?** Designers, photographers, and creatives who want a visually bold portfolio site that showcases work in large format.\n","url":"/themes/forty/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Forty Jekyll Theme","description":"A visually striking multipurpose Jekyll theme inspired by HTML5 UP. Features tiled project sections and high-impact full-screen headers.","key_features":["Full-Screen Headers","Tiled Portfolio","Dark Mode","Striking Visuals"],"card_description":"Visually striking multipurpose theme with tiled sections and full-screen headers.","category":"Portfolio","card_image":"/assets/images/themes/forty-card.webp","theme_screenshots":["/assets/images/themes/forty-screenshot.webp","/assets/images/themes/forty-screenshot-2.webp","/assets/images/themes/forty-screenshot-3.webp"],"demo_url":"https://andrewbanchich.github.io/forty-jekyll-theme/","github_url":"https://github.com/andrewbanchich/forty-jekyll-theme","author":"GitHub Community","github_author_name":"Andrew Banchich","github_author_url":"https://github.com/andrewbanchich","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC3","stars":1100,"forks":1200,"features":["Tile-based portfolio grid","Full-screen banner","Dark/light tile contrast","Contact form","Portfolio and blog sections"],"slug":"forty","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/freelancer.md","relative_path":"_themes/freelancer.md","excerpt":"<p>Freelancer is a Jekyll port of Start Bootstrap’s popular Freelancer theme β€” a one-page scrolling layout built for designers and developers showcasing their work.</p>\n\n","previous":{"path":"_themes/forty.md","relative_path":"_themes/forty.md","excerpt":"<p>Forty is a Jekyll port of the popular HTML5 UP design of the same name. Its bold tile-based layout creates a striking visual grid where each tile can show off a project, case study, or article.</p>\n\n","previous":{"path":"_themes/flexible-jekyll.md","relative_path":"_themes/flexible-jekyll.md","id":"/themes/flexible-jekyll","collection":"themes","url":"/themes/flexible-jekyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Flexible Jekyll","description":"A simple and clean Jekyll theme with a minimal design, dark mode support, tag pages, and a flexible two-column layout.","key_features":["Dark Mode","Two-Column Layout","Tag Pages","Clean Design"],"card_description":"Simple, clean blog with dark mode and flexible two-column layout.","category":"Blog","card_image":"/assets/images/themes/flexible-jekyll-card.webp","theme_screenshots":["/assets/images/themes/flexible-jekyll-screenshot.webp","/assets/images/themes/flexible-jekyll-screenshot-2.webp","/assets/images/themes/flexible-jekyll-screenshot-3.webp"],"demo_url":"https://artemsheludko.github.io/flexible-jekyll/","github_url":"https://github.com/artemsheludko/flexible-jekyll","author":"GitHub Community","github_author_name":"artemsheludko","github_author_url":"https://github.com/artemsheludko","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2025-06-21","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":782,"forks":449,"features":["Light and dark mode","Two-column layout","Tag archive pages","Author sidebar","Featured post images","Disqus comments","Google Analytics","Social media links","GitHub Pages compatible","Clean minimal design"],"slug":"flexible-jekyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/forty","collection":"themes","next":{"path":"_themes/freelancer.md","relative_path":"_themes/freelancer.md","id":"/themes/freelancer","collection":"themes","url":"/themes/freelancer/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Freelancer Jekyll Theme","description":"A flat design landing page and portfolio Jekyll theme based on the popular Freelancer Bootstrap theme by Start Bootstrap.","key_features":["One-Page Portfolio","Project Showcase","Contact Form","Bootstrap Based"],"card_description":"Flat design portfolio and landing page theme for freelancers.","category":"Portfolio","card_image":"/assets/images/themes/freelancer-card.webp","theme_screenshots":["/assets/images/themes/freelancer-screenshot.webp","/assets/images/themes/freelancer-screenshot-2.webp","/assets/images/themes/freelancer-screenshot-3.webp"],"demo_url":"https://jeromelachaud.com/freelancer-theme/","github_url":"https://github.com/jeromelachaud/freelancer-theme","author":"GitHub Community","github_author_name":"Jerome Lachaud","github_author_url":"https://github.com/jeromelachaud","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1488,"forks":623,"features":["One-page scrolling layout","Portfolio grid with modals","Flat design aesthetic","Bootstrap 3 powered","Contact form section","Smooth scroll navigation","Animated header","Skills section","GitHub Pages compatible","Fully responsive"],"slug":"freelancer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Forty is a Jekyll port of the popular HTML5 UP design of the same name. Its bold tile-based layout creates a striking visual grid where each tile can show off a project, case study, or article.\n\nThe alternating dark and light tiles create visual rhythm and make each piece of work feel intentional.\n\n**Who is it for?** Designers, photographers, and creatives who want a visually bold portfolio site that showcases work in large format.\n","url":"/themes/forty/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Forty Jekyll Theme","description":"A visually striking multipurpose Jekyll theme inspired by HTML5 UP. Features tiled project sections and high-impact full-screen headers.","key_features":["Full-Screen Headers","Tiled Portfolio","Dark Mode","Striking Visuals"],"card_description":"Visually striking multipurpose theme with tiled sections and full-screen headers.","category":"Portfolio","card_image":"/assets/images/themes/forty-card.webp","theme_screenshots":["/assets/images/themes/forty-screenshot.webp","/assets/images/themes/forty-screenshot-2.webp","/assets/images/themes/forty-screenshot-3.webp"],"demo_url":"https://andrewbanchich.github.io/forty-jekyll-theme/","github_url":"https://github.com/andrewbanchich/forty-jekyll-theme","author":"GitHub Community","github_author_name":"Andrew Banchich","github_author_url":"https://github.com/andrewbanchich","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC3","stars":1100,"forks":1200,"features":["Tile-based portfolio grid","Full-screen banner","Dark/light tile contrast","Contact form","Portfolio and blog sections"],"slug":"forty","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/freelancer","collection":"themes","next":{"path":"_themes/hacker-blog.md","relative_path":"_themes/hacker-blog.md","excerpt":"<p>Hacker Blog is a no-frills, terminal-inspired Jekyll blog theme for developers who want their writing space to feel like their workspace. Black background, monospace font, green or white text β€” that’s it.</p>\n\n","previous":{"path":"_themes/freelancer.md","relative_path":"_themes/freelancer.md","id":"/themes/freelancer","collection":"themes","url":"/themes/freelancer/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Freelancer Jekyll Theme","description":"A flat design landing page and portfolio Jekyll theme based on the popular Freelancer Bootstrap theme by Start Bootstrap.","key_features":["One-Page Portfolio","Project Showcase","Contact Form","Bootstrap Based"],"card_description":"Flat design portfolio and landing page theme for freelancers.","category":"Portfolio","card_image":"/assets/images/themes/freelancer-card.webp","theme_screenshots":["/assets/images/themes/freelancer-screenshot.webp","/assets/images/themes/freelancer-screenshot-2.webp","/assets/images/themes/freelancer-screenshot-3.webp"],"demo_url":"https://jeromelachaud.com/freelancer-theme/","github_url":"https://github.com/jeromelachaud/freelancer-theme","author":"GitHub Community","github_author_name":"Jerome Lachaud","github_author_url":"https://github.com/jeromelachaud","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1488,"forks":623,"features":["One-page scrolling layout","Portfolio grid with modals","Flat design aesthetic","Bootstrap 3 powered","Contact form section","Smooth scroll navigation","Animated header","Skills section","GitHub Pages compatible","Fully responsive"],"slug":"freelancer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hacker-blog","collection":"themes","next":{"path":"_themes/hacker.md","relative_path":"_themes/hacker.md","id":"/themes/hacker","collection":"themes","url":"/themes/hacker/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Jekyll Theme","description":"The official GitHub Pages hacker Jekyll theme. Dark terminal-style design with monospace typography, built for developer project pages.","key_features":["Hacker Style","GitHub Pages","Minimal Design","Fast Loading"],"card_description":"Official GitHub Pages hacker theme with dark terminal-style design.","category":"Personal","card_image":"/assets/images/themes/hacker-card.webp","theme_screenshots":["/assets/images/themes/hacker-screenshot.webp","/assets/images/themes/hacker-screenshot-2.webp","/assets/images/themes/hacker-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/hacker/","github_url":"https://github.com/pages-themes/hacker","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":600,"features":["Official GitHub Pages supported theme","Terminal-inspired green-on-black colour scheme","Monospace typography throughout","Responsive layout","Single-line enable via _config.yml","No local setup required","Instant dark aesthetic"],"slug":"hacker","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hacker Blog is a no-frills, terminal-inspired Jekyll blog theme for developers who want their writing space to feel like their workspace. Black background, monospace font, green or white text β€” that's it.\n\nNo images, no social buttons, no distractions. Just your words, formatted like a terminal.\n\n**Who is it for?** Developers and hackers who want a minimal, dark, CLI-aesthetic blog.\n","url":"/themes/hacker-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Blog Jekyll Theme","description":"A minimal, terminal-inspired dark Jekyll blog theme for developers. Pure CLI aesthetic β€” black background, monospace font, zero distractions.","key_features":["Terminal Aesthetic","GitHub Pages","Fast Loading","Minimal Design"],"card_description":"Terminal-inspired dark blog β€” monospace, minimal, distraction-free.","category":"Blog","card_image":"/assets/images/themes/hacker-blog-card.webp","theme_screenshots":["/assets/images/themes/hacker-blog-screenshot.webp","/assets/images/themes/hacker-blog-screenshot-2.webp","/assets/images/themes/hacker-blog-screenshot-3.webp"],"demo_url":"https://tocttou.github.io/hacker-blog/","github_url":"https://github.com/tocttou/hacker-blog","author":"GitHub Community","github_author_name":"Ashish Chaudhary","github_author_url":"https://github.com/tocttou","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-03-05","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1200,"forks":380,"features":["Terminal-inspired aesthetic","Pure dark mode","Minimal layout","Fast loading","No JavaScript"],"slug":"hacker-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Freelancer is a Jekyll port of Start Bootstrap's popular Freelancer theme β€” a one-page scrolling layout built for designers and developers showcasing their work.\n\nThe portfolio grid opens each project in a modal overlay, keeping the visitor on the same page. A flat design aesthetic with bold colours makes it stand out without being cluttered.\n\n**Who is it for?** Freelancers and designers who want a polished single-page portfolio to showcase their work and attract clients.\n","url":"/themes/freelancer/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Freelancer Jekyll Theme","description":"A flat design landing page and portfolio Jekyll theme based on the popular Freelancer Bootstrap theme by Start Bootstrap.","key_features":["One-Page Portfolio","Project Showcase","Contact Form","Bootstrap Based"],"card_description":"Flat design portfolio and landing page theme for freelancers.","category":"Portfolio","card_image":"/assets/images/themes/freelancer-card.webp","theme_screenshots":["/assets/images/themes/freelancer-screenshot.webp","/assets/images/themes/freelancer-screenshot-2.webp","/assets/images/themes/freelancer-screenshot-3.webp"],"demo_url":"https://jeromelachaud.com/freelancer-theme/","github_url":"https://github.com/jeromelachaud/freelancer-theme","author":"GitHub Community","github_author_name":"Jerome Lachaud","github_author_url":"https://github.com/jeromelachaud","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1488,"forks":623,"features":["One-page scrolling layout","Portfolio grid with modals","Flat design aesthetic","Bootstrap 3 powered","Contact form section","Smooth scroll navigation","Animated header","Skills section","GitHub Pages compatible","Fully responsive"],"slug":"freelancer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/hacker-blog.md","relative_path":"_themes/hacker-blog.md","excerpt":"<p>Hacker Blog is a no-frills, terminal-inspired Jekyll blog theme for developers who want their writing space to feel like their workspace. Black background, monospace font, green or white text β€” that’s it.</p>\n\n","previous":{"path":"_themes/freelancer.md","relative_path":"_themes/freelancer.md","excerpt":"<p>Freelancer is a Jekyll port of Start Bootstrap’s popular Freelancer theme β€” a one-page scrolling layout built for designers and developers showcasing their work.</p>\n\n","previous":{"path":"_themes/forty.md","relative_path":"_themes/forty.md","id":"/themes/forty","collection":"themes","url":"/themes/forty/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Forty Jekyll Theme","description":"A visually striking multipurpose Jekyll theme inspired by HTML5 UP. Features tiled project sections and high-impact full-screen headers.","key_features":["Full-Screen Headers","Tiled Portfolio","Dark Mode","Striking Visuals"],"card_description":"Visually striking multipurpose theme with tiled sections and full-screen headers.","category":"Portfolio","card_image":"/assets/images/themes/forty-card.webp","theme_screenshots":["/assets/images/themes/forty-screenshot.webp","/assets/images/themes/forty-screenshot-2.webp","/assets/images/themes/forty-screenshot-3.webp"],"demo_url":"https://andrewbanchich.github.io/forty-jekyll-theme/","github_url":"https://github.com/andrewbanchich/forty-jekyll-theme","author":"GitHub Community","github_author_name":"Andrew Banchich","github_author_url":"https://github.com/andrewbanchich","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC3","stars":1100,"forks":1200,"features":["Tile-based portfolio grid","Full-screen banner","Dark/light tile contrast","Contact form","Portfolio and blog sections"],"slug":"forty","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/freelancer","collection":"themes","next":{"path":"_themes/hacker-blog.md","relative_path":"_themes/hacker-blog.md","id":"/themes/hacker-blog","collection":"themes","url":"/themes/hacker-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Blog Jekyll Theme","description":"A minimal, terminal-inspired dark Jekyll blog theme for developers. Pure CLI aesthetic β€” black background, monospace font, zero distractions.","key_features":["Terminal Aesthetic","GitHub Pages","Fast Loading","Minimal Design"],"card_description":"Terminal-inspired dark blog β€” monospace, minimal, distraction-free.","category":"Blog","card_image":"/assets/images/themes/hacker-blog-card.webp","theme_screenshots":["/assets/images/themes/hacker-blog-screenshot.webp","/assets/images/themes/hacker-blog-screenshot-2.webp","/assets/images/themes/hacker-blog-screenshot-3.webp"],"demo_url":"https://tocttou.github.io/hacker-blog/","github_url":"https://github.com/tocttou/hacker-blog","author":"GitHub Community","github_author_name":"Ashish Chaudhary","github_author_url":"https://github.com/tocttou","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-03-05","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1200,"forks":380,"features":["Terminal-inspired aesthetic","Pure dark mode","Minimal layout","Fast loading","No JavaScript"],"slug":"hacker-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Freelancer is a Jekyll port of Start Bootstrap's popular Freelancer theme β€” a one-page scrolling layout built for designers and developers showcasing their work.\n\nThe portfolio grid opens each project in a modal overlay, keeping the visitor on the same page. A flat design aesthetic with bold colours makes it stand out without being cluttered.\n\n**Who is it for?** Freelancers and designers who want a polished single-page portfolio to showcase their work and attract clients.\n","url":"/themes/freelancer/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Freelancer Jekyll Theme","description":"A flat design landing page and portfolio Jekyll theme based on the popular Freelancer Bootstrap theme by Start Bootstrap.","key_features":["One-Page Portfolio","Project Showcase","Contact Form","Bootstrap Based"],"card_description":"Flat design portfolio and landing page theme for freelancers.","category":"Portfolio","card_image":"/assets/images/themes/freelancer-card.webp","theme_screenshots":["/assets/images/themes/freelancer-screenshot.webp","/assets/images/themes/freelancer-screenshot-2.webp","/assets/images/themes/freelancer-screenshot-3.webp"],"demo_url":"https://jeromelachaud.com/freelancer-theme/","github_url":"https://github.com/jeromelachaud/freelancer-theme","author":"GitHub Community","github_author_name":"Jerome Lachaud","github_author_url":"https://github.com/jeromelachaud","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1488,"forks":623,"features":["One-page scrolling layout","Portfolio grid with modals","Flat design aesthetic","Bootstrap 3 powered","Contact form section","Smooth scroll navigation","Animated header","Skills section","GitHub Pages compatible","Fully responsive"],"slug":"freelancer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hacker-blog","collection":"themes","next":{"path":"_themes/hacker.md","relative_path":"_themes/hacker.md","excerpt":"<p>Hacker is GitHub’s terminal-aesthetic official theme β€” green text on a black background, monospace type throughout, and the unmistakable look of a classic command-line interface. It’s the most distinctive of the official themes and immediately signals a technical, developer identity.</p>\n\n","previous":{"path":"_themes/hacker-blog.md","relative_path":"_themes/hacker-blog.md","id":"/themes/hacker-blog","collection":"themes","url":"/themes/hacker-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Blog Jekyll Theme","description":"A minimal, terminal-inspired dark Jekyll blog theme for developers. Pure CLI aesthetic β€” black background, monospace font, zero distractions.","key_features":["Terminal Aesthetic","GitHub Pages","Fast Loading","Minimal Design"],"card_description":"Terminal-inspired dark blog β€” monospace, minimal, distraction-free.","category":"Blog","card_image":"/assets/images/themes/hacker-blog-card.webp","theme_screenshots":["/assets/images/themes/hacker-blog-screenshot.webp","/assets/images/themes/hacker-blog-screenshot-2.webp","/assets/images/themes/hacker-blog-screenshot-3.webp"],"demo_url":"https://tocttou.github.io/hacker-blog/","github_url":"https://github.com/tocttou/hacker-blog","author":"GitHub Community","github_author_name":"Ashish Chaudhary","github_author_url":"https://github.com/tocttou","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-03-05","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1200,"forks":380,"features":["Terminal-inspired aesthetic","Pure dark mode","Minimal layout","Fast loading","No JavaScript"],"slug":"hacker-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hacker","collection":"themes","next":{"path":"_themes/hitchens.md","relative_path":"_themes/hitchens.md","id":"/themes/hitchens","collection":"themes","url":"/themes/hitchens/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hitchens Jekyll Theme","description":"An unfussy Jekyll theme for serious writers. Minimal design, elegant typography, and a dark mode β€” inspired by the prose of Christopher Hitchens.","key_features":["Minimal Design","Typography Focus","Reading Time","GitHub Pages"],"card_description":"Unfussy, elegant theme for serious writers with dark mode built in.","category":"Blog","card_image":"/assets/images/themes/hitchens-card.webp","theme_screenshots":["/assets/images/themes/hitchens-screenshot.webp","/assets/images/themes/hitchens-screenshot-2.webp","/assets/images/themes/hitchens-screenshot-3.webp"],"demo_url":"https://hitchens.patdryburgh.com/","github_url":"https://github.com/patdryburgh/hitchens","author":"GitHub Community","github_author_name":"patdryburgh","github_author_url":"https://github.com/patdryburgh","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":381,"forks":146,"features":["Typography-first design","Built-in dark mode","Minimal navigation","Clean post layout","Reading time estimate","Tag pages","RSS feed","GitHub Pages compatible","No JavaScript dependencies","Print-friendly styles"],"slug":"hitchens","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hacker is GitHub's terminal-aesthetic official theme β€” green text on a black background, monospace type throughout, and the unmistakable look of a classic command-line interface. It's the most distinctive of the official themes and immediately signals a technical, developer identity.\n\nAs an official GitHub Pages theme, setup is a single line in `_config.yml`. It's a popular choice for security researchers, CTF writeups, developer portfolios, and any project that wants to wear its technical credentials visually.\n\n**Who is it for?** Developers, security researchers, and technical writers who want their site to look like it was built by someone who knows their way around a terminal.\n","url":"/themes/hacker/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Jekyll Theme","description":"The official GitHub Pages hacker Jekyll theme. Dark terminal-style design with monospace typography, built for developer project pages.","key_features":["Hacker Style","GitHub Pages","Minimal Design","Fast Loading"],"card_description":"Official GitHub Pages hacker theme with dark terminal-style design.","category":"Personal","card_image":"/assets/images/themes/hacker-card.webp","theme_screenshots":["/assets/images/themes/hacker-screenshot.webp","/assets/images/themes/hacker-screenshot-2.webp","/assets/images/themes/hacker-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/hacker/","github_url":"https://github.com/pages-themes/hacker","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":600,"features":["Official GitHub Pages supported theme","Terminal-inspired green-on-black colour scheme","Monospace typography throughout","Responsive layout","Single-line enable via _config.yml","No local setup required","Instant dark aesthetic"],"slug":"hacker","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hacker Blog is a no-frills, terminal-inspired Jekyll blog theme for developers who want their writing space to feel like their workspace. Black background, monospace font, green or white text β€” that's it.\n\nNo images, no social buttons, no distractions. Just your words, formatted like a terminal.\n\n**Who is it for?** Developers and hackers who want a minimal, dark, CLI-aesthetic blog.\n","url":"/themes/hacker-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Blog Jekyll Theme","description":"A minimal, terminal-inspired dark Jekyll blog theme for developers. Pure CLI aesthetic β€” black background, monospace font, zero distractions.","key_features":["Terminal Aesthetic","GitHub Pages","Fast Loading","Minimal Design"],"card_description":"Terminal-inspired dark blog β€” monospace, minimal, distraction-free.","category":"Blog","card_image":"/assets/images/themes/hacker-blog-card.webp","theme_screenshots":["/assets/images/themes/hacker-blog-screenshot.webp","/assets/images/themes/hacker-blog-screenshot-2.webp","/assets/images/themes/hacker-blog-screenshot-3.webp"],"demo_url":"https://tocttou.github.io/hacker-blog/","github_url":"https://github.com/tocttou/hacker-blog","author":"GitHub Community","github_author_name":"Ashish Chaudhary","github_author_url":"https://github.com/tocttou","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-03-05","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1200,"forks":380,"features":["Terminal-inspired aesthetic","Pure dark mode","Minimal layout","Fast loading","No JavaScript"],"slug":"hacker-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/hacker.md","relative_path":"_themes/hacker.md","excerpt":"<p>Hacker is GitHub’s terminal-aesthetic official theme β€” green text on a black background, monospace type throughout, and the unmistakable look of a classic command-line interface. It’s the most distinctive of the official themes and immediately signals a technical, developer identity.</p>\n\n","previous":{"path":"_themes/hacker-blog.md","relative_path":"_themes/hacker-blog.md","excerpt":"<p>Hacker Blog is a no-frills, terminal-inspired Jekyll blog theme for developers who want their writing space to feel like their workspace. Black background, monospace font, green or white text β€” that’s it.</p>\n\n","previous":{"path":"_themes/freelancer.md","relative_path":"_themes/freelancer.md","id":"/themes/freelancer","collection":"themes","url":"/themes/freelancer/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Freelancer Jekyll Theme","description":"A flat design landing page and portfolio Jekyll theme based on the popular Freelancer Bootstrap theme by Start Bootstrap.","key_features":["One-Page Portfolio","Project Showcase","Contact Form","Bootstrap Based"],"card_description":"Flat design portfolio and landing page theme for freelancers.","category":"Portfolio","card_image":"/assets/images/themes/freelancer-card.webp","theme_screenshots":["/assets/images/themes/freelancer-screenshot.webp","/assets/images/themes/freelancer-screenshot-2.webp","/assets/images/themes/freelancer-screenshot-3.webp"],"demo_url":"https://jeromelachaud.com/freelancer-theme/","github_url":"https://github.com/jeromelachaud/freelancer-theme","author":"GitHub Community","github_author_name":"Jerome Lachaud","github_author_url":"https://github.com/jeromelachaud","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-20","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1488,"forks":623,"features":["One-page scrolling layout","Portfolio grid with modals","Flat design aesthetic","Bootstrap 3 powered","Contact form section","Smooth scroll navigation","Animated header","Skills section","GitHub Pages compatible","Fully responsive"],"slug":"freelancer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hacker-blog","collection":"themes","next":{"path":"_themes/hacker.md","relative_path":"_themes/hacker.md","id":"/themes/hacker","collection":"themes","url":"/themes/hacker/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Jekyll Theme","description":"The official GitHub Pages hacker Jekyll theme. Dark terminal-style design with monospace typography, built for developer project pages.","key_features":["Hacker Style","GitHub Pages","Minimal Design","Fast Loading"],"card_description":"Official GitHub Pages hacker theme with dark terminal-style design.","category":"Personal","card_image":"/assets/images/themes/hacker-card.webp","theme_screenshots":["/assets/images/themes/hacker-screenshot.webp","/assets/images/themes/hacker-screenshot-2.webp","/assets/images/themes/hacker-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/hacker/","github_url":"https://github.com/pages-themes/hacker","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":600,"features":["Official GitHub Pages supported theme","Terminal-inspired green-on-black colour scheme","Monospace typography throughout","Responsive layout","Single-line enable via _config.yml","No local setup required","Instant dark aesthetic"],"slug":"hacker","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hacker Blog is a no-frills, terminal-inspired Jekyll blog theme for developers who want their writing space to feel like their workspace. Black background, monospace font, green or white text β€” that's it.\n\nNo images, no social buttons, no distractions. Just your words, formatted like a terminal.\n\n**Who is it for?** Developers and hackers who want a minimal, dark, CLI-aesthetic blog.\n","url":"/themes/hacker-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Blog Jekyll Theme","description":"A minimal, terminal-inspired dark Jekyll blog theme for developers. Pure CLI aesthetic β€” black background, monospace font, zero distractions.","key_features":["Terminal Aesthetic","GitHub Pages","Fast Loading","Minimal Design"],"card_description":"Terminal-inspired dark blog β€” monospace, minimal, distraction-free.","category":"Blog","card_image":"/assets/images/themes/hacker-blog-card.webp","theme_screenshots":["/assets/images/themes/hacker-blog-screenshot.webp","/assets/images/themes/hacker-blog-screenshot-2.webp","/assets/images/themes/hacker-blog-screenshot-3.webp"],"demo_url":"https://tocttou.github.io/hacker-blog/","github_url":"https://github.com/tocttou/hacker-blog","author":"GitHub Community","github_author_name":"Ashish Chaudhary","github_author_url":"https://github.com/tocttou","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-03-05","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1200,"forks":380,"features":["Terminal-inspired aesthetic","Pure dark mode","Minimal layout","Fast loading","No JavaScript"],"slug":"hacker-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hacker","collection":"themes","next":{"path":"_themes/hitchens.md","relative_path":"_themes/hitchens.md","excerpt":"<p>Hitchens is named after Christopher Hitchens and designed for writers who share his devotion to the written word. The design is austere by intention β€” every pixel either serves the text or stays out of the way.</p>\n\n","previous":{"path":"_themes/hacker.md","relative_path":"_themes/hacker.md","id":"/themes/hacker","collection":"themes","url":"/themes/hacker/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Jekyll Theme","description":"The official GitHub Pages hacker Jekyll theme. Dark terminal-style design with monospace typography, built for developer project pages.","key_features":["Hacker Style","GitHub Pages","Minimal Design","Fast Loading"],"card_description":"Official GitHub Pages hacker theme with dark terminal-style design.","category":"Personal","card_image":"/assets/images/themes/hacker-card.webp","theme_screenshots":["/assets/images/themes/hacker-screenshot.webp","/assets/images/themes/hacker-screenshot-2.webp","/assets/images/themes/hacker-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/hacker/","github_url":"https://github.com/pages-themes/hacker","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":600,"features":["Official GitHub Pages supported theme","Terminal-inspired green-on-black colour scheme","Monospace typography throughout","Responsive layout","Single-line enable via _config.yml","No local setup required","Instant dark aesthetic"],"slug":"hacker","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hitchens","collection":"themes","next":{"path":"_themes/hpstr.md","relative_path":"_themes/hpstr.md","id":"/themes/hpstr","collection":"themes","url":"/themes/hpstr/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"HPSTR Jekyll Theme","description":"A responsive, full-featured Jekyll blog theme by Michael Rose. Rich with image-forward posts, sliding panel navigation, and social sharing.","key_features":["Featured Images","Sliding Navigation","Social Sharing","GitHub Pages"],"card_description":"Image-forward blog with sliding panel navigation and social sharing.","category":"Blog","card_image":"/assets/images/themes/hpstr-card.webp","theme_screenshots":["/assets/images/themes/hpstr-screenshot.webp","/assets/images/themes/hpstr-screenshot-2.webp","/assets/images/themes/hpstr-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/hpstr-jekyll-theme/","github_url":"https://github.com/mmistakes/hpstr-jekyll-theme","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2021-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1100,"forks":700,"features":["Large featured header images per post","Smooth CSS animations and transitions","Responsive mobile-first design","Sliding menu navigation","Disqus comments","Google Analytics","Tag and category pages","Syntax highlighting","Social sharing buttons","GitHub Pages compatible"],"slug":"hpstr","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hitchens is named after Christopher Hitchens and designed for writers who share his devotion to the written word. The design is austere by intention β€” every pixel either serves the text or stays out of the way.\n\nDark mode is built in and toggleable, and the theme runs without a single line of JavaScript on the reader's device.\n\n**Who is it for?** Essayists, journalists, and serious writers who want a sophisticated, literary reading experience.\n","url":"/themes/hitchens/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hitchens Jekyll Theme","description":"An unfussy Jekyll theme for serious writers. Minimal design, elegant typography, and a dark mode β€” inspired by the prose of Christopher Hitchens.","key_features":["Minimal Design","Typography Focus","Reading Time","GitHub Pages"],"card_description":"Unfussy, elegant theme for serious writers with dark mode built in.","category":"Blog","card_image":"/assets/images/themes/hitchens-card.webp","theme_screenshots":["/assets/images/themes/hitchens-screenshot.webp","/assets/images/themes/hitchens-screenshot-2.webp","/assets/images/themes/hitchens-screenshot-3.webp"],"demo_url":"https://hitchens.patdryburgh.com/","github_url":"https://github.com/patdryburgh/hitchens","author":"GitHub Community","github_author_name":"patdryburgh","github_author_url":"https://github.com/patdryburgh","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":381,"forks":146,"features":["Typography-first design","Built-in dark mode","Minimal navigation","Clean post layout","Reading time estimate","Tag pages","RSS feed","GitHub Pages compatible","No JavaScript dependencies","Print-friendly styles"],"slug":"hitchens","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hacker is GitHub's terminal-aesthetic official theme β€” green text on a black background, monospace type throughout, and the unmistakable look of a classic command-line interface. It's the most distinctive of the official themes and immediately signals a technical, developer identity.\n\nAs an official GitHub Pages theme, setup is a single line in `_config.yml`. It's a popular choice for security researchers, CTF writeups, developer portfolios, and any project that wants to wear its technical credentials visually.\n\n**Who is it for?** Developers, security researchers, and technical writers who want their site to look like it was built by someone who knows their way around a terminal.\n","url":"/themes/hacker/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Jekyll Theme","description":"The official GitHub Pages hacker Jekyll theme. Dark terminal-style design with monospace typography, built for developer project pages.","key_features":["Hacker Style","GitHub Pages","Minimal Design","Fast Loading"],"card_description":"Official GitHub Pages hacker theme with dark terminal-style design.","category":"Personal","card_image":"/assets/images/themes/hacker-card.webp","theme_screenshots":["/assets/images/themes/hacker-screenshot.webp","/assets/images/themes/hacker-screenshot-2.webp","/assets/images/themes/hacker-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/hacker/","github_url":"https://github.com/pages-themes/hacker","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":600,"features":["Official GitHub Pages supported theme","Terminal-inspired green-on-black colour scheme","Monospace typography throughout","Responsive layout","Single-line enable via _config.yml","No local setup required","Instant dark aesthetic"],"slug":"hacker","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/hitchens.md","relative_path":"_themes/hitchens.md","excerpt":"<p>Hitchens is named after Christopher Hitchens and designed for writers who share his devotion to the written word. The design is austere by intention β€” every pixel either serves the text or stays out of the way.</p>\n\n","previous":{"path":"_themes/hacker.md","relative_path":"_themes/hacker.md","excerpt":"<p>Hacker is GitHub’s terminal-aesthetic official theme β€” green text on a black background, monospace type throughout, and the unmistakable look of a classic command-line interface. It’s the most distinctive of the official themes and immediately signals a technical, developer identity.</p>\n\n","previous":{"path":"_themes/hacker-blog.md","relative_path":"_themes/hacker-blog.md","id":"/themes/hacker-blog","collection":"themes","url":"/themes/hacker-blog/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Blog Jekyll Theme","description":"A minimal, terminal-inspired dark Jekyll blog theme for developers. Pure CLI aesthetic β€” black background, monospace font, zero distractions.","key_features":["Terminal Aesthetic","GitHub Pages","Fast Loading","Minimal Design"],"card_description":"Terminal-inspired dark blog β€” monospace, minimal, distraction-free.","category":"Blog","card_image":"/assets/images/themes/hacker-blog-card.webp","theme_screenshots":["/assets/images/themes/hacker-blog-screenshot.webp","/assets/images/themes/hacker-blog-screenshot-2.webp","/assets/images/themes/hacker-blog-screenshot-3.webp"],"demo_url":"https://tocttou.github.io/hacker-blog/","github_url":"https://github.com/tocttou/hacker-blog","author":"GitHub Community","github_author_name":"Ashish Chaudhary","github_author_url":"https://github.com/tocttou","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-03-05","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1200,"forks":380,"features":["Terminal-inspired aesthetic","Pure dark mode","Minimal layout","Fast loading","No JavaScript"],"slug":"hacker-blog","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hacker","collection":"themes","next":{"path":"_themes/hitchens.md","relative_path":"_themes/hitchens.md","id":"/themes/hitchens","collection":"themes","url":"/themes/hitchens/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hitchens Jekyll Theme","description":"An unfussy Jekyll theme for serious writers. Minimal design, elegant typography, and a dark mode β€” inspired by the prose of Christopher Hitchens.","key_features":["Minimal Design","Typography Focus","Reading Time","GitHub Pages"],"card_description":"Unfussy, elegant theme for serious writers with dark mode built in.","category":"Blog","card_image":"/assets/images/themes/hitchens-card.webp","theme_screenshots":["/assets/images/themes/hitchens-screenshot.webp","/assets/images/themes/hitchens-screenshot-2.webp","/assets/images/themes/hitchens-screenshot-3.webp"],"demo_url":"https://hitchens.patdryburgh.com/","github_url":"https://github.com/patdryburgh/hitchens","author":"GitHub Community","github_author_name":"patdryburgh","github_author_url":"https://github.com/patdryburgh","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":381,"forks":146,"features":["Typography-first design","Built-in dark mode","Minimal navigation","Clean post layout","Reading time estimate","Tag pages","RSS feed","GitHub Pages compatible","No JavaScript dependencies","Print-friendly styles"],"slug":"hitchens","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hacker is GitHub's terminal-aesthetic official theme β€” green text on a black background, monospace type throughout, and the unmistakable look of a classic command-line interface. It's the most distinctive of the official themes and immediately signals a technical, developer identity.\n\nAs an official GitHub Pages theme, setup is a single line in `_config.yml`. It's a popular choice for security researchers, CTF writeups, developer portfolios, and any project that wants to wear its technical credentials visually.\n\n**Who is it for?** Developers, security researchers, and technical writers who want their site to look like it was built by someone who knows their way around a terminal.\n","url":"/themes/hacker/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Jekyll Theme","description":"The official GitHub Pages hacker Jekyll theme. Dark terminal-style design with monospace typography, built for developer project pages.","key_features":["Hacker Style","GitHub Pages","Minimal Design","Fast Loading"],"card_description":"Official GitHub Pages hacker theme with dark terminal-style design.","category":"Personal","card_image":"/assets/images/themes/hacker-card.webp","theme_screenshots":["/assets/images/themes/hacker-screenshot.webp","/assets/images/themes/hacker-screenshot-2.webp","/assets/images/themes/hacker-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/hacker/","github_url":"https://github.com/pages-themes/hacker","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":600,"features":["Official GitHub Pages supported theme","Terminal-inspired green-on-black colour scheme","Monospace typography throughout","Responsive layout","Single-line enable via _config.yml","No local setup required","Instant dark aesthetic"],"slug":"hacker","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hitchens","collection":"themes","next":{"path":"_themes/hpstr.md","relative_path":"_themes/hpstr.md","excerpt":"<p>HPSTR (pronounced β€œhipster”) is one of Michael Rose’s earlier Jekyll themes and remains one of the most visually striking options in the ecosystem. Its defining feature is the large full-width header image on each post β€” combined with smooth CSS animations, it creates a reading experience that feels polished and intentional.</p>\n\n","previous":{"path":"_themes/hitchens.md","relative_path":"_themes/hitchens.md","id":"/themes/hitchens","collection":"themes","url":"/themes/hitchens/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hitchens Jekyll Theme","description":"An unfussy Jekyll theme for serious writers. Minimal design, elegant typography, and a dark mode β€” inspired by the prose of Christopher Hitchens.","key_features":["Minimal Design","Typography Focus","Reading Time","GitHub Pages"],"card_description":"Unfussy, elegant theme for serious writers with dark mode built in.","category":"Blog","card_image":"/assets/images/themes/hitchens-card.webp","theme_screenshots":["/assets/images/themes/hitchens-screenshot.webp","/assets/images/themes/hitchens-screenshot-2.webp","/assets/images/themes/hitchens-screenshot-3.webp"],"demo_url":"https://hitchens.patdryburgh.com/","github_url":"https://github.com/patdryburgh/hitchens","author":"GitHub Community","github_author_name":"patdryburgh","github_author_url":"https://github.com/patdryburgh","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":381,"forks":146,"features":["Typography-first design","Built-in dark mode","Minimal navigation","Clean post layout","Reading time estimate","Tag pages","RSS feed","GitHub Pages compatible","No JavaScript dependencies","Print-friendly styles"],"slug":"hitchens","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hpstr","collection":"themes","next":{"path":"_themes/huxpro.md","relative_path":"_themes/huxpro.md","id":"/themes/huxpro","collection":"themes","url":"/themes/huxpro/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Huxpro Jekyll Theme","description":"A beautiful, cover-image-driven Jekyll blog theme inspired by Ghost's Casper. Features full-screen hero images, smooth transitions, and a clean reading experience.","key_features":["Full-Screen Hero","Cover Images","Ghost-Inspired","Smooth Transitions"],"card_description":"Cover-image-driven blog inspired by Ghost's Casper theme.","category":"Blog","card_image":"/assets/images/themes/huxpro-card.webp","theme_screenshots":["/assets/images/themes/huxpro-screenshot.webp","/assets/images/themes/huxpro-screenshot-2.webp","/assets/images/themes/huxpro-screenshot-3.webp"],"demo_url":"https://huxpro.github.io/","github_url":"https://github.com/Huxpro/huxpro.github.io","author":"GitHub Community","github_author_name":"Huxpro","github_author_url":"https://github.com/Huxpro","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-08","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":5400,"forks":1800,"features":["Full-screen cover image per post","Ghost Casper-inspired design","Smooth page transitions","Disqus comments support","Google Analytics integration","Responsive layout","Tag pages","Chinese and English content support"],"slug":"huxpro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"HPSTR (pronounced \"hipster\") is one of Michael Rose's earlier Jekyll themes and remains one of the most visually striking options in the ecosystem. Its defining feature is the large full-width header image on each post β€” combined with smooth CSS animations, it creates a reading experience that feels polished and intentional.\n\nThe sliding navigation menu and responsive layout were ahead of their time when the theme launched, and the overall design has aged well. Rose is the author of Minimal Mistakes and So Simple, so the code quality and documentation are characteristically excellent.\n\n**Who is it for?** Bloggers who want a visually bold, image-forward theme with smooth animations and a strong sense of style β€” particularly those publishing photography, design, or creative work alongside writing.\n","url":"/themes/hpstr/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"HPSTR Jekyll Theme","description":"A responsive, full-featured Jekyll blog theme by Michael Rose. Rich with image-forward posts, sliding panel navigation, and social sharing.","key_features":["Featured Images","Sliding Navigation","Social Sharing","GitHub Pages"],"card_description":"Image-forward blog with sliding panel navigation and social sharing.","category":"Blog","card_image":"/assets/images/themes/hpstr-card.webp","theme_screenshots":["/assets/images/themes/hpstr-screenshot.webp","/assets/images/themes/hpstr-screenshot-2.webp","/assets/images/themes/hpstr-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/hpstr-jekyll-theme/","github_url":"https://github.com/mmistakes/hpstr-jekyll-theme","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2021-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1100,"forks":700,"features":["Large featured header images per post","Smooth CSS animations and transitions","Responsive mobile-first design","Sliding menu navigation","Disqus comments","Google Analytics","Tag and category pages","Syntax highlighting","Social sharing buttons","GitHub Pages compatible"],"slug":"hpstr","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hitchens is named after Christopher Hitchens and designed for writers who share his devotion to the written word. The design is austere by intention β€” every pixel either serves the text or stays out of the way.\n\nDark mode is built in and toggleable, and the theme runs without a single line of JavaScript on the reader's device.\n\n**Who is it for?** Essayists, journalists, and serious writers who want a sophisticated, literary reading experience.\n","url":"/themes/hitchens/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hitchens Jekyll Theme","description":"An unfussy Jekyll theme for serious writers. Minimal design, elegant typography, and a dark mode β€” inspired by the prose of Christopher Hitchens.","key_features":["Minimal Design","Typography Focus","Reading Time","GitHub Pages"],"card_description":"Unfussy, elegant theme for serious writers with dark mode built in.","category":"Blog","card_image":"/assets/images/themes/hitchens-card.webp","theme_screenshots":["/assets/images/themes/hitchens-screenshot.webp","/assets/images/themes/hitchens-screenshot-2.webp","/assets/images/themes/hitchens-screenshot-3.webp"],"demo_url":"https://hitchens.patdryburgh.com/","github_url":"https://github.com/patdryburgh/hitchens","author":"GitHub Community","github_author_name":"patdryburgh","github_author_url":"https://github.com/patdryburgh","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":381,"forks":146,"features":["Typography-first design","Built-in dark mode","Minimal navigation","Clean post layout","Reading time estimate","Tag pages","RSS feed","GitHub Pages compatible","No JavaScript dependencies","Print-friendly styles"],"slug":"hitchens","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/hpstr.md","relative_path":"_themes/hpstr.md","excerpt":"<p>HPSTR (pronounced β€œhipster”) is one of Michael Rose’s earlier Jekyll themes and remains one of the most visually striking options in the ecosystem. Its defining feature is the large full-width header image on each post β€” combined with smooth CSS animations, it creates a reading experience that feels polished and intentional.</p>\n\n","previous":{"path":"_themes/hitchens.md","relative_path":"_themes/hitchens.md","excerpt":"<p>Hitchens is named after Christopher Hitchens and designed for writers who share his devotion to the written word. The design is austere by intention β€” every pixel either serves the text or stays out of the way.</p>\n\n","previous":{"path":"_themes/hacker.md","relative_path":"_themes/hacker.md","id":"/themes/hacker","collection":"themes","url":"/themes/hacker/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hacker Jekyll Theme","description":"The official GitHub Pages hacker Jekyll theme. Dark terminal-style design with monospace typography, built for developer project pages.","key_features":["Hacker Style","GitHub Pages","Minimal Design","Fast Loading"],"card_description":"Official GitHub Pages hacker theme with dark terminal-style design.","category":"Personal","card_image":"/assets/images/themes/hacker-card.webp","theme_screenshots":["/assets/images/themes/hacker-screenshot.webp","/assets/images/themes/hacker-screenshot-2.webp","/assets/images/themes/hacker-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/hacker/","github_url":"https://github.com/pages-themes/hacker","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":600,"features":["Official GitHub Pages supported theme","Terminal-inspired green-on-black colour scheme","Monospace typography throughout","Responsive layout","Single-line enable via _config.yml","No local setup required","Instant dark aesthetic"],"slug":"hacker","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hitchens","collection":"themes","next":{"path":"_themes/hpstr.md","relative_path":"_themes/hpstr.md","id":"/themes/hpstr","collection":"themes","url":"/themes/hpstr/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"HPSTR Jekyll Theme","description":"A responsive, full-featured Jekyll blog theme by Michael Rose. Rich with image-forward posts, sliding panel navigation, and social sharing.","key_features":["Featured Images","Sliding Navigation","Social Sharing","GitHub Pages"],"card_description":"Image-forward blog with sliding panel navigation and social sharing.","category":"Blog","card_image":"/assets/images/themes/hpstr-card.webp","theme_screenshots":["/assets/images/themes/hpstr-screenshot.webp","/assets/images/themes/hpstr-screenshot-2.webp","/assets/images/themes/hpstr-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/hpstr-jekyll-theme/","github_url":"https://github.com/mmistakes/hpstr-jekyll-theme","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2021-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1100,"forks":700,"features":["Large featured header images per post","Smooth CSS animations and transitions","Responsive mobile-first design","Sliding menu navigation","Disqus comments","Google Analytics","Tag and category pages","Syntax highlighting","Social sharing buttons","GitHub Pages compatible"],"slug":"hpstr","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hitchens is named after Christopher Hitchens and designed for writers who share his devotion to the written word. The design is austere by intention β€” every pixel either serves the text or stays out of the way.\n\nDark mode is built in and toggleable, and the theme runs without a single line of JavaScript on the reader's device.\n\n**Who is it for?** Essayists, journalists, and serious writers who want a sophisticated, literary reading experience.\n","url":"/themes/hitchens/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hitchens Jekyll Theme","description":"An unfussy Jekyll theme for serious writers. Minimal design, elegant typography, and a dark mode β€” inspired by the prose of Christopher Hitchens.","key_features":["Minimal Design","Typography Focus","Reading Time","GitHub Pages"],"card_description":"Unfussy, elegant theme for serious writers with dark mode built in.","category":"Blog","card_image":"/assets/images/themes/hitchens-card.webp","theme_screenshots":["/assets/images/themes/hitchens-screenshot.webp","/assets/images/themes/hitchens-screenshot-2.webp","/assets/images/themes/hitchens-screenshot-3.webp"],"demo_url":"https://hitchens.patdryburgh.com/","github_url":"https://github.com/patdryburgh/hitchens","author":"GitHub Community","github_author_name":"patdryburgh","github_author_url":"https://github.com/patdryburgh","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":381,"forks":146,"features":["Typography-first design","Built-in dark mode","Minimal navigation","Clean post layout","Reading time estimate","Tag pages","RSS feed","GitHub Pages compatible","No JavaScript dependencies","Print-friendly styles"],"slug":"hitchens","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hpstr","collection":"themes","next":{"path":"_themes/huxpro.md","relative_path":"_themes/huxpro.md","excerpt":"<p>Huxpro is one of the most-starred personal Jekyll blog themes on GitHub, built by Huasheng Luo as his own personal site and open-sourced for the community. Inspired by Ghost’s iconic Casper theme, it brings full-screen cover images and a magazine-quality reading experience to Jekyll.</p>\n\n","previous":{"path":"_themes/hpstr.md","relative_path":"_themes/hpstr.md","id":"/themes/hpstr","collection":"themes","url":"/themes/hpstr/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"HPSTR Jekyll Theme","description":"A responsive, full-featured Jekyll blog theme by Michael Rose. Rich with image-forward posts, sliding panel navigation, and social sharing.","key_features":["Featured Images","Sliding Navigation","Social Sharing","GitHub Pages"],"card_description":"Image-forward blog with sliding panel navigation and social sharing.","category":"Blog","card_image":"/assets/images/themes/hpstr-card.webp","theme_screenshots":["/assets/images/themes/hpstr-screenshot.webp","/assets/images/themes/hpstr-screenshot-2.webp","/assets/images/themes/hpstr-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/hpstr-jekyll-theme/","github_url":"https://github.com/mmistakes/hpstr-jekyll-theme","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2021-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1100,"forks":700,"features":["Large featured header images per post","Smooth CSS animations and transitions","Responsive mobile-first design","Sliding menu navigation","Disqus comments","Google Analytics","Tag and category pages","Syntax highlighting","Social sharing buttons","GitHub Pages compatible"],"slug":"hpstr","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/huxpro","collection":"themes","next":{"path":"_themes/hyde.md","relative_path":"_themes/hyde.md","id":"/themes/hyde","collection":"themes","url":"/themes/hyde/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hyde Jekyll Theme","description":"A brazen two-column Jekyll theme that pairs a prominent sidebar with uncomplicated content. Based on Poole, by Mark Otto.","key_features":["GitHub Pages","Sidebar Layout","Color Themes","Clean Typography"],"card_description":"Two-column theme with prominent sidebar β€” elegant and timeless.","category":"Blog","card_image":"/assets/images/themes/hyde-card.webp","theme_screenshots":["/assets/images/themes/hyde-screenshot.webp","/assets/images/themes/hyde-screenshot-2.webp","/assets/images/themes/hyde-screenshot-3.webp"],"demo_url":"https://hyde.getpoole.com/","github_url":"https://github.com/poole/hyde","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-01-25","popular":true,"trending":false,"bestseller":false,"version":"2.1.0","license":"MIT","stars":9700,"forks":3800,"features":["Persistent dark sidebar","Eight colour themes","Reverse layout variant","Clean typography","Mobile responsive"],"slug":"hyde","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Huxpro is one of the most-starred personal Jekyll blog themes on GitHub, built by Huasheng Luo as his own personal site and open-sourced for the community. Inspired by Ghost's iconic Casper theme, it brings full-screen cover images and a magazine-quality reading experience to Jekyll.\n\nEach post supports its own hero image, creating a visually rich archive page that immediately communicates the personality of a blog. The typography is clean and generous, making long-form writing genuinely pleasant to read.\n\n**Who is it for?** Writers, developers, and creatives who want a personal blog with a strong visual identity and cover-image-driven design.\n","url":"/themes/huxpro/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Huxpro Jekyll Theme","description":"A beautiful, cover-image-driven Jekyll blog theme inspired by Ghost's Casper. Features full-screen hero images, smooth transitions, and a clean reading experience.","key_features":["Full-Screen Hero","Cover Images","Ghost-Inspired","Smooth Transitions"],"card_description":"Cover-image-driven blog inspired by Ghost's Casper theme.","category":"Blog","card_image":"/assets/images/themes/huxpro-card.webp","theme_screenshots":["/assets/images/themes/huxpro-screenshot.webp","/assets/images/themes/huxpro-screenshot-2.webp","/assets/images/themes/huxpro-screenshot-3.webp"],"demo_url":"https://huxpro.github.io/","github_url":"https://github.com/Huxpro/huxpro.github.io","author":"GitHub Community","github_author_name":"Huxpro","github_author_url":"https://github.com/Huxpro","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-08","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":5400,"forks":1800,"features":["Full-screen cover image per post","Ghost Casper-inspired design","Smooth page transitions","Disqus comments support","Google Analytics integration","Responsive layout","Tag pages","Chinese and English content support"],"slug":"huxpro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"HPSTR (pronounced \"hipster\") is one of Michael Rose's earlier Jekyll themes and remains one of the most visually striking options in the ecosystem. Its defining feature is the large full-width header image on each post β€” combined with smooth CSS animations, it creates a reading experience that feels polished and intentional.\n\nThe sliding navigation menu and responsive layout were ahead of their time when the theme launched, and the overall design has aged well. Rose is the author of Minimal Mistakes and So Simple, so the code quality and documentation are characteristically excellent.\n\n**Who is it for?** Bloggers who want a visually bold, image-forward theme with smooth animations and a strong sense of style β€” particularly those publishing photography, design, or creative work alongside writing.\n","url":"/themes/hpstr/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"HPSTR Jekyll Theme","description":"A responsive, full-featured Jekyll blog theme by Michael Rose. Rich with image-forward posts, sliding panel navigation, and social sharing.","key_features":["Featured Images","Sliding Navigation","Social Sharing","GitHub Pages"],"card_description":"Image-forward blog with sliding panel navigation and social sharing.","category":"Blog","card_image":"/assets/images/themes/hpstr-card.webp","theme_screenshots":["/assets/images/themes/hpstr-screenshot.webp","/assets/images/themes/hpstr-screenshot-2.webp","/assets/images/themes/hpstr-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/hpstr-jekyll-theme/","github_url":"https://github.com/mmistakes/hpstr-jekyll-theme","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2021-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1100,"forks":700,"features":["Large featured header images per post","Smooth CSS animations and transitions","Responsive mobile-first design","Sliding menu navigation","Disqus comments","Google Analytics","Tag and category pages","Syntax highlighting","Social sharing buttons","GitHub Pages compatible"],"slug":"hpstr","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/huxpro.md","relative_path":"_themes/huxpro.md","excerpt":"<p>Huxpro is one of the most-starred personal Jekyll blog themes on GitHub, built by Huasheng Luo as his own personal site and open-sourced for the community. Inspired by Ghost’s iconic Casper theme, it brings full-screen cover images and a magazine-quality reading experience to Jekyll.</p>\n\n","previous":{"path":"_themes/hpstr.md","relative_path":"_themes/hpstr.md","excerpt":"<p>HPSTR (pronounced β€œhipster”) is one of Michael Rose’s earlier Jekyll themes and remains one of the most visually striking options in the ecosystem. Its defining feature is the large full-width header image on each post β€” combined with smooth CSS animations, it creates a reading experience that feels polished and intentional.</p>\n\n","previous":{"path":"_themes/hitchens.md","relative_path":"_themes/hitchens.md","id":"/themes/hitchens","collection":"themes","url":"/themes/hitchens/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Hitchens Jekyll Theme","description":"An unfussy Jekyll theme for serious writers. Minimal design, elegant typography, and a dark mode β€” inspired by the prose of Christopher Hitchens.","key_features":["Minimal Design","Typography Focus","Reading Time","GitHub Pages"],"card_description":"Unfussy, elegant theme for serious writers with dark mode built in.","category":"Blog","card_image":"/assets/images/themes/hitchens-card.webp","theme_screenshots":["/assets/images/themes/hitchens-screenshot.webp","/assets/images/themes/hitchens-screenshot-2.webp","/assets/images/themes/hitchens-screenshot-3.webp"],"demo_url":"https://hitchens.patdryburgh.com/","github_url":"https://github.com/patdryburgh/hitchens","author":"GitHub Community","github_author_name":"patdryburgh","github_author_url":"https://github.com/patdryburgh","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-19","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":381,"forks":146,"features":["Typography-first design","Built-in dark mode","Minimal navigation","Clean post layout","Reading time estimate","Tag pages","RSS feed","GitHub Pages compatible","No JavaScript dependencies","Print-friendly styles"],"slug":"hitchens","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hpstr","collection":"themes","next":{"path":"_themes/huxpro.md","relative_path":"_themes/huxpro.md","id":"/themes/huxpro","collection":"themes","url":"/themes/huxpro/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Huxpro Jekyll Theme","description":"A beautiful, cover-image-driven Jekyll blog theme inspired by Ghost's Casper. Features full-screen hero images, smooth transitions, and a clean reading experience.","key_features":["Full-Screen Hero","Cover Images","Ghost-Inspired","Smooth Transitions"],"card_description":"Cover-image-driven blog inspired by Ghost's Casper theme.","category":"Blog","card_image":"/assets/images/themes/huxpro-card.webp","theme_screenshots":["/assets/images/themes/huxpro-screenshot.webp","/assets/images/themes/huxpro-screenshot-2.webp","/assets/images/themes/huxpro-screenshot-3.webp"],"demo_url":"https://huxpro.github.io/","github_url":"https://github.com/Huxpro/huxpro.github.io","author":"GitHub Community","github_author_name":"Huxpro","github_author_url":"https://github.com/Huxpro","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-08","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":5400,"forks":1800,"features":["Full-screen cover image per post","Ghost Casper-inspired design","Smooth page transitions","Disqus comments support","Google Analytics integration","Responsive layout","Tag pages","Chinese and English content support"],"slug":"huxpro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"HPSTR (pronounced \"hipster\") is one of Michael Rose's earlier Jekyll themes and remains one of the most visually striking options in the ecosystem. Its defining feature is the large full-width header image on each post β€” combined with smooth CSS animations, it creates a reading experience that feels polished and intentional.\n\nThe sliding navigation menu and responsive layout were ahead of their time when the theme launched, and the overall design has aged well. Rose is the author of Minimal Mistakes and So Simple, so the code quality and documentation are characteristically excellent.\n\n**Who is it for?** Bloggers who want a visually bold, image-forward theme with smooth animations and a strong sense of style β€” particularly those publishing photography, design, or creative work alongside writing.\n","url":"/themes/hpstr/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"HPSTR Jekyll Theme","description":"A responsive, full-featured Jekyll blog theme by Michael Rose. Rich with image-forward posts, sliding panel navigation, and social sharing.","key_features":["Featured Images","Sliding Navigation","Social Sharing","GitHub Pages"],"card_description":"Image-forward blog with sliding panel navigation and social sharing.","category":"Blog","card_image":"/assets/images/themes/hpstr-card.webp","theme_screenshots":["/assets/images/themes/hpstr-screenshot.webp","/assets/images/themes/hpstr-screenshot-2.webp","/assets/images/themes/hpstr-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/hpstr-jekyll-theme/","github_url":"https://github.com/mmistakes/hpstr-jekyll-theme","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2021-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1100,"forks":700,"features":["Large featured header images per post","Smooth CSS animations and transitions","Responsive mobile-first design","Sliding menu navigation","Disqus comments","Google Analytics","Tag and category pages","Syntax highlighting","Social sharing buttons","GitHub Pages compatible"],"slug":"hpstr","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/huxpro","collection":"themes","next":{"path":"_themes/hyde.md","relative_path":"_themes/hyde.md","excerpt":"<p>Hyde is one of Jekyll’s most iconic themes β€” a two-column layout with a bold dark sidebar and clean reading area. Built on Poole by Mark Otto (co-creator of Bootstrap), it sets the standard for elegant simplicity.</p>\n\n","previous":{"path":"_themes/huxpro.md","relative_path":"_themes/huxpro.md","id":"/themes/huxpro","collection":"themes","url":"/themes/huxpro/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Huxpro Jekyll Theme","description":"A beautiful, cover-image-driven Jekyll blog theme inspired by Ghost's Casper. Features full-screen hero images, smooth transitions, and a clean reading experience.","key_features":["Full-Screen Hero","Cover Images","Ghost-Inspired","Smooth Transitions"],"card_description":"Cover-image-driven blog inspired by Ghost's Casper theme.","category":"Blog","card_image":"/assets/images/themes/huxpro-card.webp","theme_screenshots":["/assets/images/themes/huxpro-screenshot.webp","/assets/images/themes/huxpro-screenshot-2.webp","/assets/images/themes/huxpro-screenshot-3.webp"],"demo_url":"https://huxpro.github.io/","github_url":"https://github.com/Huxpro/huxpro.github.io","author":"GitHub Community","github_author_name":"Huxpro","github_author_url":"https://github.com/Huxpro","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-08","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":5400,"forks":1800,"features":["Full-screen cover image per post","Ghost Casper-inspired design","Smooth page transitions","Disqus comments support","Google Analytics integration","Responsive layout","Tag pages","Chinese and English content support"],"slug":"huxpro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hyde","collection":"themes","next":{"path":"_themes/hydejack.md","relative_path":"_themes/hydejack.md","id":"/themes/hydejack","collection":"themes","url":"/themes/hydejack/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Hydejack Jekyll Theme","description":"A boutique Jekyll theme with a rich sidebar, smooth page transitions, and portfolio support. The premium evolution of Hyde.","key_features":["Dark Mode","Page Transitions","Portfolio Support","Rich Sidebar"],"card_description":"Boutique theme with smooth page transitions and portfolio support.","category":"Blog","card_image":"/assets/images/themes/hydejack-card.webp","theme_screenshots":["/assets/images/themes/hydejack-screenshot.webp","/assets/images/themes/hydejack-screenshot-2.webp","/assets/images/themes/hydejack-screenshot-3.webp"],"demo_url":"https://hydejack.com/","github_url":"https://github.com/hydecorp/hydejack","author":"GitHub Community","github_author_name":"Florian Klampfer","github_author_url":"https://github.com/qwtel","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate-v2"],"updated_at":"2024-02-01","added_at":"2026-01-30","popular":true,"trending":false,"bestseller":false,"version":"9.2.1","license":"GPL-3.0","stars":9000,"forks":1700,"features":["Rich profile sidebar with avatar","Smooth page transitions","Portfolio / project pages","Dark and light themes","Math support (KaTeX)","Resume page layout","Offline support (PWA)"],"slug":"hydejack","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hyde is one of Jekyll's most iconic themes β€” a two-column layout with a bold dark sidebar and clean reading area. Built on Poole by Mark Otto (co-creator of Bootstrap), it sets the standard for elegant simplicity.\n\nEight built-in colour themes let you swap the sidebar accent colour with a single config change.\n\n**Who is it for?** Writers and developers who want a classic, timeless Jekyll blog with a distinctive sidebar presence.\n","url":"/themes/hyde/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hyde Jekyll Theme","description":"A brazen two-column Jekyll theme that pairs a prominent sidebar with uncomplicated content. Based on Poole, by Mark Otto.","key_features":["GitHub Pages","Sidebar Layout","Color Themes","Clean Typography"],"card_description":"Two-column theme with prominent sidebar β€” elegant and timeless.","category":"Blog","card_image":"/assets/images/themes/hyde-card.webp","theme_screenshots":["/assets/images/themes/hyde-screenshot.webp","/assets/images/themes/hyde-screenshot-2.webp","/assets/images/themes/hyde-screenshot-3.webp"],"demo_url":"https://hyde.getpoole.com/","github_url":"https://github.com/poole/hyde","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-01-25","popular":true,"trending":false,"bestseller":false,"version":"2.1.0","license":"MIT","stars":9700,"forks":3800,"features":["Persistent dark sidebar","Eight colour themes","Reverse layout variant","Clean typography","Mobile responsive"],"slug":"hyde","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Huxpro is one of the most-starred personal Jekyll blog themes on GitHub, built by Huasheng Luo as his own personal site and open-sourced for the community. Inspired by Ghost's iconic Casper theme, it brings full-screen cover images and a magazine-quality reading experience to Jekyll.\n\nEach post supports its own hero image, creating a visually rich archive page that immediately communicates the personality of a blog. The typography is clean and generous, making long-form writing genuinely pleasant to read.\n\n**Who is it for?** Writers, developers, and creatives who want a personal blog with a strong visual identity and cover-image-driven design.\n","url":"/themes/huxpro/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Huxpro Jekyll Theme","description":"A beautiful, cover-image-driven Jekyll blog theme inspired by Ghost's Casper. Features full-screen hero images, smooth transitions, and a clean reading experience.","key_features":["Full-Screen Hero","Cover Images","Ghost-Inspired","Smooth Transitions"],"card_description":"Cover-image-driven blog inspired by Ghost's Casper theme.","category":"Blog","card_image":"/assets/images/themes/huxpro-card.webp","theme_screenshots":["/assets/images/themes/huxpro-screenshot.webp","/assets/images/themes/huxpro-screenshot-2.webp","/assets/images/themes/huxpro-screenshot-3.webp"],"demo_url":"https://huxpro.github.io/","github_url":"https://github.com/Huxpro/huxpro.github.io","author":"GitHub Community","github_author_name":"Huxpro","github_author_url":"https://github.com/Huxpro","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-08","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":5400,"forks":1800,"features":["Full-screen cover image per post","Ghost Casper-inspired design","Smooth page transitions","Disqus comments support","Google Analytics integration","Responsive layout","Tag pages","Chinese and English content support"],"slug":"huxpro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/hyde.md","relative_path":"_themes/hyde.md","excerpt":"<p>Hyde is one of Jekyll’s most iconic themes β€” a two-column layout with a bold dark sidebar and clean reading area. Built on Poole by Mark Otto (co-creator of Bootstrap), it sets the standard for elegant simplicity.</p>\n\n","previous":{"path":"_themes/huxpro.md","relative_path":"_themes/huxpro.md","excerpt":"<p>Huxpro is one of the most-starred personal Jekyll blog themes on GitHub, built by Huasheng Luo as his own personal site and open-sourced for the community. Inspired by Ghost’s iconic Casper theme, it brings full-screen cover images and a magazine-quality reading experience to Jekyll.</p>\n\n","previous":{"path":"_themes/hpstr.md","relative_path":"_themes/hpstr.md","id":"/themes/hpstr","collection":"themes","url":"/themes/hpstr/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"HPSTR Jekyll Theme","description":"A responsive, full-featured Jekyll blog theme by Michael Rose. Rich with image-forward posts, sliding panel navigation, and social sharing.","key_features":["Featured Images","Sliding Navigation","Social Sharing","GitHub Pages"],"card_description":"Image-forward blog with sliding panel navigation and social sharing.","category":"Blog","card_image":"/assets/images/themes/hpstr-card.webp","theme_screenshots":["/assets/images/themes/hpstr-screenshot.webp","/assets/images/themes/hpstr-screenshot-2.webp","/assets/images/themes/hpstr-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/hpstr-jekyll-theme/","github_url":"https://github.com/mmistakes/hpstr-jekyll-theme","author":"GitHub Community","github_author_name":"mmistakes","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2021-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1100,"forks":700,"features":["Large featured header images per post","Smooth CSS animations and transitions","Responsive mobile-first design","Sliding menu navigation","Disqus comments","Google Analytics","Tag and category pages","Syntax highlighting","Social sharing buttons","GitHub Pages compatible"],"slug":"hpstr","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/huxpro","collection":"themes","next":{"path":"_themes/hyde.md","relative_path":"_themes/hyde.md","id":"/themes/hyde","collection":"themes","url":"/themes/hyde/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hyde Jekyll Theme","description":"A brazen two-column Jekyll theme that pairs a prominent sidebar with uncomplicated content. Based on Poole, by Mark Otto.","key_features":["GitHub Pages","Sidebar Layout","Color Themes","Clean Typography"],"card_description":"Two-column theme with prominent sidebar β€” elegant and timeless.","category":"Blog","card_image":"/assets/images/themes/hyde-card.webp","theme_screenshots":["/assets/images/themes/hyde-screenshot.webp","/assets/images/themes/hyde-screenshot-2.webp","/assets/images/themes/hyde-screenshot-3.webp"],"demo_url":"https://hyde.getpoole.com/","github_url":"https://github.com/poole/hyde","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-01-25","popular":true,"trending":false,"bestseller":false,"version":"2.1.0","license":"MIT","stars":9700,"forks":3800,"features":["Persistent dark sidebar","Eight colour themes","Reverse layout variant","Clean typography","Mobile responsive"],"slug":"hyde","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Huxpro is one of the most-starred personal Jekyll blog themes on GitHub, built by Huasheng Luo as his own personal site and open-sourced for the community. Inspired by Ghost's iconic Casper theme, it brings full-screen cover images and a magazine-quality reading experience to Jekyll.\n\nEach post supports its own hero image, creating a visually rich archive page that immediately communicates the personality of a blog. The typography is clean and generous, making long-form writing genuinely pleasant to read.\n\n**Who is it for?** Writers, developers, and creatives who want a personal blog with a strong visual identity and cover-image-driven design.\n","url":"/themes/huxpro/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Huxpro Jekyll Theme","description":"A beautiful, cover-image-driven Jekyll blog theme inspired by Ghost's Casper. Features full-screen hero images, smooth transitions, and a clean reading experience.","key_features":["Full-Screen Hero","Cover Images","Ghost-Inspired","Smooth Transitions"],"card_description":"Cover-image-driven blog inspired by Ghost's Casper theme.","category":"Blog","card_image":"/assets/images/themes/huxpro-card.webp","theme_screenshots":["/assets/images/themes/huxpro-screenshot.webp","/assets/images/themes/huxpro-screenshot-2.webp","/assets/images/themes/huxpro-screenshot-3.webp"],"demo_url":"https://huxpro.github.io/","github_url":"https://github.com/Huxpro/huxpro.github.io","author":"GitHub Community","github_author_name":"Huxpro","github_author_url":"https://github.com/Huxpro","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-08","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":5400,"forks":1800,"features":["Full-screen cover image per post","Ghost Casper-inspired design","Smooth page transitions","Disqus comments support","Google Analytics integration","Responsive layout","Tag pages","Chinese and English content support"],"slug":"huxpro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hyde","collection":"themes","next":{"path":"_themes/hydejack.md","relative_path":"_themes/hydejack.md","excerpt":"<p>Hydejack is the boutique evolution of Hyde β€” taking the two-column sidebar layout and elevating it with smooth page transitions, a polished profile sidebar, and full portfolio support.</p>\n\n","previous":{"path":"_themes/hyde.md","relative_path":"_themes/hyde.md","id":"/themes/hyde","collection":"themes","url":"/themes/hyde/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hyde Jekyll Theme","description":"A brazen two-column Jekyll theme that pairs a prominent sidebar with uncomplicated content. Based on Poole, by Mark Otto.","key_features":["GitHub Pages","Sidebar Layout","Color Themes","Clean Typography"],"card_description":"Two-column theme with prominent sidebar β€” elegant and timeless.","category":"Blog","card_image":"/assets/images/themes/hyde-card.webp","theme_screenshots":["/assets/images/themes/hyde-screenshot.webp","/assets/images/themes/hyde-screenshot-2.webp","/assets/images/themes/hyde-screenshot-3.webp"],"demo_url":"https://hyde.getpoole.com/","github_url":"https://github.com/poole/hyde","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-01-25","popular":true,"trending":false,"bestseller":false,"version":"2.1.0","license":"MIT","stars":9700,"forks":3800,"features":["Persistent dark sidebar","Eight colour themes","Reverse layout variant","Clean typography","Mobile responsive"],"slug":"hyde","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hydejack","collection":"themes","next":{"path":"_themes/hydra.md","relative_path":"_themes/hydra.md","id":"/themes/hydra","collection":"themes","url":"/themes/hydra/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hydra Jekyll Theme","description":"A product and SaaS marketing Jekyll theme with a clean hero section, feature grid, pricing table, and testimonials.","key_features":["Pricing Table","Feature Grid","GitHub Pages","SaaS Ready"],"card_description":"SaaS marketing theme with hero, feature grid, and pricing table.","category":"Landing Page","card_image":"/assets/images/themes/hydra-card.webp","theme_screenshots":["/assets/images/themes/hydra-screenshot.webp","/assets/images/themes/hydra-screenshot-2.webp","/assets/images/themes/hydra-screenshot-3.webp"],"demo_url":"https://orange-ape.cloudvent.net/","github_url":"https://github.com/CloudCannon/hydra-jekyll-template","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-05-14","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":450,"forks":213,"features":["SaaS marketing layout","Hero section with CTA","Feature grid","Pricing table","Testimonials section","Blog included","Contact form ready","GitHub Pages compatible","CloudCannon CMS ready","Fully responsive"],"slug":"hydra","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hydejack is the boutique evolution of Hyde β€” taking the two-column sidebar layout and elevating it with smooth page transitions, a polished profile sidebar, and full portfolio support.\n\nOne of the most feature-rich free Jekyll themes available, it includes everything from KaTeX math rendering to offline PWA support. A paid PRO version adds extra layouts and features.\n\n**Who is it for?** Developers and technical writers who want a beautiful, full-featured blog and portfolio in one, with a distinctive aesthetic.\n","url":"/themes/hydejack/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Hydejack Jekyll Theme","description":"A boutique Jekyll theme with a rich sidebar, smooth page transitions, and portfolio support. The premium evolution of Hyde.","key_features":["Dark Mode","Page Transitions","Portfolio Support","Rich Sidebar"],"card_description":"Boutique theme with smooth page transitions and portfolio support.","category":"Blog","card_image":"/assets/images/themes/hydejack-card.webp","theme_screenshots":["/assets/images/themes/hydejack-screenshot.webp","/assets/images/themes/hydejack-screenshot-2.webp","/assets/images/themes/hydejack-screenshot-3.webp"],"demo_url":"https://hydejack.com/","github_url":"https://github.com/hydecorp/hydejack","author":"GitHub Community","github_author_name":"Florian Klampfer","github_author_url":"https://github.com/qwtel","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate-v2"],"updated_at":"2024-02-01","added_at":"2026-01-30","popular":true,"trending":false,"bestseller":false,"version":"9.2.1","license":"GPL-3.0","stars":9000,"forks":1700,"features":["Rich profile sidebar with avatar","Smooth page transitions","Portfolio / project pages","Dark and light themes","Math support (KaTeX)","Resume page layout","Offline support (PWA)"],"slug":"hydejack","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hyde is one of Jekyll's most iconic themes β€” a two-column layout with a bold dark sidebar and clean reading area. Built on Poole by Mark Otto (co-creator of Bootstrap), it sets the standard for elegant simplicity.\n\nEight built-in colour themes let you swap the sidebar accent colour with a single config change.\n\n**Who is it for?** Writers and developers who want a classic, timeless Jekyll blog with a distinctive sidebar presence.\n","url":"/themes/hyde/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hyde Jekyll Theme","description":"A brazen two-column Jekyll theme that pairs a prominent sidebar with uncomplicated content. Based on Poole, by Mark Otto.","key_features":["GitHub Pages","Sidebar Layout","Color Themes","Clean Typography"],"card_description":"Two-column theme with prominent sidebar β€” elegant and timeless.","category":"Blog","card_image":"/assets/images/themes/hyde-card.webp","theme_screenshots":["/assets/images/themes/hyde-screenshot.webp","/assets/images/themes/hyde-screenshot-2.webp","/assets/images/themes/hyde-screenshot-3.webp"],"demo_url":"https://hyde.getpoole.com/","github_url":"https://github.com/poole/hyde","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-01-25","popular":true,"trending":false,"bestseller":false,"version":"2.1.0","license":"MIT","stars":9700,"forks":3800,"features":["Persistent dark sidebar","Eight colour themes","Reverse layout variant","Clean typography","Mobile responsive"],"slug":"hyde","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/hydejack.md","relative_path":"_themes/hydejack.md","excerpt":"<p>Hydejack is the boutique evolution of Hyde β€” taking the two-column sidebar layout and elevating it with smooth page transitions, a polished profile sidebar, and full portfolio support.</p>\n\n","previous":{"path":"_themes/hyde.md","relative_path":"_themes/hyde.md","excerpt":"<p>Hyde is one of Jekyll’s most iconic themes β€” a two-column layout with a bold dark sidebar and clean reading area. Built on Poole by Mark Otto (co-creator of Bootstrap), it sets the standard for elegant simplicity.</p>\n\n","previous":{"path":"_themes/huxpro.md","relative_path":"_themes/huxpro.md","id":"/themes/huxpro","collection":"themes","url":"/themes/huxpro/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Huxpro Jekyll Theme","description":"A beautiful, cover-image-driven Jekyll blog theme inspired by Ghost's Casper. Features full-screen hero images, smooth transitions, and a clean reading experience.","key_features":["Full-Screen Hero","Cover Images","Ghost-Inspired","Smooth Transitions"],"card_description":"Cover-image-driven blog inspired by Ghost's Casper theme.","category":"Blog","card_image":"/assets/images/themes/huxpro-card.webp","theme_screenshots":["/assets/images/themes/huxpro-screenshot.webp","/assets/images/themes/huxpro-screenshot-2.webp","/assets/images/themes/huxpro-screenshot-3.webp"],"demo_url":"https://huxpro.github.io/","github_url":"https://github.com/Huxpro/huxpro.github.io","author":"GitHub Community","github_author_name":"Huxpro","github_author_url":"https://github.com/Huxpro","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-08","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Apache-2.0","stars":5400,"forks":1800,"features":["Full-screen cover image per post","Ghost Casper-inspired design","Smooth page transitions","Disqus comments support","Google Analytics integration","Responsive layout","Tag pages","Chinese and English content support"],"slug":"huxpro","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hyde","collection":"themes","next":{"path":"_themes/hydejack.md","relative_path":"_themes/hydejack.md","id":"/themes/hydejack","collection":"themes","url":"/themes/hydejack/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Hydejack Jekyll Theme","description":"A boutique Jekyll theme with a rich sidebar, smooth page transitions, and portfolio support. The premium evolution of Hyde.","key_features":["Dark Mode","Page Transitions","Portfolio Support","Rich Sidebar"],"card_description":"Boutique theme with smooth page transitions and portfolio support.","category":"Blog","card_image":"/assets/images/themes/hydejack-card.webp","theme_screenshots":["/assets/images/themes/hydejack-screenshot.webp","/assets/images/themes/hydejack-screenshot-2.webp","/assets/images/themes/hydejack-screenshot-3.webp"],"demo_url":"https://hydejack.com/","github_url":"https://github.com/hydecorp/hydejack","author":"GitHub Community","github_author_name":"Florian Klampfer","github_author_url":"https://github.com/qwtel","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate-v2"],"updated_at":"2024-02-01","added_at":"2026-01-30","popular":true,"trending":false,"bestseller":false,"version":"9.2.1","license":"GPL-3.0","stars":9000,"forks":1700,"features":["Rich profile sidebar with avatar","Smooth page transitions","Portfolio / project pages","Dark and light themes","Math support (KaTeX)","Resume page layout","Offline support (PWA)"],"slug":"hydejack","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hyde is one of Jekyll's most iconic themes β€” a two-column layout with a bold dark sidebar and clean reading area. Built on Poole by Mark Otto (co-creator of Bootstrap), it sets the standard for elegant simplicity.\n\nEight built-in colour themes let you swap the sidebar accent colour with a single config change.\n\n**Who is it for?** Writers and developers who want a classic, timeless Jekyll blog with a distinctive sidebar presence.\n","url":"/themes/hyde/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hyde Jekyll Theme","description":"A brazen two-column Jekyll theme that pairs a prominent sidebar with uncomplicated content. Based on Poole, by Mark Otto.","key_features":["GitHub Pages","Sidebar Layout","Color Themes","Clean Typography"],"card_description":"Two-column theme with prominent sidebar β€” elegant and timeless.","category":"Blog","card_image":"/assets/images/themes/hyde-card.webp","theme_screenshots":["/assets/images/themes/hyde-screenshot.webp","/assets/images/themes/hyde-screenshot-2.webp","/assets/images/themes/hyde-screenshot-3.webp"],"demo_url":"https://hyde.getpoole.com/","github_url":"https://github.com/poole/hyde","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-01-25","popular":true,"trending":false,"bestseller":false,"version":"2.1.0","license":"MIT","stars":9700,"forks":3800,"features":["Persistent dark sidebar","Eight colour themes","Reverse layout variant","Clean typography","Mobile responsive"],"slug":"hyde","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hydejack","collection":"themes","next":{"path":"_themes/hydra.md","relative_path":"_themes/hydra.md","excerpt":"<p>Hydra is a product marketing theme from CloudCannon, built for SaaS products, apps, and services that need a professional landing page. Hero, features, pricing, and testimonials sections are all pre-built and easy to customise.</p>\n\n","previous":{"path":"_themes/hydejack.md","relative_path":"_themes/hydejack.md","id":"/themes/hydejack","collection":"themes","url":"/themes/hydejack/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Hydejack Jekyll Theme","description":"A boutique Jekyll theme with a rich sidebar, smooth page transitions, and portfolio support. The premium evolution of Hyde.","key_features":["Dark Mode","Page Transitions","Portfolio Support","Rich Sidebar"],"card_description":"Boutique theme with smooth page transitions and portfolio support.","category":"Blog","card_image":"/assets/images/themes/hydejack-card.webp","theme_screenshots":["/assets/images/themes/hydejack-screenshot.webp","/assets/images/themes/hydejack-screenshot-2.webp","/assets/images/themes/hydejack-screenshot-3.webp"],"demo_url":"https://hydejack.com/","github_url":"https://github.com/hydecorp/hydejack","author":"GitHub Community","github_author_name":"Florian Klampfer","github_author_url":"https://github.com/qwtel","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate-v2"],"updated_at":"2024-02-01","added_at":"2026-01-30","popular":true,"trending":false,"bestseller":false,"version":"9.2.1","license":"GPL-3.0","stars":9000,"forks":1700,"features":["Rich profile sidebar with avatar","Smooth page transitions","Portfolio / project pages","Dark and light themes","Math support (KaTeX)","Resume page layout","Offline support (PWA)"],"slug":"hydejack","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hydra","collection":"themes","next":{"path":"_themes/jasper.md","relative_path":"_themes/jasper.md","id":"/themes/jasper","collection":"themes","url":"/themes/jasper/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jasper Jekyll Theme","description":"A Jekyll port of Ghost's default Casper theme. Brings the polished, editorial feel of Ghost blogging to static Jekyll sites.","key_features":["Ghost-Inspired","GitHub Pages","Editorial Design","Featured Images"],"card_description":"Jekyll port of Ghost's Casper β€” polished, editorial feel.","category":"Blog","card_image":"/assets/images/themes/jasper-card.webp","theme_screenshots":["/assets/images/themes/jasper-screenshot.webp","/assets/images/themes/jasper-screenshot-2.webp","/assets/images/themes/jasper-screenshot-3.webp"],"demo_url":"https://jekyllt.github.io/jasper/","github_url":"https://github.com/biomadeira/jasper","author":"GitHub Community","github_author_name":"biomadeira","github_author_url":"https://github.com/biomadeira","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-05-05","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":587,"forks":290,"features":["Ghost Casper port","Cover image header","Tag-based navigation","Author profiles","Post cover images","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible","Responsive design"],"slug":"jasper","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hydra is a product marketing theme from CloudCannon, built for SaaS products, apps, and services that need a professional landing page. Hero, features, pricing, and testimonials sections are all pre-built and easy to customise.\n\nA blog is included so you can publish content marketing articles alongside your product pages.\n\n**Who is it for?** Founders and teams launching SaaS products or apps who need a polished marketing site fast.\n","url":"/themes/hydra/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hydra Jekyll Theme","description":"A product and SaaS marketing Jekyll theme with a clean hero section, feature grid, pricing table, and testimonials.","key_features":["Pricing Table","Feature Grid","GitHub Pages","SaaS Ready"],"card_description":"SaaS marketing theme with hero, feature grid, and pricing table.","category":"Landing Page","card_image":"/assets/images/themes/hydra-card.webp","theme_screenshots":["/assets/images/themes/hydra-screenshot.webp","/assets/images/themes/hydra-screenshot-2.webp","/assets/images/themes/hydra-screenshot-3.webp"],"demo_url":"https://orange-ape.cloudvent.net/","github_url":"https://github.com/CloudCannon/hydra-jekyll-template","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-05-14","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":450,"forks":213,"features":["SaaS marketing layout","Hero section with CTA","Feature grid","Pricing table","Testimonials section","Blog included","Contact form ready","GitHub Pages compatible","CloudCannon CMS ready","Fully responsive"],"slug":"hydra","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hydejack is the boutique evolution of Hyde β€” taking the two-column sidebar layout and elevating it with smooth page transitions, a polished profile sidebar, and full portfolio support.\n\nOne of the most feature-rich free Jekyll themes available, it includes everything from KaTeX math rendering to offline PWA support. A paid PRO version adds extra layouts and features.\n\n**Who is it for?** Developers and technical writers who want a beautiful, full-featured blog and portfolio in one, with a distinctive aesthetic.\n","url":"/themes/hydejack/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Hydejack Jekyll Theme","description":"A boutique Jekyll theme with a rich sidebar, smooth page transitions, and portfolio support. The premium evolution of Hyde.","key_features":["Dark Mode","Page Transitions","Portfolio Support","Rich Sidebar"],"card_description":"Boutique theme with smooth page transitions and portfolio support.","category":"Blog","card_image":"/assets/images/themes/hydejack-card.webp","theme_screenshots":["/assets/images/themes/hydejack-screenshot.webp","/assets/images/themes/hydejack-screenshot-2.webp","/assets/images/themes/hydejack-screenshot-3.webp"],"demo_url":"https://hydejack.com/","github_url":"https://github.com/hydecorp/hydejack","author":"GitHub Community","github_author_name":"Florian Klampfer","github_author_url":"https://github.com/qwtel","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate-v2"],"updated_at":"2024-02-01","added_at":"2026-01-30","popular":true,"trending":false,"bestseller":false,"version":"9.2.1","license":"GPL-3.0","stars":9000,"forks":1700,"features":["Rich profile sidebar with avatar","Smooth page transitions","Portfolio / project pages","Dark and light themes","Math support (KaTeX)","Resume page layout","Offline support (PWA)"],"slug":"hydejack","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/hydra.md","relative_path":"_themes/hydra.md","excerpt":"<p>Hydra is a product marketing theme from CloudCannon, built for SaaS products, apps, and services that need a professional landing page. Hero, features, pricing, and testimonials sections are all pre-built and easy to customise.</p>\n\n","previous":{"path":"_themes/hydejack.md","relative_path":"_themes/hydejack.md","excerpt":"<p>Hydejack is the boutique evolution of Hyde β€” taking the two-column sidebar layout and elevating it with smooth page transitions, a polished profile sidebar, and full portfolio support.</p>\n\n","previous":{"path":"_themes/hyde.md","relative_path":"_themes/hyde.md","id":"/themes/hyde","collection":"themes","url":"/themes/hyde/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hyde Jekyll Theme","description":"A brazen two-column Jekyll theme that pairs a prominent sidebar with uncomplicated content. Based on Poole, by Mark Otto.","key_features":["GitHub Pages","Sidebar Layout","Color Themes","Clean Typography"],"card_description":"Two-column theme with prominent sidebar β€” elegant and timeless.","category":"Blog","card_image":"/assets/images/themes/hyde-card.webp","theme_screenshots":["/assets/images/themes/hyde-screenshot.webp","/assets/images/themes/hyde-screenshot-2.webp","/assets/images/themes/hyde-screenshot-3.webp"],"demo_url":"https://hyde.getpoole.com/","github_url":"https://github.com/poole/hyde","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-01-25","popular":true,"trending":false,"bestseller":false,"version":"2.1.0","license":"MIT","stars":9700,"forks":3800,"features":["Persistent dark sidebar","Eight colour themes","Reverse layout variant","Clean typography","Mobile responsive"],"slug":"hyde","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hydejack","collection":"themes","next":{"path":"_themes/hydra.md","relative_path":"_themes/hydra.md","id":"/themes/hydra","collection":"themes","url":"/themes/hydra/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hydra Jekyll Theme","description":"A product and SaaS marketing Jekyll theme with a clean hero section, feature grid, pricing table, and testimonials.","key_features":["Pricing Table","Feature Grid","GitHub Pages","SaaS Ready"],"card_description":"SaaS marketing theme with hero, feature grid, and pricing table.","category":"Landing Page","card_image":"/assets/images/themes/hydra-card.webp","theme_screenshots":["/assets/images/themes/hydra-screenshot.webp","/assets/images/themes/hydra-screenshot-2.webp","/assets/images/themes/hydra-screenshot-3.webp"],"demo_url":"https://orange-ape.cloudvent.net/","github_url":"https://github.com/CloudCannon/hydra-jekyll-template","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-05-14","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":450,"forks":213,"features":["SaaS marketing layout","Hero section with CTA","Feature grid","Pricing table","Testimonials section","Blog included","Contact form ready","GitHub Pages compatible","CloudCannon CMS ready","Fully responsive"],"slug":"hydra","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hydejack is the boutique evolution of Hyde β€” taking the two-column sidebar layout and elevating it with smooth page transitions, a polished profile sidebar, and full portfolio support.\n\nOne of the most feature-rich free Jekyll themes available, it includes everything from KaTeX math rendering to offline PWA support. A paid PRO version adds extra layouts and features.\n\n**Who is it for?** Developers and technical writers who want a beautiful, full-featured blog and portfolio in one, with a distinctive aesthetic.\n","url":"/themes/hydejack/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Hydejack Jekyll Theme","description":"A boutique Jekyll theme with a rich sidebar, smooth page transitions, and portfolio support. The premium evolution of Hyde.","key_features":["Dark Mode","Page Transitions","Portfolio Support","Rich Sidebar"],"card_description":"Boutique theme with smooth page transitions and portfolio support.","category":"Blog","card_image":"/assets/images/themes/hydejack-card.webp","theme_screenshots":["/assets/images/themes/hydejack-screenshot.webp","/assets/images/themes/hydejack-screenshot-2.webp","/assets/images/themes/hydejack-screenshot-3.webp"],"demo_url":"https://hydejack.com/","github_url":"https://github.com/hydecorp/hydejack","author":"GitHub Community","github_author_name":"Florian Klampfer","github_author_url":"https://github.com/qwtel","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate-v2"],"updated_at":"2024-02-01","added_at":"2026-01-30","popular":true,"trending":false,"bestseller":false,"version":"9.2.1","license":"GPL-3.0","stars":9000,"forks":1700,"features":["Rich profile sidebar with avatar","Smooth page transitions","Portfolio / project pages","Dark and light themes","Math support (KaTeX)","Resume page layout","Offline support (PWA)"],"slug":"hydejack","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hydra","collection":"themes","next":{"path":"_themes/jasper.md","relative_path":"_themes/jasper.md","excerpt":"<p>Jasper brings the polished editorial aesthetic of Ghost’s default Casper theme to the Jekyll ecosystem. If you admire the clean, image-led layout of Ghost blogs but want to stay on a static site, Jasper is the natural choice.</p>\n\n","previous":{"path":"_themes/hydra.md","relative_path":"_themes/hydra.md","id":"/themes/hydra","collection":"themes","url":"/themes/hydra/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hydra Jekyll Theme","description":"A product and SaaS marketing Jekyll theme with a clean hero section, feature grid, pricing table, and testimonials.","key_features":["Pricing Table","Feature Grid","GitHub Pages","SaaS Ready"],"card_description":"SaaS marketing theme with hero, feature grid, and pricing table.","category":"Landing Page","card_image":"/assets/images/themes/hydra-card.webp","theme_screenshots":["/assets/images/themes/hydra-screenshot.webp","/assets/images/themes/hydra-screenshot-2.webp","/assets/images/themes/hydra-screenshot-3.webp"],"demo_url":"https://orange-ape.cloudvent.net/","github_url":"https://github.com/CloudCannon/hydra-jekyll-template","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-05-14","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":450,"forks":213,"features":["SaaS marketing layout","Hero section with CTA","Feature grid","Pricing table","Testimonials section","Blog included","Contact form ready","GitHub Pages compatible","CloudCannon CMS ready","Fully responsive"],"slug":"hydra","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/jasper","collection":"themes","next":{"path":"_themes/jekyll-now.md","relative_path":"_themes/jekyll-now.md","id":"/themes/jekyll-now","collection":"themes","url":"/themes/jekyll-now/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jekyll Now","description":"The quickest way to start a Jekyll blog. Fork on GitHub, enable Pages, and you have a live blog in under a minute β€” zero command line required.","key_features":["Zero Setup","GitHub Pages","Fork to Deploy","Beginner Friendly"],"card_description":"Quickest way to start a Jekyll blog β€” fork, enable Pages, done.","category":"Blog","card_image":"/assets/images/themes/jekyll-now-card.webp","theme_screenshots":["/assets/images/themes/jekyll-now-screenshot.webp","/assets/images/themes/jekyll-now-screenshot-2.webp","/assets/images/themes/jekyll-now-screenshot-3.webp"],"demo_url":"https://barryclark.github.io/jekyll-now/","github_url":"https://github.com/barryclark/jekyll-now","author":"GitHub Community","github_author_name":"Barry Clark","github_author_url":"https://github.com/barryclark","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":8400,"forks":3500,"features":["No command line required β€” fork and publish in 60 seconds","GitHub Pages native (zero config)","Disqus comments built in","Google Analytics support","Social icons for Twitter, GitHub, LinkedIn and more","Simple single-column blog layout","SVG social icons","RSS feed included","Beginner-friendly YAML configuration"],"slug":"jekyll-now","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Jasper brings the polished editorial aesthetic of Ghost's default Casper theme to the Jekyll ecosystem. If you admire the clean, image-led layout of Ghost blogs but want to stay on a static site, Jasper is the natural choice.\n\nCover images dominate the header of each post, creating a visual impact that draws readers in before they've read a word.\n\n**Who is it for?** Bloggers who love Ghost's editorial aesthetic but prefer or require a static Jekyll workflow.\n","url":"/themes/jasper/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jasper Jekyll Theme","description":"A Jekyll port of Ghost's default Casper theme. Brings the polished, editorial feel of Ghost blogging to static Jekyll sites.","key_features":["Ghost-Inspired","GitHub Pages","Editorial Design","Featured Images"],"card_description":"Jekyll port of Ghost's Casper β€” polished, editorial feel.","category":"Blog","card_image":"/assets/images/themes/jasper-card.webp","theme_screenshots":["/assets/images/themes/jasper-screenshot.webp","/assets/images/themes/jasper-screenshot-2.webp","/assets/images/themes/jasper-screenshot-3.webp"],"demo_url":"https://jekyllt.github.io/jasper/","github_url":"https://github.com/biomadeira/jasper","author":"GitHub Community","github_author_name":"biomadeira","github_author_url":"https://github.com/biomadeira","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-05-05","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":587,"forks":290,"features":["Ghost Casper port","Cover image header","Tag-based navigation","Author profiles","Post cover images","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible","Responsive design"],"slug":"jasper","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hydra is a product marketing theme from CloudCannon, built for SaaS products, apps, and services that need a professional landing page. Hero, features, pricing, and testimonials sections are all pre-built and easy to customise.\n\nA blog is included so you can publish content marketing articles alongside your product pages.\n\n**Who is it for?** Founders and teams launching SaaS products or apps who need a polished marketing site fast.\n","url":"/themes/hydra/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hydra Jekyll Theme","description":"A product and SaaS marketing Jekyll theme with a clean hero section, feature grid, pricing table, and testimonials.","key_features":["Pricing Table","Feature Grid","GitHub Pages","SaaS Ready"],"card_description":"SaaS marketing theme with hero, feature grid, and pricing table.","category":"Landing Page","card_image":"/assets/images/themes/hydra-card.webp","theme_screenshots":["/assets/images/themes/hydra-screenshot.webp","/assets/images/themes/hydra-screenshot-2.webp","/assets/images/themes/hydra-screenshot-3.webp"],"demo_url":"https://orange-ape.cloudvent.net/","github_url":"https://github.com/CloudCannon/hydra-jekyll-template","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-05-14","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":450,"forks":213,"features":["SaaS marketing layout","Hero section with CTA","Feature grid","Pricing table","Testimonials section","Blog included","Contact form ready","GitHub Pages compatible","CloudCannon CMS ready","Fully responsive"],"slug":"hydra","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/jasper.md","relative_path":"_themes/jasper.md","excerpt":"<p>Jasper brings the polished editorial aesthetic of Ghost’s default Casper theme to the Jekyll ecosystem. If you admire the clean, image-led layout of Ghost blogs but want to stay on a static site, Jasper is the natural choice.</p>\n\n","previous":{"path":"_themes/hydra.md","relative_path":"_themes/hydra.md","excerpt":"<p>Hydra is a product marketing theme from CloudCannon, built for SaaS products, apps, and services that need a professional landing page. Hero, features, pricing, and testimonials sections are all pre-built and easy to customise.</p>\n\n","previous":{"path":"_themes/hydejack.md","relative_path":"_themes/hydejack.md","id":"/themes/hydejack","collection":"themes","url":"/themes/hydejack/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Hydejack Jekyll Theme","description":"A boutique Jekyll theme with a rich sidebar, smooth page transitions, and portfolio support. The premium evolution of Hyde.","key_features":["Dark Mode","Page Transitions","Portfolio Support","Rich Sidebar"],"card_description":"Boutique theme with smooth page transitions and portfolio support.","category":"Blog","card_image":"/assets/images/themes/hydejack-card.webp","theme_screenshots":["/assets/images/themes/hydejack-screenshot.webp","/assets/images/themes/hydejack-screenshot-2.webp","/assets/images/themes/hydejack-screenshot-3.webp"],"demo_url":"https://hydejack.com/","github_url":"https://github.com/hydecorp/hydejack","author":"GitHub Community","github_author_name":"Florian Klampfer","github_author_url":"https://github.com/qwtel","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":false,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate-v2"],"updated_at":"2024-02-01","added_at":"2026-01-30","popular":true,"trending":false,"bestseller":false,"version":"9.2.1","license":"GPL-3.0","stars":9000,"forks":1700,"features":["Rich profile sidebar with avatar","Smooth page transitions","Portfolio / project pages","Dark and light themes","Math support (KaTeX)","Resume page layout","Offline support (PWA)"],"slug":"hydejack","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/hydra","collection":"themes","next":{"path":"_themes/jasper.md","relative_path":"_themes/jasper.md","id":"/themes/jasper","collection":"themes","url":"/themes/jasper/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jasper Jekyll Theme","description":"A Jekyll port of Ghost's default Casper theme. Brings the polished, editorial feel of Ghost blogging to static Jekyll sites.","key_features":["Ghost-Inspired","GitHub Pages","Editorial Design","Featured Images"],"card_description":"Jekyll port of Ghost's Casper β€” polished, editorial feel.","category":"Blog","card_image":"/assets/images/themes/jasper-card.webp","theme_screenshots":["/assets/images/themes/jasper-screenshot.webp","/assets/images/themes/jasper-screenshot-2.webp","/assets/images/themes/jasper-screenshot-3.webp"],"demo_url":"https://jekyllt.github.io/jasper/","github_url":"https://github.com/biomadeira/jasper","author":"GitHub Community","github_author_name":"biomadeira","github_author_url":"https://github.com/biomadeira","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-05-05","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":587,"forks":290,"features":["Ghost Casper port","Cover image header","Tag-based navigation","Author profiles","Post cover images","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible","Responsive design"],"slug":"jasper","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Hydra is a product marketing theme from CloudCannon, built for SaaS products, apps, and services that need a professional landing page. Hero, features, pricing, and testimonials sections are all pre-built and easy to customise.\n\nA blog is included so you can publish content marketing articles alongside your product pages.\n\n**Who is it for?** Founders and teams launching SaaS products or apps who need a polished marketing site fast.\n","url":"/themes/hydra/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hydra Jekyll Theme","description":"A product and SaaS marketing Jekyll theme with a clean hero section, feature grid, pricing table, and testimonials.","key_features":["Pricing Table","Feature Grid","GitHub Pages","SaaS Ready"],"card_description":"SaaS marketing theme with hero, feature grid, and pricing table.","category":"Landing Page","card_image":"/assets/images/themes/hydra-card.webp","theme_screenshots":["/assets/images/themes/hydra-screenshot.webp","/assets/images/themes/hydra-screenshot-2.webp","/assets/images/themes/hydra-screenshot-3.webp"],"demo_url":"https://orange-ape.cloudvent.net/","github_url":"https://github.com/CloudCannon/hydra-jekyll-template","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-05-14","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":450,"forks":213,"features":["SaaS marketing layout","Hero section with CTA","Feature grid","Pricing table","Testimonials section","Blog included","Contact form ready","GitHub Pages compatible","CloudCannon CMS ready","Fully responsive"],"slug":"hydra","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/jasper","collection":"themes","next":{"path":"_themes/jekyll-now.md","relative_path":"_themes/jekyll-now.md","excerpt":"<p>Jekyll Now is the most-forked Jekyll theme on GitHub and the go-to starting point for anyone who wants a blog without touching the command line. The setup is genuinely three steps: fork the repository, rename it to <code class=\"language-plaintext highlighter-rouge\">username.github.io</code>, and your blog is live.</p>\n\n","previous":{"path":"_themes/jasper.md","relative_path":"_themes/jasper.md","id":"/themes/jasper","collection":"themes","url":"/themes/jasper/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jasper Jekyll Theme","description":"A Jekyll port of Ghost's default Casper theme. Brings the polished, editorial feel of Ghost blogging to static Jekyll sites.","key_features":["Ghost-Inspired","GitHub Pages","Editorial Design","Featured Images"],"card_description":"Jekyll port of Ghost's Casper β€” polished, editorial feel.","category":"Blog","card_image":"/assets/images/themes/jasper-card.webp","theme_screenshots":["/assets/images/themes/jasper-screenshot.webp","/assets/images/themes/jasper-screenshot-2.webp","/assets/images/themes/jasper-screenshot-3.webp"],"demo_url":"https://jekyllt.github.io/jasper/","github_url":"https://github.com/biomadeira/jasper","author":"GitHub Community","github_author_name":"biomadeira","github_author_url":"https://github.com/biomadeira","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-05-05","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":587,"forks":290,"features":["Ghost Casper port","Cover image header","Tag-based navigation","Author profiles","Post cover images","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible","Responsive design"],"slug":"jasper","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/jekyll-now","collection":"themes","next":{"path":"_themes/jekyll-text-theme.md","relative_path":"_themes/jekyll-text-theme.md","id":"/themes/jekyll-text-theme","collection":"themes","url":"/themes/jekyll-text-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"TeXt Jekyll Theme","description":"A highly customisable Jekyll theme inspired by iOS 11 style. Features multiple skins, rich built-in components, full internationalisation, and support for blogs, documentation, and team sites.","key_features":["Multiple Skins","Dark Mode","Internationalisation","GitHub Pages"],"card_description":"iOS-inspired theme with multiple skins and rich built-in components.","category":"Blog","card_image":"/assets/images/themes/jekyll-text-theme-card.webp","theme_screenshots":["/assets/images/themes/jekyll-text-theme-screenshot.webp","/assets/images/themes/jekyll-text-theme-screenshot-2.webp","/assets/images/themes/jekyll-text-theme-screenshot-3.webp"],"demo_url":"https://kitian616.github.io/jekyll-TeXt-theme/","github_url":"https://github.com/kitian616/jekyll-TeXt-theme","author":"GitHub Community","github_author_name":"kitian616","github_author_url":"https://github.com/kitian616","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"2.2.6","license":"MIT","stars":3300,"forks":700,"features":["6 built-in colour skins","Dark mode support","Full internationalisation (i18n) with 10+ languages","Article reading progress bar","Disqus, Gitalk, and Valine comment systems","MathJax and Mermaid diagram support","Full-text search via Algolia or Simple Jekyll Search","Table of contents sidebar","Responsive image galleries","GitHub Pages compatible"],"slug":"jekyll-text-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Jekyll Now is the most-forked Jekyll theme on GitHub and the go-to starting point for anyone who wants a blog without touching the command line. The setup is genuinely three steps: fork the repository, rename it to `username.github.io`, and your blog is live.\n\nBarry Clark built Jekyll Now to lower the barrier to entry as far as it could go. The theme is intentionally minimal β€” clean typography, a responsive single-column layout, and just enough configuration to feel personal without overwhelming a new user.\n\n**Who is it for?** Beginners, writers, and developers who want a quick personal blog on GitHub Pages with no local setup required.\n","url":"/themes/jekyll-now/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jekyll Now","description":"The quickest way to start a Jekyll blog. Fork on GitHub, enable Pages, and you have a live blog in under a minute β€” zero command line required.","key_features":["Zero Setup","GitHub Pages","Fork to Deploy","Beginner Friendly"],"card_description":"Quickest way to start a Jekyll blog β€” fork, enable Pages, done.","category":"Blog","card_image":"/assets/images/themes/jekyll-now-card.webp","theme_screenshots":["/assets/images/themes/jekyll-now-screenshot.webp","/assets/images/themes/jekyll-now-screenshot-2.webp","/assets/images/themes/jekyll-now-screenshot-3.webp"],"demo_url":"https://barryclark.github.io/jekyll-now/","github_url":"https://github.com/barryclark/jekyll-now","author":"GitHub Community","github_author_name":"Barry Clark","github_author_url":"https://github.com/barryclark","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":8400,"forks":3500,"features":["No command line required β€” fork and publish in 60 seconds","GitHub Pages native (zero config)","Disqus comments built in","Google Analytics support","Social icons for Twitter, GitHub, LinkedIn and more","Simple single-column blog layout","SVG social icons","RSS feed included","Beginner-friendly YAML configuration"],"slug":"jekyll-now","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Jasper brings the polished editorial aesthetic of Ghost's default Casper theme to the Jekyll ecosystem. If you admire the clean, image-led layout of Ghost blogs but want to stay on a static site, Jasper is the natural choice.\n\nCover images dominate the header of each post, creating a visual impact that draws readers in before they've read a word.\n\n**Who is it for?** Bloggers who love Ghost's editorial aesthetic but prefer or require a static Jekyll workflow.\n","url":"/themes/jasper/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jasper Jekyll Theme","description":"A Jekyll port of Ghost's default Casper theme. Brings the polished, editorial feel of Ghost blogging to static Jekyll sites.","key_features":["Ghost-Inspired","GitHub Pages","Editorial Design","Featured Images"],"card_description":"Jekyll port of Ghost's Casper β€” polished, editorial feel.","category":"Blog","card_image":"/assets/images/themes/jasper-card.webp","theme_screenshots":["/assets/images/themes/jasper-screenshot.webp","/assets/images/themes/jasper-screenshot-2.webp","/assets/images/themes/jasper-screenshot-3.webp"],"demo_url":"https://jekyllt.github.io/jasper/","github_url":"https://github.com/biomadeira/jasper","author":"GitHub Community","github_author_name":"biomadeira","github_author_url":"https://github.com/biomadeira","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-05-05","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":587,"forks":290,"features":["Ghost Casper port","Cover image header","Tag-based navigation","Author profiles","Post cover images","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible","Responsive design"],"slug":"jasper","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/jekyll-now.md","relative_path":"_themes/jekyll-now.md","excerpt":"<p>Jekyll Now is the most-forked Jekyll theme on GitHub and the go-to starting point for anyone who wants a blog without touching the command line. The setup is genuinely three steps: fork the repository, rename it to <code class=\"language-plaintext highlighter-rouge\">username.github.io</code>, and your blog is live.</p>\n\n","previous":{"path":"_themes/jasper.md","relative_path":"_themes/jasper.md","excerpt":"<p>Jasper brings the polished editorial aesthetic of Ghost’s default Casper theme to the Jekyll ecosystem. If you admire the clean, image-led layout of Ghost blogs but want to stay on a static site, Jasper is the natural choice.</p>\n\n","previous":{"path":"_themes/hydra.md","relative_path":"_themes/hydra.md","id":"/themes/hydra","collection":"themes","url":"/themes/hydra/","draft":false,"categories":["Landing Page"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Hydra Jekyll Theme","description":"A product and SaaS marketing Jekyll theme with a clean hero section, feature grid, pricing table, and testimonials.","key_features":["Pricing Table","Feature Grid","GitHub Pages","SaaS Ready"],"card_description":"SaaS marketing theme with hero, feature grid, and pricing table.","category":"Landing Page","card_image":"/assets/images/themes/hydra-card.webp","theme_screenshots":["/assets/images/themes/hydra-screenshot.webp","/assets/images/themes/hydra-screenshot-2.webp","/assets/images/themes/hydra-screenshot-3.webp"],"demo_url":"https://orange-ape.cloudvent.net/","github_url":"https://github.com/CloudCannon/hydra-jekyll-template","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap"],"updated_at":"2025-05-14","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":450,"forks":213,"features":["SaaS marketing layout","Hero section with CTA","Feature grid","Pricing table","Testimonials section","Blog included","Contact form ready","GitHub Pages compatible","CloudCannon CMS ready","Fully responsive"],"slug":"hydra","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/jasper","collection":"themes","next":{"path":"_themes/jekyll-now.md","relative_path":"_themes/jekyll-now.md","id":"/themes/jekyll-now","collection":"themes","url":"/themes/jekyll-now/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jekyll Now","description":"The quickest way to start a Jekyll blog. Fork on GitHub, enable Pages, and you have a live blog in under a minute β€” zero command line required.","key_features":["Zero Setup","GitHub Pages","Fork to Deploy","Beginner Friendly"],"card_description":"Quickest way to start a Jekyll blog β€” fork, enable Pages, done.","category":"Blog","card_image":"/assets/images/themes/jekyll-now-card.webp","theme_screenshots":["/assets/images/themes/jekyll-now-screenshot.webp","/assets/images/themes/jekyll-now-screenshot-2.webp","/assets/images/themes/jekyll-now-screenshot-3.webp"],"demo_url":"https://barryclark.github.io/jekyll-now/","github_url":"https://github.com/barryclark/jekyll-now","author":"GitHub Community","github_author_name":"Barry Clark","github_author_url":"https://github.com/barryclark","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":8400,"forks":3500,"features":["No command line required β€” fork and publish in 60 seconds","GitHub Pages native (zero config)","Disqus comments built in","Google Analytics support","Social icons for Twitter, GitHub, LinkedIn and more","Simple single-column blog layout","SVG social icons","RSS feed included","Beginner-friendly YAML configuration"],"slug":"jekyll-now","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Jasper brings the polished editorial aesthetic of Ghost's default Casper theme to the Jekyll ecosystem. If you admire the clean, image-led layout of Ghost blogs but want to stay on a static site, Jasper is the natural choice.\n\nCover images dominate the header of each post, creating a visual impact that draws readers in before they've read a word.\n\n**Who is it for?** Bloggers who love Ghost's editorial aesthetic but prefer or require a static Jekyll workflow.\n","url":"/themes/jasper/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jasper Jekyll Theme","description":"A Jekyll port of Ghost's default Casper theme. Brings the polished, editorial feel of Ghost blogging to static Jekyll sites.","key_features":["Ghost-Inspired","GitHub Pages","Editorial Design","Featured Images"],"card_description":"Jekyll port of Ghost's Casper β€” polished, editorial feel.","category":"Blog","card_image":"/assets/images/themes/jasper-card.webp","theme_screenshots":["/assets/images/themes/jasper-screenshot.webp","/assets/images/themes/jasper-screenshot-2.webp","/assets/images/themes/jasper-screenshot-3.webp"],"demo_url":"https://jekyllt.github.io/jasper/","github_url":"https://github.com/biomadeira/jasper","author":"GitHub Community","github_author_name":"biomadeira","github_author_url":"https://github.com/biomadeira","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-05-05","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":587,"forks":290,"features":["Ghost Casper port","Cover image header","Tag-based navigation","Author profiles","Post cover images","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible","Responsive design"],"slug":"jasper","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/jekyll-now","collection":"themes","next":{"path":"_themes/jekyll-text-theme.md","relative_path":"_themes/jekyll-text-theme.md","excerpt":"<p>TeXt is one of the most feature-complete free Jekyll themes available. Its iOS 11-inspired design is clean and modern, and the depth of built-in functionality is remarkable for a free theme β€” you get multiple colour skins, dark mode, reading progress, multiple comment systems, maths rendering, diagram support, and full internationalisation all out of the box.</p>\n\n","previous":{"path":"_themes/jekyll-now.md","relative_path":"_themes/jekyll-now.md","id":"/themes/jekyll-now","collection":"themes","url":"/themes/jekyll-now/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jekyll Now","description":"The quickest way to start a Jekyll blog. Fork on GitHub, enable Pages, and you have a live blog in under a minute β€” zero command line required.","key_features":["Zero Setup","GitHub Pages","Fork to Deploy","Beginner Friendly"],"card_description":"Quickest way to start a Jekyll blog β€” fork, enable Pages, done.","category":"Blog","card_image":"/assets/images/themes/jekyll-now-card.webp","theme_screenshots":["/assets/images/themes/jekyll-now-screenshot.webp","/assets/images/themes/jekyll-now-screenshot-2.webp","/assets/images/themes/jekyll-now-screenshot-3.webp"],"demo_url":"https://barryclark.github.io/jekyll-now/","github_url":"https://github.com/barryclark/jekyll-now","author":"GitHub Community","github_author_name":"Barry Clark","github_author_url":"https://github.com/barryclark","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":8400,"forks":3500,"features":["No command line required β€” fork and publish in 60 seconds","GitHub Pages native (zero config)","Disqus comments built in","Google Analytics support","Social icons for Twitter, GitHub, LinkedIn and more","Simple single-column blog layout","SVG social icons","RSS feed included","Beginner-friendly YAML configuration"],"slug":"jekyll-now","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/jekyll-text-theme","collection":"themes","next":{"path":"_themes/just-the-docs.md","relative_path":"_themes/just-the-docs.md","id":"/themes/just-the-docs","collection":"themes","url":"/themes/just-the-docs/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Just the Docs Jekyll Theme","description":"The most popular Jekyll documentation theme. Clean sidebar navigation, full-text search, and excellent code block support.","key_features":["Dark Mode","Full-Text Search","Sidebar Nav","GitHub Pages"],"card_description":"Most popular Jekyll docs theme with sidebar navigation and search.","category":"Documentation","card_image":"/assets/images/themes/just-the-docs-card.webp","theme_screenshots":["/assets/images/themes/just-the-docs-screenshot.webp","/assets/images/themes/just-the-docs-screenshot-2.webp","/assets/images/themes/just-the-docs-screenshot-3.webp"],"demo_url":"https://just-the-docs.com/","github_url":"https://github.com/just-the-docs/just-the-docs","author":"GitHub Community","github_author_name":"Just the Docs","github_author_url":"https://github.com/just-the-docs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-05-01","added_at":"2026-01-08","popular":true,"trending":true,"bestseller":false,"version":"0.10.0","license":"MIT","stars":7800,"forks":3100,"features":["Full-text search (client-side)","Multi-level sidebar navigation","Light and dark colour schemes","Code syntax highlighting","Table of contents per page","Configurable navigation order","Customisable colour variables"],"slug":"just-the-docs","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"TeXt is one of the most feature-complete free Jekyll themes available. Its iOS 11-inspired design is clean and modern, and the depth of built-in functionality is remarkable for a free theme β€” you get multiple colour skins, dark mode, reading progress, multiple comment systems, maths rendering, diagram support, and full internationalisation all out of the box.\n\nThe theme works equally well for personal blogs, team sites, and documentation. Its YAML-driven configuration keeps customisation accessible without requiring deep Jekyll knowledge.\n\n**Who is it for?** Bloggers, developers, and teams who want a polished, professional site with broad feature coverage and don't want to piece together plugins manually.\n","url":"/themes/jekyll-text-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"TeXt Jekyll Theme","description":"A highly customisable Jekyll theme inspired by iOS 11 style. Features multiple skins, rich built-in components, full internationalisation, and support for blogs, documentation, and team sites.","key_features":["Multiple Skins","Dark Mode","Internationalisation","GitHub Pages"],"card_description":"iOS-inspired theme with multiple skins and rich built-in components.","category":"Blog","card_image":"/assets/images/themes/jekyll-text-theme-card.webp","theme_screenshots":["/assets/images/themes/jekyll-text-theme-screenshot.webp","/assets/images/themes/jekyll-text-theme-screenshot-2.webp","/assets/images/themes/jekyll-text-theme-screenshot-3.webp"],"demo_url":"https://kitian616.github.io/jekyll-TeXt-theme/","github_url":"https://github.com/kitian616/jekyll-TeXt-theme","author":"GitHub Community","github_author_name":"kitian616","github_author_url":"https://github.com/kitian616","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"2.2.6","license":"MIT","stars":3300,"forks":700,"features":["6 built-in colour skins","Dark mode support","Full internationalisation (i18n) with 10+ languages","Article reading progress bar","Disqus, Gitalk, and Valine comment systems","MathJax and Mermaid diagram support","Full-text search via Algolia or Simple Jekyll Search","Table of contents sidebar","Responsive image galleries","GitHub Pages compatible"],"slug":"jekyll-text-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Jekyll Now is the most-forked Jekyll theme on GitHub and the go-to starting point for anyone who wants a blog without touching the command line. The setup is genuinely three steps: fork the repository, rename it to `username.github.io`, and your blog is live.\n\nBarry Clark built Jekyll Now to lower the barrier to entry as far as it could go. The theme is intentionally minimal β€” clean typography, a responsive single-column layout, and just enough configuration to feel personal without overwhelming a new user.\n\n**Who is it for?** Beginners, writers, and developers who want a quick personal blog on GitHub Pages with no local setup required.\n","url":"/themes/jekyll-now/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jekyll Now","description":"The quickest way to start a Jekyll blog. Fork on GitHub, enable Pages, and you have a live blog in under a minute β€” zero command line required.","key_features":["Zero Setup","GitHub Pages","Fork to Deploy","Beginner Friendly"],"card_description":"Quickest way to start a Jekyll blog β€” fork, enable Pages, done.","category":"Blog","card_image":"/assets/images/themes/jekyll-now-card.webp","theme_screenshots":["/assets/images/themes/jekyll-now-screenshot.webp","/assets/images/themes/jekyll-now-screenshot-2.webp","/assets/images/themes/jekyll-now-screenshot-3.webp"],"demo_url":"https://barryclark.github.io/jekyll-now/","github_url":"https://github.com/barryclark/jekyll-now","author":"GitHub Community","github_author_name":"Barry Clark","github_author_url":"https://github.com/barryclark","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":8400,"forks":3500,"features":["No command line required β€” fork and publish in 60 seconds","GitHub Pages native (zero config)","Disqus comments built in","Google Analytics support","Social icons for Twitter, GitHub, LinkedIn and more","Simple single-column blog layout","SVG social icons","RSS feed included","Beginner-friendly YAML configuration"],"slug":"jekyll-now","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/jekyll-text-theme.md","relative_path":"_themes/jekyll-text-theme.md","excerpt":"<p>TeXt is one of the most feature-complete free Jekyll themes available. Its iOS 11-inspired design is clean and modern, and the depth of built-in functionality is remarkable for a free theme β€” you get multiple colour skins, dark mode, reading progress, multiple comment systems, maths rendering, diagram support, and full internationalisation all out of the box.</p>\n\n","previous":{"path":"_themes/jekyll-now.md","relative_path":"_themes/jekyll-now.md","excerpt":"<p>Jekyll Now is the most-forked Jekyll theme on GitHub and the go-to starting point for anyone who wants a blog without touching the command line. The setup is genuinely three steps: fork the repository, rename it to <code class=\"language-plaintext highlighter-rouge\">username.github.io</code>, and your blog is live.</p>\n\n","previous":{"path":"_themes/jasper.md","relative_path":"_themes/jasper.md","id":"/themes/jasper","collection":"themes","url":"/themes/jasper/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jasper Jekyll Theme","description":"A Jekyll port of Ghost's default Casper theme. Brings the polished, editorial feel of Ghost blogging to static Jekyll sites.","key_features":["Ghost-Inspired","GitHub Pages","Editorial Design","Featured Images"],"card_description":"Jekyll port of Ghost's Casper β€” polished, editorial feel.","category":"Blog","card_image":"/assets/images/themes/jasper-card.webp","theme_screenshots":["/assets/images/themes/jasper-screenshot.webp","/assets/images/themes/jasper-screenshot-2.webp","/assets/images/themes/jasper-screenshot-3.webp"],"demo_url":"https://jekyllt.github.io/jasper/","github_url":"https://github.com/biomadeira/jasper","author":"GitHub Community","github_author_name":"biomadeira","github_author_url":"https://github.com/biomadeira","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2023-05-05","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":587,"forks":290,"features":["Ghost Casper port","Cover image header","Tag-based navigation","Author profiles","Post cover images","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible","Responsive design"],"slug":"jasper","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/jekyll-now","collection":"themes","next":{"path":"_themes/jekyll-text-theme.md","relative_path":"_themes/jekyll-text-theme.md","id":"/themes/jekyll-text-theme","collection":"themes","url":"/themes/jekyll-text-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"TeXt Jekyll Theme","description":"A highly customisable Jekyll theme inspired by iOS 11 style. Features multiple skins, rich built-in components, full internationalisation, and support for blogs, documentation, and team sites.","key_features":["Multiple Skins","Dark Mode","Internationalisation","GitHub Pages"],"card_description":"iOS-inspired theme with multiple skins and rich built-in components.","category":"Blog","card_image":"/assets/images/themes/jekyll-text-theme-card.webp","theme_screenshots":["/assets/images/themes/jekyll-text-theme-screenshot.webp","/assets/images/themes/jekyll-text-theme-screenshot-2.webp","/assets/images/themes/jekyll-text-theme-screenshot-3.webp"],"demo_url":"https://kitian616.github.io/jekyll-TeXt-theme/","github_url":"https://github.com/kitian616/jekyll-TeXt-theme","author":"GitHub Community","github_author_name":"kitian616","github_author_url":"https://github.com/kitian616","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"2.2.6","license":"MIT","stars":3300,"forks":700,"features":["6 built-in colour skins","Dark mode support","Full internationalisation (i18n) with 10+ languages","Article reading progress bar","Disqus, Gitalk, and Valine comment systems","MathJax and Mermaid diagram support","Full-text search via Algolia or Simple Jekyll Search","Table of contents sidebar","Responsive image galleries","GitHub Pages compatible"],"slug":"jekyll-text-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Jekyll Now is the most-forked Jekyll theme on GitHub and the go-to starting point for anyone who wants a blog without touching the command line. The setup is genuinely three steps: fork the repository, rename it to `username.github.io`, and your blog is live.\n\nBarry Clark built Jekyll Now to lower the barrier to entry as far as it could go. The theme is intentionally minimal β€” clean typography, a responsive single-column layout, and just enough configuration to feel personal without overwhelming a new user.\n\n**Who is it for?** Beginners, writers, and developers who want a quick personal blog on GitHub Pages with no local setup required.\n","url":"/themes/jekyll-now/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jekyll Now","description":"The quickest way to start a Jekyll blog. Fork on GitHub, enable Pages, and you have a live blog in under a minute β€” zero command line required.","key_features":["Zero Setup","GitHub Pages","Fork to Deploy","Beginner Friendly"],"card_description":"Quickest way to start a Jekyll blog β€” fork, enable Pages, done.","category":"Blog","card_image":"/assets/images/themes/jekyll-now-card.webp","theme_screenshots":["/assets/images/themes/jekyll-now-screenshot.webp","/assets/images/themes/jekyll-now-screenshot-2.webp","/assets/images/themes/jekyll-now-screenshot-3.webp"],"demo_url":"https://barryclark.github.io/jekyll-now/","github_url":"https://github.com/barryclark/jekyll-now","author":"GitHub Community","github_author_name":"Barry Clark","github_author_url":"https://github.com/barryclark","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":8400,"forks":3500,"features":["No command line required β€” fork and publish in 60 seconds","GitHub Pages native (zero config)","Disqus comments built in","Google Analytics support","Social icons for Twitter, GitHub, LinkedIn and more","Simple single-column blog layout","SVG social icons","RSS feed included","Beginner-friendly YAML configuration"],"slug":"jekyll-now","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/jekyll-text-theme","collection":"themes","next":{"path":"_themes/just-the-docs.md","relative_path":"_themes/just-the-docs.md","excerpt":"<p>Just the Docs is the undisputed standard for Jekyll documentation sites. Thousands of open source projects use it to ship clean, searchable documentation β€” from small libraries to major frameworks.</p>\n\n","previous":{"path":"_themes/jekyll-text-theme.md","relative_path":"_themes/jekyll-text-theme.md","id":"/themes/jekyll-text-theme","collection":"themes","url":"/themes/jekyll-text-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"TeXt Jekyll Theme","description":"A highly customisable Jekyll theme inspired by iOS 11 style. Features multiple skins, rich built-in components, full internationalisation, and support for blogs, documentation, and team sites.","key_features":["Multiple Skins","Dark Mode","Internationalisation","GitHub Pages"],"card_description":"iOS-inspired theme with multiple skins and rich built-in components.","category":"Blog","card_image":"/assets/images/themes/jekyll-text-theme-card.webp","theme_screenshots":["/assets/images/themes/jekyll-text-theme-screenshot.webp","/assets/images/themes/jekyll-text-theme-screenshot-2.webp","/assets/images/themes/jekyll-text-theme-screenshot-3.webp"],"demo_url":"https://kitian616.github.io/jekyll-TeXt-theme/","github_url":"https://github.com/kitian616/jekyll-TeXt-theme","author":"GitHub Community","github_author_name":"kitian616","github_author_url":"https://github.com/kitian616","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"2.2.6","license":"MIT","stars":3300,"forks":700,"features":["6 built-in colour skins","Dark mode support","Full internationalisation (i18n) with 10+ languages","Article reading progress bar","Disqus, Gitalk, and Valine comment systems","MathJax and Mermaid diagram support","Full-text search via Algolia or Simple Jekyll Search","Table of contents sidebar","Responsive image galleries","GitHub Pages compatible"],"slug":"jekyll-text-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/just-the-docs","collection":"themes","next":{"path":"_themes/klise.md","relative_path":"_themes/klise.md","id":"/themes/klise","collection":"themes","url":"/themes/klise/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"KlisΓ© Jekyll Theme","description":"A minimalist Jekyll theme with seamless light and dark mode. Clean typography, fast performance, and a modern aesthetic β€” designed for personal sites and blogs that value simplicity.","key_features":["Dark Mode","Seamless Toggle","Minimal Design","Fast Performance"],"card_description":"Minimalist theme with seamless dark mode and clean typography.","category":"Blog","card_image":"/assets/images/themes/klise-card.webp","theme_screenshots":["/assets/images/themes/klise-screenshot.webp","/assets/images/themes/klise-screenshot-2.webp","/assets/images/themes/klise-screenshot-3.webp"],"demo_url":"https://klise.vercel.app/","github_url":"https://github.com/piharpi/jekyll-klise","author":"GitHub Community","github_author_name":"piharpi","github_author_url":"https://github.com/piharpi","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"0.4.1","license":"MIT","stars":300,"forks":200,"features":["Seamless light and dark mode toggle","Clean, modern minimal design","Fast performance (minimal CSS/JS)","Post categories and tags","Syntax highlighting","Responsive images","Reading time estimates","SEO optimised","GitHub Pages compatible","Vercel deploy ready"],"slug":"klise","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Just the Docs is the undisputed standard for Jekyll documentation sites. Thousands of open source projects use it to ship clean, searchable documentation β€” from small libraries to major frameworks.\n\nIts sidebar navigation supports multiple levels of nesting, its search is fast and client-side, and the whole thing is deeply customisable through SCSS variables.\n\n**Who is it for?** Open source projects, developer tools, APIs, and anyone building a documentation site that needs to look professional and be easy to navigate.\n","url":"/themes/just-the-docs/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Just the Docs Jekyll Theme","description":"The most popular Jekyll documentation theme. Clean sidebar navigation, full-text search, and excellent code block support.","key_features":["Dark Mode","Full-Text Search","Sidebar Nav","GitHub Pages"],"card_description":"Most popular Jekyll docs theme with sidebar navigation and search.","category":"Documentation","card_image":"/assets/images/themes/just-the-docs-card.webp","theme_screenshots":["/assets/images/themes/just-the-docs-screenshot.webp","/assets/images/themes/just-the-docs-screenshot-2.webp","/assets/images/themes/just-the-docs-screenshot-3.webp"],"demo_url":"https://just-the-docs.com/","github_url":"https://github.com/just-the-docs/just-the-docs","author":"GitHub Community","github_author_name":"Just the Docs","github_author_url":"https://github.com/just-the-docs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-05-01","added_at":"2026-01-08","popular":true,"trending":true,"bestseller":false,"version":"0.10.0","license":"MIT","stars":7800,"forks":3100,"features":["Full-text search (client-side)","Multi-level sidebar navigation","Light and dark colour schemes","Code syntax highlighting","Table of contents per page","Configurable navigation order","Customisable colour variables"],"slug":"just-the-docs","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"TeXt is one of the most feature-complete free Jekyll themes available. Its iOS 11-inspired design is clean and modern, and the depth of built-in functionality is remarkable for a free theme β€” you get multiple colour skins, dark mode, reading progress, multiple comment systems, maths rendering, diagram support, and full internationalisation all out of the box.\n\nThe theme works equally well for personal blogs, team sites, and documentation. Its YAML-driven configuration keeps customisation accessible without requiring deep Jekyll knowledge.\n\n**Who is it for?** Bloggers, developers, and teams who want a polished, professional site with broad feature coverage and don't want to piece together plugins manually.\n","url":"/themes/jekyll-text-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"TeXt Jekyll Theme","description":"A highly customisable Jekyll theme inspired by iOS 11 style. Features multiple skins, rich built-in components, full internationalisation, and support for blogs, documentation, and team sites.","key_features":["Multiple Skins","Dark Mode","Internationalisation","GitHub Pages"],"card_description":"iOS-inspired theme with multiple skins and rich built-in components.","category":"Blog","card_image":"/assets/images/themes/jekyll-text-theme-card.webp","theme_screenshots":["/assets/images/themes/jekyll-text-theme-screenshot.webp","/assets/images/themes/jekyll-text-theme-screenshot-2.webp","/assets/images/themes/jekyll-text-theme-screenshot-3.webp"],"demo_url":"https://kitian616.github.io/jekyll-TeXt-theme/","github_url":"https://github.com/kitian616/jekyll-TeXt-theme","author":"GitHub Community","github_author_name":"kitian616","github_author_url":"https://github.com/kitian616","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"2.2.6","license":"MIT","stars":3300,"forks":700,"features":["6 built-in colour skins","Dark mode support","Full internationalisation (i18n) with 10+ languages","Article reading progress bar","Disqus, Gitalk, and Valine comment systems","MathJax and Mermaid diagram support","Full-text search via Algolia or Simple Jekyll Search","Table of contents sidebar","Responsive image galleries","GitHub Pages compatible"],"slug":"jekyll-text-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/just-the-docs.md","relative_path":"_themes/just-the-docs.md","excerpt":"<p>Just the Docs is the undisputed standard for Jekyll documentation sites. Thousands of open source projects use it to ship clean, searchable documentation β€” from small libraries to major frameworks.</p>\n\n","previous":{"path":"_themes/jekyll-text-theme.md","relative_path":"_themes/jekyll-text-theme.md","excerpt":"<p>TeXt is one of the most feature-complete free Jekyll themes available. Its iOS 11-inspired design is clean and modern, and the depth of built-in functionality is remarkable for a free theme β€” you get multiple colour skins, dark mode, reading progress, multiple comment systems, maths rendering, diagram support, and full internationalisation all out of the box.</p>\n\n","previous":{"path":"_themes/jekyll-now.md","relative_path":"_themes/jekyll-now.md","id":"/themes/jekyll-now","collection":"themes","url":"/themes/jekyll-now/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Jekyll Now","description":"The quickest way to start a Jekyll blog. Fork on GitHub, enable Pages, and you have a live blog in under a minute β€” zero command line required.","key_features":["Zero Setup","GitHub Pages","Fork to Deploy","Beginner Friendly"],"card_description":"Quickest way to start a Jekyll blog β€” fork, enable Pages, done.","category":"Blog","card_image":"/assets/images/themes/jekyll-now-card.webp","theme_screenshots":["/assets/images/themes/jekyll-now-screenshot.webp","/assets/images/themes/jekyll-now-screenshot-2.webp","/assets/images/themes/jekyll-now-screenshot-3.webp"],"demo_url":"https://barryclark.github.io/jekyll-now/","github_url":"https://github.com/barryclark/jekyll-now","author":"GitHub Community","github_author_name":"Barry Clark","github_author_url":"https://github.com/barryclark","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":8400,"forks":3500,"features":["No command line required β€” fork and publish in 60 seconds","GitHub Pages native (zero config)","Disqus comments built in","Google Analytics support","Social icons for Twitter, GitHub, LinkedIn and more","Simple single-column blog layout","SVG social icons","RSS feed included","Beginner-friendly YAML configuration"],"slug":"jekyll-now","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/jekyll-text-theme","collection":"themes","next":{"path":"_themes/just-the-docs.md","relative_path":"_themes/just-the-docs.md","id":"/themes/just-the-docs","collection":"themes","url":"/themes/just-the-docs/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Just the Docs Jekyll Theme","description":"The most popular Jekyll documentation theme. Clean sidebar navigation, full-text search, and excellent code block support.","key_features":["Dark Mode","Full-Text Search","Sidebar Nav","GitHub Pages"],"card_description":"Most popular Jekyll docs theme with sidebar navigation and search.","category":"Documentation","card_image":"/assets/images/themes/just-the-docs-card.webp","theme_screenshots":["/assets/images/themes/just-the-docs-screenshot.webp","/assets/images/themes/just-the-docs-screenshot-2.webp","/assets/images/themes/just-the-docs-screenshot-3.webp"],"demo_url":"https://just-the-docs.com/","github_url":"https://github.com/just-the-docs/just-the-docs","author":"GitHub Community","github_author_name":"Just the Docs","github_author_url":"https://github.com/just-the-docs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-05-01","added_at":"2026-01-08","popular":true,"trending":true,"bestseller":false,"version":"0.10.0","license":"MIT","stars":7800,"forks":3100,"features":["Full-text search (client-side)","Multi-level sidebar navigation","Light and dark colour schemes","Code syntax highlighting","Table of contents per page","Configurable navigation order","Customisable colour variables"],"slug":"just-the-docs","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"TeXt is one of the most feature-complete free Jekyll themes available. Its iOS 11-inspired design is clean and modern, and the depth of built-in functionality is remarkable for a free theme β€” you get multiple colour skins, dark mode, reading progress, multiple comment systems, maths rendering, diagram support, and full internationalisation all out of the box.\n\nThe theme works equally well for personal blogs, team sites, and documentation. Its YAML-driven configuration keeps customisation accessible without requiring deep Jekyll knowledge.\n\n**Who is it for?** Bloggers, developers, and teams who want a polished, professional site with broad feature coverage and don't want to piece together plugins manually.\n","url":"/themes/jekyll-text-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"TeXt Jekyll Theme","description":"A highly customisable Jekyll theme inspired by iOS 11 style. Features multiple skins, rich built-in components, full internationalisation, and support for blogs, documentation, and team sites.","key_features":["Multiple Skins","Dark Mode","Internationalisation","GitHub Pages"],"card_description":"iOS-inspired theme with multiple skins and rich built-in components.","category":"Blog","card_image":"/assets/images/themes/jekyll-text-theme-card.webp","theme_screenshots":["/assets/images/themes/jekyll-text-theme-screenshot.webp","/assets/images/themes/jekyll-text-theme-screenshot-2.webp","/assets/images/themes/jekyll-text-theme-screenshot-3.webp"],"demo_url":"https://kitian616.github.io/jekyll-TeXt-theme/","github_url":"https://github.com/kitian616/jekyll-TeXt-theme","author":"GitHub Community","github_author_name":"kitian616","github_author_url":"https://github.com/kitian616","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"2.2.6","license":"MIT","stars":3300,"forks":700,"features":["6 built-in colour skins","Dark mode support","Full internationalisation (i18n) with 10+ languages","Article reading progress bar","Disqus, Gitalk, and Valine comment systems","MathJax and Mermaid diagram support","Full-text search via Algolia or Simple Jekyll Search","Table of contents sidebar","Responsive image galleries","GitHub Pages compatible"],"slug":"jekyll-text-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/just-the-docs","collection":"themes","next":{"path":"_themes/klise.md","relative_path":"_themes/klise.md","excerpt":"<p>KlisΓ© (pronounced β€œcliché”) is the modern minimalist’s Jekyll theme. Its defining feature is a light/dark mode toggle that’s smooth, instant, and remembers your preference β€” implemented with care rather than as an afterthought.</p>\n\n","previous":{"path":"_themes/just-the-docs.md","relative_path":"_themes/just-the-docs.md","id":"/themes/just-the-docs","collection":"themes","url":"/themes/just-the-docs/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Just the Docs Jekyll Theme","description":"The most popular Jekyll documentation theme. Clean sidebar navigation, full-text search, and excellent code block support.","key_features":["Dark Mode","Full-Text Search","Sidebar Nav","GitHub Pages"],"card_description":"Most popular Jekyll docs theme with sidebar navigation and search.","category":"Documentation","card_image":"/assets/images/themes/just-the-docs-card.webp","theme_screenshots":["/assets/images/themes/just-the-docs-screenshot.webp","/assets/images/themes/just-the-docs-screenshot-2.webp","/assets/images/themes/just-the-docs-screenshot-3.webp"],"demo_url":"https://just-the-docs.com/","github_url":"https://github.com/just-the-docs/just-the-docs","author":"GitHub Community","github_author_name":"Just the Docs","github_author_url":"https://github.com/just-the-docs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-05-01","added_at":"2026-01-08","popular":true,"trending":true,"bestseller":false,"version":"0.10.0","license":"MIT","stars":7800,"forks":3100,"features":["Full-text search (client-side)","Multi-level sidebar navigation","Light and dark colour schemes","Code syntax highlighting","Table of contents per page","Configurable navigation order","Customisable colour variables"],"slug":"just-the-docs","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/klise","collection":"themes","next":{"path":"_themes/lanyon.md","relative_path":"_themes/lanyon.md","id":"/themes/lanyon","collection":"themes","url":"/themes/lanyon/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Lanyon Jekyll Theme","description":"A Jekyll theme that hides its sidebar until you need it. Clean, spacious reading layout with a smooth slide-out navigation drawer.","key_features":["Slide-Out Sidebar","GitHub Pages","Clean Reading","Hidden Navigation"],"card_description":"Clean blog theme with a smooth slide-out navigation drawer.","category":"Blog","card_image":"/assets/images/themes/lanyon-card.webp","theme_screenshots":["/assets/images/themes/lanyon-screenshot.webp","/assets/images/themes/lanyon-screenshot-2.webp","/assets/images/themes/lanyon-screenshot-3.webp"],"demo_url":"https://lanyon.getpoole.com/","github_url":"https://github.com/poole/lanyon","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-02-05","popular":true,"trending":false,"bestseller":false,"version":"1.1.0","license":"MIT","stars":5700,"forks":2600,"features":["Hidden slide-out sidebar","Toggle button for navigation","Full-width reading area","Eight colour themes","Clean Poole base"],"slug":"lanyon","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"KlisΓ© (pronounced \"clichΓ©\") is the modern minimalist's Jekyll theme. Its defining feature is a light/dark mode toggle that's smooth, instant, and remembers your preference β€” implemented with care rather than as an afterthought.\n\nThe overall design is clean and contemporary: generous whitespace, careful typographic choices, and a colour palette that works equally well in both modes. It's the theme you'd reach for if you want something that looks like it was built this year, not five years ago.\n\n**Who is it for?** Developers and writers who want a modern minimal blog with a polished dark mode implementation and a design that feels current.\n","url":"/themes/klise/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"KlisΓ© Jekyll Theme","description":"A minimalist Jekyll theme with seamless light and dark mode. Clean typography, fast performance, and a modern aesthetic β€” designed for personal sites and blogs that value simplicity.","key_features":["Dark Mode","Seamless Toggle","Minimal Design","Fast Performance"],"card_description":"Minimalist theme with seamless dark mode and clean typography.","category":"Blog","card_image":"/assets/images/themes/klise-card.webp","theme_screenshots":["/assets/images/themes/klise-screenshot.webp","/assets/images/themes/klise-screenshot-2.webp","/assets/images/themes/klise-screenshot-3.webp"],"demo_url":"https://klise.vercel.app/","github_url":"https://github.com/piharpi/jekyll-klise","author":"GitHub Community","github_author_name":"piharpi","github_author_url":"https://github.com/piharpi","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"0.4.1","license":"MIT","stars":300,"forks":200,"features":["Seamless light and dark mode toggle","Clean, modern minimal design","Fast performance (minimal CSS/JS)","Post categories and tags","Syntax highlighting","Responsive images","Reading time estimates","SEO optimised","GitHub Pages compatible","Vercel deploy ready"],"slug":"klise","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Just the Docs is the undisputed standard for Jekyll documentation sites. Thousands of open source projects use it to ship clean, searchable documentation β€” from small libraries to major frameworks.\n\nIts sidebar navigation supports multiple levels of nesting, its search is fast and client-side, and the whole thing is deeply customisable through SCSS variables.\n\n**Who is it for?** Open source projects, developer tools, APIs, and anyone building a documentation site that needs to look professional and be easy to navigate.\n","url":"/themes/just-the-docs/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Just the Docs Jekyll Theme","description":"The most popular Jekyll documentation theme. Clean sidebar navigation, full-text search, and excellent code block support.","key_features":["Dark Mode","Full-Text Search","Sidebar Nav","GitHub Pages"],"card_description":"Most popular Jekyll docs theme with sidebar navigation and search.","category":"Documentation","card_image":"/assets/images/themes/just-the-docs-card.webp","theme_screenshots":["/assets/images/themes/just-the-docs-screenshot.webp","/assets/images/themes/just-the-docs-screenshot-2.webp","/assets/images/themes/just-the-docs-screenshot-3.webp"],"demo_url":"https://just-the-docs.com/","github_url":"https://github.com/just-the-docs/just-the-docs","author":"GitHub Community","github_author_name":"Just the Docs","github_author_url":"https://github.com/just-the-docs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-05-01","added_at":"2026-01-08","popular":true,"trending":true,"bestseller":false,"version":"0.10.0","license":"MIT","stars":7800,"forks":3100,"features":["Full-text search (client-side)","Multi-level sidebar navigation","Light and dark colour schemes","Code syntax highlighting","Table of contents per page","Configurable navigation order","Customisable colour variables"],"slug":"just-the-docs","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/klise.md","relative_path":"_themes/klise.md","excerpt":"<p>KlisΓ© (pronounced β€œcliché”) is the modern minimalist’s Jekyll theme. Its defining feature is a light/dark mode toggle that’s smooth, instant, and remembers your preference β€” implemented with care rather than as an afterthought.</p>\n\n","previous":{"path":"_themes/just-the-docs.md","relative_path":"_themes/just-the-docs.md","excerpt":"<p>Just the Docs is the undisputed standard for Jekyll documentation sites. Thousands of open source projects use it to ship clean, searchable documentation β€” from small libraries to major frameworks.</p>\n\n","previous":{"path":"_themes/jekyll-text-theme.md","relative_path":"_themes/jekyll-text-theme.md","id":"/themes/jekyll-text-theme","collection":"themes","url":"/themes/jekyll-text-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"TeXt Jekyll Theme","description":"A highly customisable Jekyll theme inspired by iOS 11 style. Features multiple skins, rich built-in components, full internationalisation, and support for blogs, documentation, and team sites.","key_features":["Multiple Skins","Dark Mode","Internationalisation","GitHub Pages"],"card_description":"iOS-inspired theme with multiple skins and rich built-in components.","category":"Blog","card_image":"/assets/images/themes/jekyll-text-theme-card.webp","theme_screenshots":["/assets/images/themes/jekyll-text-theme-screenshot.webp","/assets/images/themes/jekyll-text-theme-screenshot-2.webp","/assets/images/themes/jekyll-text-theme-screenshot-3.webp"],"demo_url":"https://kitian616.github.io/jekyll-TeXt-theme/","github_url":"https://github.com/kitian616/jekyll-TeXt-theme","author":"GitHub Community","github_author_name":"kitian616","github_author_url":"https://github.com/kitian616","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-01-01","added_at":"2026-06-07","popular":true,"trending":false,"bestseller":false,"version":"2.2.6","license":"MIT","stars":3300,"forks":700,"features":["6 built-in colour skins","Dark mode support","Full internationalisation (i18n) with 10+ languages","Article reading progress bar","Disqus, Gitalk, and Valine comment systems","MathJax and Mermaid diagram support","Full-text search via Algolia or Simple Jekyll Search","Table of contents sidebar","Responsive image galleries","GitHub Pages compatible"],"slug":"jekyll-text-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/just-the-docs","collection":"themes","next":{"path":"_themes/klise.md","relative_path":"_themes/klise.md","id":"/themes/klise","collection":"themes","url":"/themes/klise/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"KlisΓ© Jekyll Theme","description":"A minimalist Jekyll theme with seamless light and dark mode. Clean typography, fast performance, and a modern aesthetic β€” designed for personal sites and blogs that value simplicity.","key_features":["Dark Mode","Seamless Toggle","Minimal Design","Fast Performance"],"card_description":"Minimalist theme with seamless dark mode and clean typography.","category":"Blog","card_image":"/assets/images/themes/klise-card.webp","theme_screenshots":["/assets/images/themes/klise-screenshot.webp","/assets/images/themes/klise-screenshot-2.webp","/assets/images/themes/klise-screenshot-3.webp"],"demo_url":"https://klise.vercel.app/","github_url":"https://github.com/piharpi/jekyll-klise","author":"GitHub Community","github_author_name":"piharpi","github_author_url":"https://github.com/piharpi","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"0.4.1","license":"MIT","stars":300,"forks":200,"features":["Seamless light and dark mode toggle","Clean, modern minimal design","Fast performance (minimal CSS/JS)","Post categories and tags","Syntax highlighting","Responsive images","Reading time estimates","SEO optimised","GitHub Pages compatible","Vercel deploy ready"],"slug":"klise","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Just the Docs is the undisputed standard for Jekyll documentation sites. Thousands of open source projects use it to ship clean, searchable documentation β€” from small libraries to major frameworks.\n\nIts sidebar navigation supports multiple levels of nesting, its search is fast and client-side, and the whole thing is deeply customisable through SCSS variables.\n\n**Who is it for?** Open source projects, developer tools, APIs, and anyone building a documentation site that needs to look professional and be easy to navigate.\n","url":"/themes/just-the-docs/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Just the Docs Jekyll Theme","description":"The most popular Jekyll documentation theme. Clean sidebar navigation, full-text search, and excellent code block support.","key_features":["Dark Mode","Full-Text Search","Sidebar Nav","GitHub Pages"],"card_description":"Most popular Jekyll docs theme with sidebar navigation and search.","category":"Documentation","card_image":"/assets/images/themes/just-the-docs-card.webp","theme_screenshots":["/assets/images/themes/just-the-docs-screenshot.webp","/assets/images/themes/just-the-docs-screenshot-2.webp","/assets/images/themes/just-the-docs-screenshot-3.webp"],"demo_url":"https://just-the-docs.com/","github_url":"https://github.com/just-the-docs/just-the-docs","author":"GitHub Community","github_author_name":"Just the Docs","github_author_url":"https://github.com/just-the-docs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-05-01","added_at":"2026-01-08","popular":true,"trending":true,"bestseller":false,"version":"0.10.0","license":"MIT","stars":7800,"forks":3100,"features":["Full-text search (client-side)","Multi-level sidebar navigation","Light and dark colour schemes","Code syntax highlighting","Table of contents per page","Configurable navigation order","Customisable colour variables"],"slug":"just-the-docs","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/klise","collection":"themes","next":{"path":"_themes/lanyon.md","relative_path":"_themes/lanyon.md","excerpt":"<p>Lanyon is Hyde’s sibling from the Poole family β€” sharing the same clean foundation but hiding its sidebar until the reader needs it. A small toggle button reveals a smooth slide-out navigation drawer, keeping the reading area completely clean by default.</p>\n\n","previous":{"path":"_themes/klise.md","relative_path":"_themes/klise.md","id":"/themes/klise","collection":"themes","url":"/themes/klise/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"KlisΓ© Jekyll Theme","description":"A minimalist Jekyll theme with seamless light and dark mode. Clean typography, fast performance, and a modern aesthetic β€” designed for personal sites and blogs that value simplicity.","key_features":["Dark Mode","Seamless Toggle","Minimal Design","Fast Performance"],"card_description":"Minimalist theme with seamless dark mode and clean typography.","category":"Blog","card_image":"/assets/images/themes/klise-card.webp","theme_screenshots":["/assets/images/themes/klise-screenshot.webp","/assets/images/themes/klise-screenshot-2.webp","/assets/images/themes/klise-screenshot-3.webp"],"demo_url":"https://klise.vercel.app/","github_url":"https://github.com/piharpi/jekyll-klise","author":"GitHub Community","github_author_name":"piharpi","github_author_url":"https://github.com/piharpi","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"0.4.1","license":"MIT","stars":300,"forks":200,"features":["Seamless light and dark mode toggle","Clean, modern minimal design","Fast performance (minimal CSS/JS)","Post categories and tags","Syntax highlighting","Responsive images","Reading time estimates","SEO optimised","GitHub Pages compatible","Vercel deploy ready"],"slug":"klise","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/lanyon","collection":"themes","next":{"path":"_themes/leonids.md","relative_path":"_themes/leonids.md","id":"/themes/leonids","collection":"themes","url":"/themes/leonids/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Leonids Jekyll Theme","description":"A simple and clean two-column Jekyll blog theme. Fixed sidebar with author bio and social links, clean post listing, and a timeless layout that puts content front and centre.","key_features":["Fixed Sidebar","Author Bio","Social Links","GitHub Pages"],"card_description":"Two-column blog with fixed sidebar and timeless content-first layout.","category":"Blog","card_image":"/assets/images/themes/leonids-card.webp","theme_screenshots":["/assets/images/themes/leonids-screenshot.webp","/assets/images/themes/leonids-screenshot-2.webp","/assets/images/themes/leonids-screenshot-3.webp"],"demo_url":"https://renyuanz.github.io/leonids/","github_url":"https://github.com/renyuanz/leonids","author":"GitHub Community","github_author_name":"renyuanz","github_author_url":"https://github.com/renyuanz","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1400,"forks":500,"features":["Fixed two-column layout with sidebar","Author bio and avatar in sidebar","Social media links","Category and tag support","Paginated post listing","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible"],"slug":"leonids","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Lanyon is Hyde's sibling from the Poole family β€” sharing the same clean foundation but hiding its sidebar until the reader needs it. A small toggle button reveals a smooth slide-out navigation drawer, keeping the reading area completely clean by default.\n\nThe result is one of the most spacious and focused reading experiences in the Jekyll theme ecosystem.\n\n**Who is it for?** Writers who want maximum reading space and a navigation drawer that stays out of the way.\n","url":"/themes/lanyon/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Lanyon Jekyll Theme","description":"A Jekyll theme that hides its sidebar until you need it. Clean, spacious reading layout with a smooth slide-out navigation drawer.","key_features":["Slide-Out Sidebar","GitHub Pages","Clean Reading","Hidden Navigation"],"card_description":"Clean blog theme with a smooth slide-out navigation drawer.","category":"Blog","card_image":"/assets/images/themes/lanyon-card.webp","theme_screenshots":["/assets/images/themes/lanyon-screenshot.webp","/assets/images/themes/lanyon-screenshot-2.webp","/assets/images/themes/lanyon-screenshot-3.webp"],"demo_url":"https://lanyon.getpoole.com/","github_url":"https://github.com/poole/lanyon","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-02-05","popular":true,"trending":false,"bestseller":false,"version":"1.1.0","license":"MIT","stars":5700,"forks":2600,"features":["Hidden slide-out sidebar","Toggle button for navigation","Full-width reading area","Eight colour themes","Clean Poole base"],"slug":"lanyon","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"KlisΓ© (pronounced \"clichΓ©\") is the modern minimalist's Jekyll theme. Its defining feature is a light/dark mode toggle that's smooth, instant, and remembers your preference β€” implemented with care rather than as an afterthought.\n\nThe overall design is clean and contemporary: generous whitespace, careful typographic choices, and a colour palette that works equally well in both modes. It's the theme you'd reach for if you want something that looks like it was built this year, not five years ago.\n\n**Who is it for?** Developers and writers who want a modern minimal blog with a polished dark mode implementation and a design that feels current.\n","url":"/themes/klise/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"KlisΓ© Jekyll Theme","description":"A minimalist Jekyll theme with seamless light and dark mode. Clean typography, fast performance, and a modern aesthetic β€” designed for personal sites and blogs that value simplicity.","key_features":["Dark Mode","Seamless Toggle","Minimal Design","Fast Performance"],"card_description":"Minimalist theme with seamless dark mode and clean typography.","category":"Blog","card_image":"/assets/images/themes/klise-card.webp","theme_screenshots":["/assets/images/themes/klise-screenshot.webp","/assets/images/themes/klise-screenshot-2.webp","/assets/images/themes/klise-screenshot-3.webp"],"demo_url":"https://klise.vercel.app/","github_url":"https://github.com/piharpi/jekyll-klise","author":"GitHub Community","github_author_name":"piharpi","github_author_url":"https://github.com/piharpi","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"0.4.1","license":"MIT","stars":300,"forks":200,"features":["Seamless light and dark mode toggle","Clean, modern minimal design","Fast performance (minimal CSS/JS)","Post categories and tags","Syntax highlighting","Responsive images","Reading time estimates","SEO optimised","GitHub Pages compatible","Vercel deploy ready"],"slug":"klise","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/lanyon.md","relative_path":"_themes/lanyon.md","excerpt":"<p>Lanyon is Hyde’s sibling from the Poole family β€” sharing the same clean foundation but hiding its sidebar until the reader needs it. A small toggle button reveals a smooth slide-out navigation drawer, keeping the reading area completely clean by default.</p>\n\n","previous":{"path":"_themes/klise.md","relative_path":"_themes/klise.md","excerpt":"<p>KlisΓ© (pronounced β€œcliché”) is the modern minimalist’s Jekyll theme. Its defining feature is a light/dark mode toggle that’s smooth, instant, and remembers your preference β€” implemented with care rather than as an afterthought.</p>\n\n","previous":{"path":"_themes/just-the-docs.md","relative_path":"_themes/just-the-docs.md","id":"/themes/just-the-docs","collection":"themes","url":"/themes/just-the-docs/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":true,"dark_mode":true,"responsive":true,"title":"Just the Docs Jekyll Theme","description":"The most popular Jekyll documentation theme. Clean sidebar navigation, full-text search, and excellent code block support.","key_features":["Dark Mode","Full-Text Search","Sidebar Nav","GitHub Pages"],"card_description":"Most popular Jekyll docs theme with sidebar navigation and search.","category":"Documentation","card_image":"/assets/images/themes/just-the-docs-card.webp","theme_screenshots":["/assets/images/themes/just-the-docs-screenshot.webp","/assets/images/themes/just-the-docs-screenshot-2.webp","/assets/images/themes/just-the-docs-screenshot-3.webp"],"demo_url":"https://just-the-docs.com/","github_url":"https://github.com/just-the-docs/just-the-docs","author":"GitHub Community","github_author_name":"Just the Docs","github_author_url":"https://github.com/just-the-docs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.8","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-05-01","added_at":"2026-01-08","popular":true,"trending":true,"bestseller":false,"version":"0.10.0","license":"MIT","stars":7800,"forks":3100,"features":["Full-text search (client-side)","Multi-level sidebar navigation","Light and dark colour schemes","Code syntax highlighting","Table of contents per page","Configurable navigation order","Customisable colour variables"],"slug":"just-the-docs","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/klise","collection":"themes","next":{"path":"_themes/lanyon.md","relative_path":"_themes/lanyon.md","id":"/themes/lanyon","collection":"themes","url":"/themes/lanyon/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Lanyon Jekyll Theme","description":"A Jekyll theme that hides its sidebar until you need it. Clean, spacious reading layout with a smooth slide-out navigation drawer.","key_features":["Slide-Out Sidebar","GitHub Pages","Clean Reading","Hidden Navigation"],"card_description":"Clean blog theme with a smooth slide-out navigation drawer.","category":"Blog","card_image":"/assets/images/themes/lanyon-card.webp","theme_screenshots":["/assets/images/themes/lanyon-screenshot.webp","/assets/images/themes/lanyon-screenshot-2.webp","/assets/images/themes/lanyon-screenshot-3.webp"],"demo_url":"https://lanyon.getpoole.com/","github_url":"https://github.com/poole/lanyon","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-02-05","popular":true,"trending":false,"bestseller":false,"version":"1.1.0","license":"MIT","stars":5700,"forks":2600,"features":["Hidden slide-out sidebar","Toggle button for navigation","Full-width reading area","Eight colour themes","Clean Poole base"],"slug":"lanyon","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"KlisΓ© (pronounced \"clichΓ©\") is the modern minimalist's Jekyll theme. Its defining feature is a light/dark mode toggle that's smooth, instant, and remembers your preference β€” implemented with care rather than as an afterthought.\n\nThe overall design is clean and contemporary: generous whitespace, careful typographic choices, and a colour palette that works equally well in both modes. It's the theme you'd reach for if you want something that looks like it was built this year, not five years ago.\n\n**Who is it for?** Developers and writers who want a modern minimal blog with a polished dark mode implementation and a design that feels current.\n","url":"/themes/klise/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"KlisΓ© Jekyll Theme","description":"A minimalist Jekyll theme with seamless light and dark mode. Clean typography, fast performance, and a modern aesthetic β€” designed for personal sites and blogs that value simplicity.","key_features":["Dark Mode","Seamless Toggle","Minimal Design","Fast Performance"],"card_description":"Minimalist theme with seamless dark mode and clean typography.","category":"Blog","card_image":"/assets/images/themes/klise-card.webp","theme_screenshots":["/assets/images/themes/klise-screenshot.webp","/assets/images/themes/klise-screenshot-2.webp","/assets/images/themes/klise-screenshot-3.webp"],"demo_url":"https://klise.vercel.app/","github_url":"https://github.com/piharpi/jekyll-klise","author":"GitHub Community","github_author_name":"piharpi","github_author_url":"https://github.com/piharpi","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"0.4.1","license":"MIT","stars":300,"forks":200,"features":["Seamless light and dark mode toggle","Clean, modern minimal design","Fast performance (minimal CSS/JS)","Post categories and tags","Syntax highlighting","Responsive images","Reading time estimates","SEO optimised","GitHub Pages compatible","Vercel deploy ready"],"slug":"klise","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/lanyon","collection":"themes","next":{"path":"_themes/leonids.md","relative_path":"_themes/leonids.md","excerpt":"<p>Leonids is a two-column Jekyll theme that gets the balance right between sidebar utility and content space. The fixed sidebar keeps your author bio, avatar, and social links persistently visible, while the main column gives posts the room they need to breathe.</p>\n\n","previous":{"path":"_themes/lanyon.md","relative_path":"_themes/lanyon.md","id":"/themes/lanyon","collection":"themes","url":"/themes/lanyon/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Lanyon Jekyll Theme","description":"A Jekyll theme that hides its sidebar until you need it. Clean, spacious reading layout with a smooth slide-out navigation drawer.","key_features":["Slide-Out Sidebar","GitHub Pages","Clean Reading","Hidden Navigation"],"card_description":"Clean blog theme with a smooth slide-out navigation drawer.","category":"Blog","card_image":"/assets/images/themes/lanyon-card.webp","theme_screenshots":["/assets/images/themes/lanyon-screenshot.webp","/assets/images/themes/lanyon-screenshot-2.webp","/assets/images/themes/lanyon-screenshot-3.webp"],"demo_url":"https://lanyon.getpoole.com/","github_url":"https://github.com/poole/lanyon","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-02-05","popular":true,"trending":false,"bestseller":false,"version":"1.1.0","license":"MIT","stars":5700,"forks":2600,"features":["Hidden slide-out sidebar","Toggle button for navigation","Full-width reading area","Eight colour themes","Clean Poole base"],"slug":"lanyon","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/leonids","collection":"themes","next":{"path":"_themes/livvic.md","relative_path":"_themes/livvic.md","id":"/themes/livvic","collection":"themes","url":"/themes/livvic/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Livvic Jekyll Theme","rating":4.6,"rating_count":24,"description":"A clean, creative, and unique Jekyll theme for agency and personal portfolio websites. Features a flat modern design, unique effects, Bootstrap 4, and Font Awesome β€” ready to customise and launch in hours.","card_description":"Clean creative portfolio theme for agencies and freelancers β€” minimal, unique, responsive.","price":49,"category":"Portfolio","card_image":"/assets/images/themes/livvic-card.webp","theme_screenshots":["/assets/images/themes/livvic-screenshot.webp","/assets/images/themes/livvic-screenshot-2.webp","/assets/images/themes/livvic-screenshot-3.webp"],"key_features":["Minimal Design","Portfolio Layouts","Agency Ready","Bootstrap 4"],"demo_url":"https://livvic-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/livvic-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-01","added_at":"2026-06-27","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Unique homepage version with eye-catching design","Flat, modern, and clean aesthetic throughout","Unique effects and interactive functionality","Built with Bootstrap 4 β€” fully responsive and cross-browser compatible","Pixel-perfect design on all screen sizes and devices","Font Awesome icon font included","Google Fonts integration","Valid W3C HTML5 and CSS3 markup","Easy to customise with well-structured, commented code","Extended documentation included","Suitable for personal portfolios, creative agencies, freelancers, and consultants"],"slug":"livvic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Leonids is a two-column Jekyll theme that gets the balance right between sidebar utility and content space. The fixed sidebar keeps your author bio, avatar, and social links persistently visible, while the main column gives posts the room they need to breathe.\n\nThe design is clean and timeless β€” no trendy flourishes that will date it, just solid typography and a layout that works equally well for technical writing, personal essays, or mixed-content blogs.\n\n**Who is it for?** Bloggers who want a classic two-column layout with a persistent author sidebar, without the complexity of heavier themes like Minimal Mistakes.\n","url":"/themes/leonids/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Leonids Jekyll Theme","description":"A simple and clean two-column Jekyll blog theme. Fixed sidebar with author bio and social links, clean post listing, and a timeless layout that puts content front and centre.","key_features":["Fixed Sidebar","Author Bio","Social Links","GitHub Pages"],"card_description":"Two-column blog with fixed sidebar and timeless content-first layout.","category":"Blog","card_image":"/assets/images/themes/leonids-card.webp","theme_screenshots":["/assets/images/themes/leonids-screenshot.webp","/assets/images/themes/leonids-screenshot-2.webp","/assets/images/themes/leonids-screenshot-3.webp"],"demo_url":"https://renyuanz.github.io/leonids/","github_url":"https://github.com/renyuanz/leonids","author":"GitHub Community","github_author_name":"renyuanz","github_author_url":"https://github.com/renyuanz","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1400,"forks":500,"features":["Fixed two-column layout with sidebar","Author bio and avatar in sidebar","Social media links","Category and tag support","Paginated post listing","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible"],"slug":"leonids","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Lanyon is Hyde's sibling from the Poole family β€” sharing the same clean foundation but hiding its sidebar until the reader needs it. A small toggle button reveals a smooth slide-out navigation drawer, keeping the reading area completely clean by default.\n\nThe result is one of the most spacious and focused reading experiences in the Jekyll theme ecosystem.\n\n**Who is it for?** Writers who want maximum reading space and a navigation drawer that stays out of the way.\n","url":"/themes/lanyon/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Lanyon Jekyll Theme","description":"A Jekyll theme that hides its sidebar until you need it. Clean, spacious reading layout with a smooth slide-out navigation drawer.","key_features":["Slide-Out Sidebar","GitHub Pages","Clean Reading","Hidden Navigation"],"card_description":"Clean blog theme with a smooth slide-out navigation drawer.","category":"Blog","card_image":"/assets/images/themes/lanyon-card.webp","theme_screenshots":["/assets/images/themes/lanyon-screenshot.webp","/assets/images/themes/lanyon-screenshot-2.webp","/assets/images/themes/lanyon-screenshot-3.webp"],"demo_url":"https://lanyon.getpoole.com/","github_url":"https://github.com/poole/lanyon","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-02-05","popular":true,"trending":false,"bestseller":false,"version":"1.1.0","license":"MIT","stars":5700,"forks":2600,"features":["Hidden slide-out sidebar","Toggle button for navigation","Full-width reading area","Eight colour themes","Clean Poole base"],"slug":"lanyon","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/leonids.md","relative_path":"_themes/leonids.md","excerpt":"<p>Leonids is a two-column Jekyll theme that gets the balance right between sidebar utility and content space. The fixed sidebar keeps your author bio, avatar, and social links persistently visible, while the main column gives posts the room they need to breathe.</p>\n\n","previous":{"path":"_themes/lanyon.md","relative_path":"_themes/lanyon.md","excerpt":"<p>Lanyon is Hyde’s sibling from the Poole family β€” sharing the same clean foundation but hiding its sidebar until the reader needs it. A small toggle button reveals a smooth slide-out navigation drawer, keeping the reading area completely clean by default.</p>\n\n","previous":{"path":"_themes/klise.md","relative_path":"_themes/klise.md","id":"/themes/klise","collection":"themes","url":"/themes/klise/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"KlisΓ© Jekyll Theme","description":"A minimalist Jekyll theme with seamless light and dark mode. Clean typography, fast performance, and a modern aesthetic β€” designed for personal sites and blogs that value simplicity.","key_features":["Dark Mode","Seamless Toggle","Minimal Design","Fast Performance"],"card_description":"Minimalist theme with seamless dark mode and clean typography.","category":"Blog","card_image":"/assets/images/themes/klise-card.webp","theme_screenshots":["/assets/images/themes/klise-screenshot.webp","/assets/images/themes/klise-screenshot-2.webp","/assets/images/themes/klise-screenshot-3.webp"],"demo_url":"https://klise.vercel.app/","github_url":"https://github.com/piharpi/jekyll-klise","author":"GitHub Community","github_author_name":"piharpi","github_author_url":"https://github.com/piharpi","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-06-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"0.4.1","license":"MIT","stars":300,"forks":200,"features":["Seamless light and dark mode toggle","Clean, modern minimal design","Fast performance (minimal CSS/JS)","Post categories and tags","Syntax highlighting","Responsive images","Reading time estimates","SEO optimised","GitHub Pages compatible","Vercel deploy ready"],"slug":"klise","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/lanyon","collection":"themes","next":{"path":"_themes/leonids.md","relative_path":"_themes/leonids.md","id":"/themes/leonids","collection":"themes","url":"/themes/leonids/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Leonids Jekyll Theme","description":"A simple and clean two-column Jekyll blog theme. Fixed sidebar with author bio and social links, clean post listing, and a timeless layout that puts content front and centre.","key_features":["Fixed Sidebar","Author Bio","Social Links","GitHub Pages"],"card_description":"Two-column blog with fixed sidebar and timeless content-first layout.","category":"Blog","card_image":"/assets/images/themes/leonids-card.webp","theme_screenshots":["/assets/images/themes/leonids-screenshot.webp","/assets/images/themes/leonids-screenshot-2.webp","/assets/images/themes/leonids-screenshot-3.webp"],"demo_url":"https://renyuanz.github.io/leonids/","github_url":"https://github.com/renyuanz/leonids","author":"GitHub Community","github_author_name":"renyuanz","github_author_url":"https://github.com/renyuanz","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1400,"forks":500,"features":["Fixed two-column layout with sidebar","Author bio and avatar in sidebar","Social media links","Category and tag support","Paginated post listing","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible"],"slug":"leonids","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Lanyon is Hyde's sibling from the Poole family β€” sharing the same clean foundation but hiding its sidebar until the reader needs it. A small toggle button reveals a smooth slide-out navigation drawer, keeping the reading area completely clean by default.\n\nThe result is one of the most spacious and focused reading experiences in the Jekyll theme ecosystem.\n\n**Who is it for?** Writers who want maximum reading space and a navigation drawer that stays out of the way.\n","url":"/themes/lanyon/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Lanyon Jekyll Theme","description":"A Jekyll theme that hides its sidebar until you need it. Clean, spacious reading layout with a smooth slide-out navigation drawer.","key_features":["Slide-Out Sidebar","GitHub Pages","Clean Reading","Hidden Navigation"],"card_description":"Clean blog theme with a smooth slide-out navigation drawer.","category":"Blog","card_image":"/assets/images/themes/lanyon-card.webp","theme_screenshots":["/assets/images/themes/lanyon-screenshot.webp","/assets/images/themes/lanyon-screenshot-2.webp","/assets/images/themes/lanyon-screenshot-3.webp"],"demo_url":"https://lanyon.getpoole.com/","github_url":"https://github.com/poole/lanyon","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-02-05","popular":true,"trending":false,"bestseller":false,"version":"1.1.0","license":"MIT","stars":5700,"forks":2600,"features":["Hidden slide-out sidebar","Toggle button for navigation","Full-width reading area","Eight colour themes","Clean Poole base"],"slug":"lanyon","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/leonids","collection":"themes","next":{"path":"_themes/livvic.md","relative_path":"_themes/livvic.md","excerpt":"<p>Livvic keeps things focused: one strong homepage layout, clean typography, and a set of unique interactive effects that make the design feel alive without being distracting. For designers and agencies who want their portfolio site to reflect the same restraint and craft they apply to client work, that focus is exactly the point.</p>\n\n","previous":{"path":"_themes/leonids.md","relative_path":"_themes/leonids.md","id":"/themes/leonids","collection":"themes","url":"/themes/leonids/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Leonids Jekyll Theme","description":"A simple and clean two-column Jekyll blog theme. Fixed sidebar with author bio and social links, clean post listing, and a timeless layout that puts content front and centre.","key_features":["Fixed Sidebar","Author Bio","Social Links","GitHub Pages"],"card_description":"Two-column blog with fixed sidebar and timeless content-first layout.","category":"Blog","card_image":"/assets/images/themes/leonids-card.webp","theme_screenshots":["/assets/images/themes/leonids-screenshot.webp","/assets/images/themes/leonids-screenshot-2.webp","/assets/images/themes/leonids-screenshot-3.webp"],"demo_url":"https://renyuanz.github.io/leonids/","github_url":"https://github.com/renyuanz/leonids","author":"GitHub Community","github_author_name":"renyuanz","github_author_url":"https://github.com/renyuanz","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1400,"forks":500,"features":["Fixed two-column layout with sidebar","Author bio and avatar in sidebar","Social media links","Category and tag support","Paginated post listing","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible"],"slug":"leonids","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/livvic","collection":"themes","next":{"path":"_themes/long-haul.md","relative_path":"_themes/long-haul.md","id":"/themes/long-haul","collection":"themes","url":"/themes/long-haul/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Long Haul Jekyll Theme","description":"A minimal, type-focused Jekyll theme designed for long-form writing. Understated design that keeps the reader's attention on the words.","key_features":["Long-Form Writing","Type Focused","Minimal Design","GitHub Pages"],"card_description":"Minimal, type-focused theme designed for long-form writing.","category":"Blog","card_image":"/assets/images/themes/long-haul-card.webp","theme_screenshots":["/assets/images/themes/long-haul-screenshot.webp","/assets/images/themes/long-haul-screenshot-2.webp","/assets/images/themes/long-haul-screenshot-3.webp"],"demo_url":"https://brianmaierjr.com/long-haul/","github_url":"https://github.com/brianmaierjr/long-haul","author":"GitHub Community","github_author_name":"brianmaierjr","github_author_url":"https://github.com/brianmaierjr","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-10","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":697,"forks":305,"features":["Typography-first design","Minimal navigation","Large readable font sizes","Clean post listing","Social links","RSS feed","Google Analytics","GitHub Pages compatible","No JavaScript dependencies","Lightweight and fast"],"slug":"long-haul","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Livvic keeps things focused: one strong homepage layout, clean typography, and a set of unique interactive effects that make the design feel alive without being distracting. For designers and agencies who want their portfolio site to reflect the same restraint and craft they apply to client work, that focus is exactly the point.\n\n### Design Philosophy\n\nThe flat, modern aesthetic means Livvic ages well β€” there are no trendy gradients or animation gimmicks that date the design after twelve months. What you get instead is clean grid structure, thoughtful whitespace, and the kind of pixel-perfect spacing that signals professional attention to detail to the clients visiting your portfolio.\n\n### Built to Customise\n\nThe Bootstrap 4 base and W3C-valid HTML5/CSS3 code mean any frontend developer can extend or restyle Livvic without fighting proprietary conventions. The well-commented codebase and extended documentation make onboarding quick whether you're the theme buyer or a developer handed the project.\n\n**Who is it for?** Freelance designers, creative agencies, consultants, and personal portfolio builders who want a distinctive, minimal presentation for their work β€” without the weight of a feature-heavy multipurpose theme.\n","url":"/themes/livvic/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Livvic Jekyll Theme","rating":4.6,"rating_count":24,"description":"A clean, creative, and unique Jekyll theme for agency and personal portfolio websites. Features a flat modern design, unique effects, Bootstrap 4, and Font Awesome β€” ready to customise and launch in hours.","card_description":"Clean creative portfolio theme for agencies and freelancers β€” minimal, unique, responsive.","price":49,"category":"Portfolio","card_image":"/assets/images/themes/livvic-card.webp","theme_screenshots":["/assets/images/themes/livvic-screenshot.webp","/assets/images/themes/livvic-screenshot-2.webp","/assets/images/themes/livvic-screenshot-3.webp"],"key_features":["Minimal Design","Portfolio Layouts","Agency Ready","Bootstrap 4"],"demo_url":"https://livvic-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/livvic-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-01","added_at":"2026-06-27","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Unique homepage version with eye-catching design","Flat, modern, and clean aesthetic throughout","Unique effects and interactive functionality","Built with Bootstrap 4 β€” fully responsive and cross-browser compatible","Pixel-perfect design on all screen sizes and devices","Font Awesome icon font included","Google Fonts integration","Valid W3C HTML5 and CSS3 markup","Easy to customise with well-structured, commented code","Extended documentation included","Suitable for personal portfolios, creative agencies, freelancers, and consultants"],"slug":"livvic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Leonids is a two-column Jekyll theme that gets the balance right between sidebar utility and content space. The fixed sidebar keeps your author bio, avatar, and social links persistently visible, while the main column gives posts the room they need to breathe.\n\nThe design is clean and timeless β€” no trendy flourishes that will date it, just solid typography and a layout that works equally well for technical writing, personal essays, or mixed-content blogs.\n\n**Who is it for?** Bloggers who want a classic two-column layout with a persistent author sidebar, without the complexity of heavier themes like Minimal Mistakes.\n","url":"/themes/leonids/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Leonids Jekyll Theme","description":"A simple and clean two-column Jekyll blog theme. Fixed sidebar with author bio and social links, clean post listing, and a timeless layout that puts content front and centre.","key_features":["Fixed Sidebar","Author Bio","Social Links","GitHub Pages"],"card_description":"Two-column blog with fixed sidebar and timeless content-first layout.","category":"Blog","card_image":"/assets/images/themes/leonids-card.webp","theme_screenshots":["/assets/images/themes/leonids-screenshot.webp","/assets/images/themes/leonids-screenshot-2.webp","/assets/images/themes/leonids-screenshot-3.webp"],"demo_url":"https://renyuanz.github.io/leonids/","github_url":"https://github.com/renyuanz/leonids","author":"GitHub Community","github_author_name":"renyuanz","github_author_url":"https://github.com/renyuanz","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1400,"forks":500,"features":["Fixed two-column layout with sidebar","Author bio and avatar in sidebar","Social media links","Category and tag support","Paginated post listing","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible"],"slug":"leonids","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/livvic.md","relative_path":"_themes/livvic.md","excerpt":"<p>Livvic keeps things focused: one strong homepage layout, clean typography, and a set of unique interactive effects that make the design feel alive without being distracting. For designers and agencies who want their portfolio site to reflect the same restraint and craft they apply to client work, that focus is exactly the point.</p>\n\n","previous":{"path":"_themes/leonids.md","relative_path":"_themes/leonids.md","excerpt":"<p>Leonids is a two-column Jekyll theme that gets the balance right between sidebar utility and content space. The fixed sidebar keeps your author bio, avatar, and social links persistently visible, while the main column gives posts the room they need to breathe.</p>\n\n","previous":{"path":"_themes/lanyon.md","relative_path":"_themes/lanyon.md","id":"/themes/lanyon","collection":"themes","url":"/themes/lanyon/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Lanyon Jekyll Theme","description":"A Jekyll theme that hides its sidebar until you need it. Clean, spacious reading layout with a smooth slide-out navigation drawer.","key_features":["Slide-Out Sidebar","GitHub Pages","Clean Reading","Hidden Navigation"],"card_description":"Clean blog theme with a smooth slide-out navigation drawer.","category":"Blog","card_image":"/assets/images/themes/lanyon-card.webp","theme_screenshots":["/assets/images/themes/lanyon-screenshot.webp","/assets/images/themes/lanyon-screenshot-2.webp","/assets/images/themes/lanyon-screenshot-3.webp"],"demo_url":"https://lanyon.getpoole.com/","github_url":"https://github.com/poole/lanyon","author":"GitHub Community","github_author_name":"Mark Otto","github_author_url":"https://github.com/mdo","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-gist","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-02-05","popular":true,"trending":false,"bestseller":false,"version":"1.1.0","license":"MIT","stars":5700,"forks":2600,"features":["Hidden slide-out sidebar","Toggle button for navigation","Full-width reading area","Eight colour themes","Clean Poole base"],"slug":"lanyon","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/leonids","collection":"themes","next":{"path":"_themes/livvic.md","relative_path":"_themes/livvic.md","id":"/themes/livvic","collection":"themes","url":"/themes/livvic/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Livvic Jekyll Theme","rating":4.6,"rating_count":24,"description":"A clean, creative, and unique Jekyll theme for agency and personal portfolio websites. Features a flat modern design, unique effects, Bootstrap 4, and Font Awesome β€” ready to customise and launch in hours.","card_description":"Clean creative portfolio theme for agencies and freelancers β€” minimal, unique, responsive.","price":49,"category":"Portfolio","card_image":"/assets/images/themes/livvic-card.webp","theme_screenshots":["/assets/images/themes/livvic-screenshot.webp","/assets/images/themes/livvic-screenshot-2.webp","/assets/images/themes/livvic-screenshot-3.webp"],"key_features":["Minimal Design","Portfolio Layouts","Agency Ready","Bootstrap 4"],"demo_url":"https://livvic-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/livvic-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-01","added_at":"2026-06-27","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Unique homepage version with eye-catching design","Flat, modern, and clean aesthetic throughout","Unique effects and interactive functionality","Built with Bootstrap 4 β€” fully responsive and cross-browser compatible","Pixel-perfect design on all screen sizes and devices","Font Awesome icon font included","Google Fonts integration","Valid W3C HTML5 and CSS3 markup","Easy to customise with well-structured, commented code","Extended documentation included","Suitable for personal portfolios, creative agencies, freelancers, and consultants"],"slug":"livvic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Leonids is a two-column Jekyll theme that gets the balance right between sidebar utility and content space. The fixed sidebar keeps your author bio, avatar, and social links persistently visible, while the main column gives posts the room they need to breathe.\n\nThe design is clean and timeless β€” no trendy flourishes that will date it, just solid typography and a layout that works equally well for technical writing, personal essays, or mixed-content blogs.\n\n**Who is it for?** Bloggers who want a classic two-column layout with a persistent author sidebar, without the complexity of heavier themes like Minimal Mistakes.\n","url":"/themes/leonids/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Leonids Jekyll Theme","description":"A simple and clean two-column Jekyll blog theme. Fixed sidebar with author bio and social links, clean post listing, and a timeless layout that puts content front and centre.","key_features":["Fixed Sidebar","Author Bio","Social Links","GitHub Pages"],"card_description":"Two-column blog with fixed sidebar and timeless content-first layout.","category":"Blog","card_image":"/assets/images/themes/leonids-card.webp","theme_screenshots":["/assets/images/themes/leonids-screenshot.webp","/assets/images/themes/leonids-screenshot-2.webp","/assets/images/themes/leonids-screenshot-3.webp"],"demo_url":"https://renyuanz.github.io/leonids/","github_url":"https://github.com/renyuanz/leonids","author":"GitHub Community","github_author_name":"renyuanz","github_author_url":"https://github.com/renyuanz","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1400,"forks":500,"features":["Fixed two-column layout with sidebar","Author bio and avatar in sidebar","Social media links","Category and tag support","Paginated post listing","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible"],"slug":"leonids","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/livvic","collection":"themes","next":{"path":"_themes/long-haul.md","relative_path":"_themes/long-haul.md","excerpt":"<p>Long Haul is built for writers who take their craft seriously. Every design decision favours the text β€” generous line height, carefully chosen typefaces, and a layout that disappears behind the words.</p>\n\n","previous":{"path":"_themes/livvic.md","relative_path":"_themes/livvic.md","id":"/themes/livvic","collection":"themes","url":"/themes/livvic/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Livvic Jekyll Theme","rating":4.6,"rating_count":24,"description":"A clean, creative, and unique Jekyll theme for agency and personal portfolio websites. Features a flat modern design, unique effects, Bootstrap 4, and Font Awesome β€” ready to customise and launch in hours.","card_description":"Clean creative portfolio theme for agencies and freelancers β€” minimal, unique, responsive.","price":49,"category":"Portfolio","card_image":"/assets/images/themes/livvic-card.webp","theme_screenshots":["/assets/images/themes/livvic-screenshot.webp","/assets/images/themes/livvic-screenshot-2.webp","/assets/images/themes/livvic-screenshot-3.webp"],"key_features":["Minimal Design","Portfolio Layouts","Agency Ready","Bootstrap 4"],"demo_url":"https://livvic-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/livvic-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-01","added_at":"2026-06-27","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Unique homepage version with eye-catching design","Flat, modern, and clean aesthetic throughout","Unique effects and interactive functionality","Built with Bootstrap 4 β€” fully responsive and cross-browser compatible","Pixel-perfect design on all screen sizes and devices","Font Awesome icon font included","Google Fonts integration","Valid W3C HTML5 and CSS3 markup","Easy to customise with well-structured, commented code","Extended documentation included","Suitable for personal portfolios, creative agencies, freelancers, and consultants"],"slug":"livvic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/long-haul","collection":"themes","next":{"path":"_themes/massively.md","relative_path":"_themes/massively.md","id":"/themes/massively","collection":"themes","url":"/themes/massively/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Massively Jekyll Theme","description":"A bold, image-driven Jekyll blog theme ported from HTML5 UP. Full-screen background image on the homepage, large featured post images, and a striking visual identity unlike any other Jekyll theme.","key_features":["Full-Screen Images","Bold Design","GitHub Pages","HTML5 UP Port"],"card_description":"Bold, image-driven blog with full-screen homepage background.","category":"Blog","card_image":"/assets/images/themes/massively-card.webp","theme_screenshots":["/assets/images/themes/massively-screenshot.webp","/assets/images/themes/massively-screenshot-2.webp","/assets/images/themes/massively-screenshot-3.webp"],"demo_url":"https://jekyllup.github.io/jekyll-theme-massively/","github_url":"https://github.com/jekyllup/jekyll-theme-massively","author":"GitHub Community","github_author_name":"jekyllup","github_author_url":"https://github.com/jekyllup","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC BY 3.0","stars":300,"forks":350,"features":["Full-screen background image on homepage","Large featured images per post","Bold typographic headings","Smooth scroll effects","Article-oriented post grid layout","Social media links","Disqus comments","Google Analytics","Responsive design","GitHub Pages compatible"],"slug":"massively","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Long Haul is built for writers who take their craft seriously. Every design decision favours the text β€” generous line height, carefully chosen typefaces, and a layout that disappears behind the words.\n\nNavigation is minimal, distractions are absent, and pages load almost instantly with no JavaScript dependencies.\n\n**Who is it for?** Serious writers and essayists who want a distraction-free reading experience that puts content first.\n","url":"/themes/long-haul/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Long Haul Jekyll Theme","description":"A minimal, type-focused Jekyll theme designed for long-form writing. Understated design that keeps the reader's attention on the words.","key_features":["Long-Form Writing","Type Focused","Minimal Design","GitHub Pages"],"card_description":"Minimal, type-focused theme designed for long-form writing.","category":"Blog","card_image":"/assets/images/themes/long-haul-card.webp","theme_screenshots":["/assets/images/themes/long-haul-screenshot.webp","/assets/images/themes/long-haul-screenshot-2.webp","/assets/images/themes/long-haul-screenshot-3.webp"],"demo_url":"https://brianmaierjr.com/long-haul/","github_url":"https://github.com/brianmaierjr/long-haul","author":"GitHub Community","github_author_name":"brianmaierjr","github_author_url":"https://github.com/brianmaierjr","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-10","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":697,"forks":305,"features":["Typography-first design","Minimal navigation","Large readable font sizes","Clean post listing","Social links","RSS feed","Google Analytics","GitHub Pages compatible","No JavaScript dependencies","Lightweight and fast"],"slug":"long-haul","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Livvic keeps things focused: one strong homepage layout, clean typography, and a set of unique interactive effects that make the design feel alive without being distracting. For designers and agencies who want their portfolio site to reflect the same restraint and craft they apply to client work, that focus is exactly the point.\n\n### Design Philosophy\n\nThe flat, modern aesthetic means Livvic ages well β€” there are no trendy gradients or animation gimmicks that date the design after twelve months. What you get instead is clean grid structure, thoughtful whitespace, and the kind of pixel-perfect spacing that signals professional attention to detail to the clients visiting your portfolio.\n\n### Built to Customise\n\nThe Bootstrap 4 base and W3C-valid HTML5/CSS3 code mean any frontend developer can extend or restyle Livvic without fighting proprietary conventions. The well-commented codebase and extended documentation make onboarding quick whether you're the theme buyer or a developer handed the project.\n\n**Who is it for?** Freelance designers, creative agencies, consultants, and personal portfolio builders who want a distinctive, minimal presentation for their work β€” without the weight of a feature-heavy multipurpose theme.\n","url":"/themes/livvic/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Livvic Jekyll Theme","rating":4.6,"rating_count":24,"description":"A clean, creative, and unique Jekyll theme for agency and personal portfolio websites. Features a flat modern design, unique effects, Bootstrap 4, and Font Awesome β€” ready to customise and launch in hours.","card_description":"Clean creative portfolio theme for agencies and freelancers β€” minimal, unique, responsive.","price":49,"category":"Portfolio","card_image":"/assets/images/themes/livvic-card.webp","theme_screenshots":["/assets/images/themes/livvic-screenshot.webp","/assets/images/themes/livvic-screenshot-2.webp","/assets/images/themes/livvic-screenshot-3.webp"],"key_features":["Minimal Design","Portfolio Layouts","Agency Ready","Bootstrap 4"],"demo_url":"https://livvic-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/livvic-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-01","added_at":"2026-06-27","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Unique homepage version with eye-catching design","Flat, modern, and clean aesthetic throughout","Unique effects and interactive functionality","Built with Bootstrap 4 β€” fully responsive and cross-browser compatible","Pixel-perfect design on all screen sizes and devices","Font Awesome icon font included","Google Fonts integration","Valid W3C HTML5 and CSS3 markup","Easy to customise with well-structured, commented code","Extended documentation included","Suitable for personal portfolios, creative agencies, freelancers, and consultants"],"slug":"livvic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/long-haul.md","relative_path":"_themes/long-haul.md","excerpt":"<p>Long Haul is built for writers who take their craft seriously. Every design decision favours the text β€” generous line height, carefully chosen typefaces, and a layout that disappears behind the words.</p>\n\n","previous":{"path":"_themes/livvic.md","relative_path":"_themes/livvic.md","excerpt":"<p>Livvic keeps things focused: one strong homepage layout, clean typography, and a set of unique interactive effects that make the design feel alive without being distracting. For designers and agencies who want their portfolio site to reflect the same restraint and craft they apply to client work, that focus is exactly the point.</p>\n\n","previous":{"path":"_themes/leonids.md","relative_path":"_themes/leonids.md","id":"/themes/leonids","collection":"themes","url":"/themes/leonids/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Leonids Jekyll Theme","description":"A simple and clean two-column Jekyll blog theme. Fixed sidebar with author bio and social links, clean post listing, and a timeless layout that puts content front and centre.","key_features":["Fixed Sidebar","Author Bio","Social Links","GitHub Pages"],"card_description":"Two-column blog with fixed sidebar and timeless content-first layout.","category":"Blog","card_image":"/assets/images/themes/leonids-card.webp","theme_screenshots":["/assets/images/themes/leonids-screenshot.webp","/assets/images/themes/leonids-screenshot-2.webp","/assets/images/themes/leonids-screenshot-3.webp"],"demo_url":"https://renyuanz.github.io/leonids/","github_url":"https://github.com/renyuanz/leonids","author":"GitHub Community","github_author_name":"renyuanz","github_author_url":"https://github.com/renyuanz","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":1400,"forks":500,"features":["Fixed two-column layout with sidebar","Author bio and avatar in sidebar","Social media links","Category and tag support","Paginated post listing","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","GitHub Pages compatible"],"slug":"leonids","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/livvic","collection":"themes","next":{"path":"_themes/long-haul.md","relative_path":"_themes/long-haul.md","id":"/themes/long-haul","collection":"themes","url":"/themes/long-haul/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Long Haul Jekyll Theme","description":"A minimal, type-focused Jekyll theme designed for long-form writing. Understated design that keeps the reader's attention on the words.","key_features":["Long-Form Writing","Type Focused","Minimal Design","GitHub Pages"],"card_description":"Minimal, type-focused theme designed for long-form writing.","category":"Blog","card_image":"/assets/images/themes/long-haul-card.webp","theme_screenshots":["/assets/images/themes/long-haul-screenshot.webp","/assets/images/themes/long-haul-screenshot-2.webp","/assets/images/themes/long-haul-screenshot-3.webp"],"demo_url":"https://brianmaierjr.com/long-haul/","github_url":"https://github.com/brianmaierjr/long-haul","author":"GitHub Community","github_author_name":"brianmaierjr","github_author_url":"https://github.com/brianmaierjr","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-10","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":697,"forks":305,"features":["Typography-first design","Minimal navigation","Large readable font sizes","Clean post listing","Social links","RSS feed","Google Analytics","GitHub Pages compatible","No JavaScript dependencies","Lightweight and fast"],"slug":"long-haul","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Livvic keeps things focused: one strong homepage layout, clean typography, and a set of unique interactive effects that make the design feel alive without being distracting. For designers and agencies who want their portfolio site to reflect the same restraint and craft they apply to client work, that focus is exactly the point.\n\n### Design Philosophy\n\nThe flat, modern aesthetic means Livvic ages well β€” there are no trendy gradients or animation gimmicks that date the design after twelve months. What you get instead is clean grid structure, thoughtful whitespace, and the kind of pixel-perfect spacing that signals professional attention to detail to the clients visiting your portfolio.\n\n### Built to Customise\n\nThe Bootstrap 4 base and W3C-valid HTML5/CSS3 code mean any frontend developer can extend or restyle Livvic without fighting proprietary conventions. The well-commented codebase and extended documentation make onboarding quick whether you're the theme buyer or a developer handed the project.\n\n**Who is it for?** Freelance designers, creative agencies, consultants, and personal portfolio builders who want a distinctive, minimal presentation for their work β€” without the weight of a feature-heavy multipurpose theme.\n","url":"/themes/livvic/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Livvic Jekyll Theme","rating":4.6,"rating_count":24,"description":"A clean, creative, and unique Jekyll theme for agency and personal portfolio websites. Features a flat modern design, unique effects, Bootstrap 4, and Font Awesome β€” ready to customise and launch in hours.","card_description":"Clean creative portfolio theme for agencies and freelancers β€” minimal, unique, responsive.","price":49,"category":"Portfolio","card_image":"/assets/images/themes/livvic-card.webp","theme_screenshots":["/assets/images/themes/livvic-screenshot.webp","/assets/images/themes/livvic-screenshot-2.webp","/assets/images/themes/livvic-screenshot-3.webp"],"key_features":["Minimal Design","Portfolio Layouts","Agency Ready","Bootstrap 4"],"demo_url":"https://livvic-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/livvic-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-01","added_at":"2026-06-27","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Unique homepage version with eye-catching design","Flat, modern, and clean aesthetic throughout","Unique effects and interactive functionality","Built with Bootstrap 4 β€” fully responsive and cross-browser compatible","Pixel-perfect design on all screen sizes and devices","Font Awesome icon font included","Google Fonts integration","Valid W3C HTML5 and CSS3 markup","Easy to customise with well-structured, commented code","Extended documentation included","Suitable for personal portfolios, creative agencies, freelancers, and consultants"],"slug":"livvic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/long-haul","collection":"themes","next":{"path":"_themes/massively.md","relative_path":"_themes/massively.md","excerpt":"<p>Massively is unlike anything else in the Jekyll ecosystem. Ported from HTML5 UP’s popular Massively template, it opens with a dramatic full-screen background image and bold typography that immediately signals a strong visual identity. The post listing uses large featured images that make even text-heavy content feel visual and inviting.</p>\n\n","previous":{"path":"_themes/long-haul.md","relative_path":"_themes/long-haul.md","id":"/themes/long-haul","collection":"themes","url":"/themes/long-haul/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Long Haul Jekyll Theme","description":"A minimal, type-focused Jekyll theme designed for long-form writing. Understated design that keeps the reader's attention on the words.","key_features":["Long-Form Writing","Type Focused","Minimal Design","GitHub Pages"],"card_description":"Minimal, type-focused theme designed for long-form writing.","category":"Blog","card_image":"/assets/images/themes/long-haul-card.webp","theme_screenshots":["/assets/images/themes/long-haul-screenshot.webp","/assets/images/themes/long-haul-screenshot-2.webp","/assets/images/themes/long-haul-screenshot-3.webp"],"demo_url":"https://brianmaierjr.com/long-haul/","github_url":"https://github.com/brianmaierjr/long-haul","author":"GitHub Community","github_author_name":"brianmaierjr","github_author_url":"https://github.com/brianmaierjr","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-10","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":697,"forks":305,"features":["Typography-first design","Minimal navigation","Large readable font sizes","Clean post listing","Social links","RSS feed","Google Analytics","GitHub Pages compatible","No JavaScript dependencies","Lightweight and fast"],"slug":"long-haul","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/massively","collection":"themes","next":{"path":"_themes/mediator.md","relative_path":"_themes/mediator.md","id":"/themes/mediator","collection":"themes","url":"/themes/mediator/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediator Jekyll Theme","description":"A medium-inspired Jekyll blog theme with large featured images, clean typography, and a focus on long-form reading.","key_features":["Medium-Inspired","Featured Images","Clean Typography","GitHub Pages"],"card_description":"Medium-inspired blog with large featured images and clean typography.","category":"Blog","card_image":"/assets/images/themes/mediator-card.webp","theme_screenshots":["/assets/images/themes/mediator-screenshot.webp","/assets/images/themes/mediator-screenshot-2.webp","/assets/images/themes/mediator-screenshot-3.webp"],"demo_url":"https://blog.base68.com/","github_url":"https://github.com/dirkfabisch/mediator","author":"GitHub Community","github_author_name":"dirkfabisch","github_author_url":"https://github.com/dirkfabisch","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2024-05-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.2.0","license":"MIT","stars":810,"forks":497,"features":["Medium-inspired layout","Full-width featured images","Clean reading typography","Author bio section","Disqus comments","Social share buttons","Google Analytics","Tag archive pages","RSS feed","Responsive design"],"slug":"mediator","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Massively is unlike anything else in the Jekyll ecosystem. Ported from HTML5 UP's popular Massively template, it opens with a dramatic full-screen background image and bold typography that immediately signals a strong visual identity. The post listing uses large featured images that make even text-heavy content feel visual and inviting.\n\nIf most Jekyll themes are quiet and minimal, Massively is loud β€” in the best possible way. It's the choice when you want your site to make an impression the moment someone arrives.\n\n**Who is it for?** Bloggers, photographers, journalists, and creatives who want a visually dramatic, image-led site that stands out from the typical minimal developer blog.\n","url":"/themes/massively/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Massively Jekyll Theme","description":"A bold, image-driven Jekyll blog theme ported from HTML5 UP. Full-screen background image on the homepage, large featured post images, and a striking visual identity unlike any other Jekyll theme.","key_features":["Full-Screen Images","Bold Design","GitHub Pages","HTML5 UP Port"],"card_description":"Bold, image-driven blog with full-screen homepage background.","category":"Blog","card_image":"/assets/images/themes/massively-card.webp","theme_screenshots":["/assets/images/themes/massively-screenshot.webp","/assets/images/themes/massively-screenshot-2.webp","/assets/images/themes/massively-screenshot-3.webp"],"demo_url":"https://jekyllup.github.io/jekyll-theme-massively/","github_url":"https://github.com/jekyllup/jekyll-theme-massively","author":"GitHub Community","github_author_name":"jekyllup","github_author_url":"https://github.com/jekyllup","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC BY 3.0","stars":300,"forks":350,"features":["Full-screen background image on homepage","Large featured images per post","Bold typographic headings","Smooth scroll effects","Article-oriented post grid layout","Social media links","Disqus comments","Google Analytics","Responsive design","GitHub Pages compatible"],"slug":"massively","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Long Haul is built for writers who take their craft seriously. Every design decision favours the text β€” generous line height, carefully chosen typefaces, and a layout that disappears behind the words.\n\nNavigation is minimal, distractions are absent, and pages load almost instantly with no JavaScript dependencies.\n\n**Who is it for?** Serious writers and essayists who want a distraction-free reading experience that puts content first.\n","url":"/themes/long-haul/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Long Haul Jekyll Theme","description":"A minimal, type-focused Jekyll theme designed for long-form writing. Understated design that keeps the reader's attention on the words.","key_features":["Long-Form Writing","Type Focused","Minimal Design","GitHub Pages"],"card_description":"Minimal, type-focused theme designed for long-form writing.","category":"Blog","card_image":"/assets/images/themes/long-haul-card.webp","theme_screenshots":["/assets/images/themes/long-haul-screenshot.webp","/assets/images/themes/long-haul-screenshot-2.webp","/assets/images/themes/long-haul-screenshot-3.webp"],"demo_url":"https://brianmaierjr.com/long-haul/","github_url":"https://github.com/brianmaierjr/long-haul","author":"GitHub Community","github_author_name":"brianmaierjr","github_author_url":"https://github.com/brianmaierjr","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-10","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":697,"forks":305,"features":["Typography-first design","Minimal navigation","Large readable font sizes","Clean post listing","Social links","RSS feed","Google Analytics","GitHub Pages compatible","No JavaScript dependencies","Lightweight and fast"],"slug":"long-haul","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/massively.md","relative_path":"_themes/massively.md","excerpt":"<p>Massively is unlike anything else in the Jekyll ecosystem. Ported from HTML5 UP’s popular Massively template, it opens with a dramatic full-screen background image and bold typography that immediately signals a strong visual identity. The post listing uses large featured images that make even text-heavy content feel visual and inviting.</p>\n\n","previous":{"path":"_themes/long-haul.md","relative_path":"_themes/long-haul.md","excerpt":"<p>Long Haul is built for writers who take their craft seriously. Every design decision favours the text β€” generous line height, carefully chosen typefaces, and a layout that disappears behind the words.</p>\n\n","previous":{"path":"_themes/livvic.md","relative_path":"_themes/livvic.md","id":"/themes/livvic","collection":"themes","url":"/themes/livvic/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":false,"responsive":true,"title":"Livvic Jekyll Theme","rating":4.6,"rating_count":24,"description":"A clean, creative, and unique Jekyll theme for agency and personal portfolio websites. Features a flat modern design, unique effects, Bootstrap 4, and Font Awesome β€” ready to customise and launch in hours.","card_description":"Clean creative portfolio theme for agencies and freelancers β€” minimal, unique, responsive.","price":49,"category":"Portfolio","card_image":"/assets/images/themes/livvic-card.webp","theme_screenshots":["/assets/images/themes/livvic-screenshot.webp","/assets/images/themes/livvic-screenshot-2.webp","/assets/images/themes/livvic-screenshot-3.webp"],"key_features":["Minimal Design","Portfolio Layouts","Agency Ready","Bootstrap 4"],"demo_url":"https://livvic-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/livvic-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-01-01","added_at":"2026-06-27","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Unique homepage version with eye-catching design","Flat, modern, and clean aesthetic throughout","Unique effects and interactive functionality","Built with Bootstrap 4 β€” fully responsive and cross-browser compatible","Pixel-perfect design on all screen sizes and devices","Font Awesome icon font included","Google Fonts integration","Valid W3C HTML5 and CSS3 markup","Easy to customise with well-structured, commented code","Extended documentation included","Suitable for personal portfolios, creative agencies, freelancers, and consultants"],"slug":"livvic","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/long-haul","collection":"themes","next":{"path":"_themes/massively.md","relative_path":"_themes/massively.md","id":"/themes/massively","collection":"themes","url":"/themes/massively/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Massively Jekyll Theme","description":"A bold, image-driven Jekyll blog theme ported from HTML5 UP. Full-screen background image on the homepage, large featured post images, and a striking visual identity unlike any other Jekyll theme.","key_features":["Full-Screen Images","Bold Design","GitHub Pages","HTML5 UP Port"],"card_description":"Bold, image-driven blog with full-screen homepage background.","category":"Blog","card_image":"/assets/images/themes/massively-card.webp","theme_screenshots":["/assets/images/themes/massively-screenshot.webp","/assets/images/themes/massively-screenshot-2.webp","/assets/images/themes/massively-screenshot-3.webp"],"demo_url":"https://jekyllup.github.io/jekyll-theme-massively/","github_url":"https://github.com/jekyllup/jekyll-theme-massively","author":"GitHub Community","github_author_name":"jekyllup","github_author_url":"https://github.com/jekyllup","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC BY 3.0","stars":300,"forks":350,"features":["Full-screen background image on homepage","Large featured images per post","Bold typographic headings","Smooth scroll effects","Article-oriented post grid layout","Social media links","Disqus comments","Google Analytics","Responsive design","GitHub Pages compatible"],"slug":"massively","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Long Haul is built for writers who take their craft seriously. Every design decision favours the text β€” generous line height, carefully chosen typefaces, and a layout that disappears behind the words.\n\nNavigation is minimal, distractions are absent, and pages load almost instantly with no JavaScript dependencies.\n\n**Who is it for?** Serious writers and essayists who want a distraction-free reading experience that puts content first.\n","url":"/themes/long-haul/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Long Haul Jekyll Theme","description":"A minimal, type-focused Jekyll theme designed for long-form writing. Understated design that keeps the reader's attention on the words.","key_features":["Long-Form Writing","Type Focused","Minimal Design","GitHub Pages"],"card_description":"Minimal, type-focused theme designed for long-form writing.","category":"Blog","card_image":"/assets/images/themes/long-haul-card.webp","theme_screenshots":["/assets/images/themes/long-haul-screenshot.webp","/assets/images/themes/long-haul-screenshot-2.webp","/assets/images/themes/long-haul-screenshot-3.webp"],"demo_url":"https://brianmaierjr.com/long-haul/","github_url":"https://github.com/brianmaierjr/long-haul","author":"GitHub Community","github_author_name":"brianmaierjr","github_author_url":"https://github.com/brianmaierjr","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-10","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":697,"forks":305,"features":["Typography-first design","Minimal navigation","Large readable font sizes","Clean post listing","Social links","RSS feed","Google Analytics","GitHub Pages compatible","No JavaScript dependencies","Lightweight and fast"],"slug":"long-haul","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/massively","collection":"themes","next":{"path":"_themes/mediator.md","relative_path":"_themes/mediator.md","excerpt":"<p>Mediator is a Jekyll theme inspired by Medium’s clean reading experience. Large full-width featured images set the tone for each post, while generous line spacing and careful typography keep readers comfortable through long articles.</p>\n\n","previous":{"path":"_themes/massively.md","relative_path":"_themes/massively.md","id":"/themes/massively","collection":"themes","url":"/themes/massively/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Massively Jekyll Theme","description":"A bold, image-driven Jekyll blog theme ported from HTML5 UP. Full-screen background image on the homepage, large featured post images, and a striking visual identity unlike any other Jekyll theme.","key_features":["Full-Screen Images","Bold Design","GitHub Pages","HTML5 UP Port"],"card_description":"Bold, image-driven blog with full-screen homepage background.","category":"Blog","card_image":"/assets/images/themes/massively-card.webp","theme_screenshots":["/assets/images/themes/massively-screenshot.webp","/assets/images/themes/massively-screenshot-2.webp","/assets/images/themes/massively-screenshot-3.webp"],"demo_url":"https://jekyllup.github.io/jekyll-theme-massively/","github_url":"https://github.com/jekyllup/jekyll-theme-massively","author":"GitHub Community","github_author_name":"jekyllup","github_author_url":"https://github.com/jekyllup","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC BY 3.0","stars":300,"forks":350,"features":["Full-screen background image on homepage","Large featured images per post","Bold typographic headings","Smooth scroll effects","Article-oriented post grid layout","Social media links","Disqus comments","Google Analytics","Responsive design","GitHub Pages compatible"],"slug":"massively","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/mediator","collection":"themes","next":{"path":"_themes/mediumish.md","relative_path":"_themes/mediumish.md","id":"/themes/mediumish","collection":"themes","url":"/themes/mediumish/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediumish Jekyll Theme","description":"A Medium-inspired blog theme with card-based post listings, author pages, and a clean reading layout. One of the most popular Jekyll blog starters.","key_features":["Card Layouts","Author Pages","GitHub Pages","Medium-Inspired"],"card_description":"Medium-inspired blog with card post listings and author pages.","category":"Blog","card_image":"/assets/images/themes/mediumish-card.webp","theme_screenshots":["/assets/images/themes/mediumish-screenshot.webp","/assets/images/themes/mediumish-screenshot-2.webp","/assets/images/themes/mediumish-screenshot-3.webp"],"demo_url":"https://wowthemesnet.github.io/mediumish-theme-jekyll/","github_url":"https://github.com/wowthemesnet/mediumish-theme-jekyll","author":"GitHub Community","github_author_name":"WowThemes","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap","jekyll-paginate"],"updated_at":"2023-08-01","added_at":"2026-03-10","popular":true,"trending":false,"bestseller":false,"version":"1.0.6","license":"MIT","stars":1900,"forks":1700,"features":["Card-based post grid","Featured post hero","Author profile pages","Disqus comments","MailChimp integration","Category/tag pages"],"slug":"mediumish","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Mediator is a Jekyll theme inspired by Medium's clean reading experience. Large full-width featured images set the tone for each post, while generous line spacing and careful typography keep readers comfortable through long articles.\n\nThe author bio section at the bottom of each post adds a personal touch β€” great for building a connection with your readership.\n\n**Who is it for?** Writers publishing long-form content who want a reading-first experience similar to Medium.\n","url":"/themes/mediator/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediator Jekyll Theme","description":"A medium-inspired Jekyll blog theme with large featured images, clean typography, and a focus on long-form reading.","key_features":["Medium-Inspired","Featured Images","Clean Typography","GitHub Pages"],"card_description":"Medium-inspired blog with large featured images and clean typography.","category":"Blog","card_image":"/assets/images/themes/mediator-card.webp","theme_screenshots":["/assets/images/themes/mediator-screenshot.webp","/assets/images/themes/mediator-screenshot-2.webp","/assets/images/themes/mediator-screenshot-3.webp"],"demo_url":"https://blog.base68.com/","github_url":"https://github.com/dirkfabisch/mediator","author":"GitHub Community","github_author_name":"dirkfabisch","github_author_url":"https://github.com/dirkfabisch","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2024-05-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.2.0","license":"MIT","stars":810,"forks":497,"features":["Medium-inspired layout","Full-width featured images","Clean reading typography","Author bio section","Disqus comments","Social share buttons","Google Analytics","Tag archive pages","RSS feed","Responsive design"],"slug":"mediator","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Massively is unlike anything else in the Jekyll ecosystem. Ported from HTML5 UP's popular Massively template, it opens with a dramatic full-screen background image and bold typography that immediately signals a strong visual identity. The post listing uses large featured images that make even text-heavy content feel visual and inviting.\n\nIf most Jekyll themes are quiet and minimal, Massively is loud β€” in the best possible way. It's the choice when you want your site to make an impression the moment someone arrives.\n\n**Who is it for?** Bloggers, photographers, journalists, and creatives who want a visually dramatic, image-led site that stands out from the typical minimal developer blog.\n","url":"/themes/massively/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Massively Jekyll Theme","description":"A bold, image-driven Jekyll blog theme ported from HTML5 UP. Full-screen background image on the homepage, large featured post images, and a striking visual identity unlike any other Jekyll theme.","key_features":["Full-Screen Images","Bold Design","GitHub Pages","HTML5 UP Port"],"card_description":"Bold, image-driven blog with full-screen homepage background.","category":"Blog","card_image":"/assets/images/themes/massively-card.webp","theme_screenshots":["/assets/images/themes/massively-screenshot.webp","/assets/images/themes/massively-screenshot-2.webp","/assets/images/themes/massively-screenshot-3.webp"],"demo_url":"https://jekyllup.github.io/jekyll-theme-massively/","github_url":"https://github.com/jekyllup/jekyll-theme-massively","author":"GitHub Community","github_author_name":"jekyllup","github_author_url":"https://github.com/jekyllup","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC BY 3.0","stars":300,"forks":350,"features":["Full-screen background image on homepage","Large featured images per post","Bold typographic headings","Smooth scroll effects","Article-oriented post grid layout","Social media links","Disqus comments","Google Analytics","Responsive design","GitHub Pages compatible"],"slug":"massively","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/mediator.md","relative_path":"_themes/mediator.md","excerpt":"<p>Mediator is a Jekyll theme inspired by Medium’s clean reading experience. Large full-width featured images set the tone for each post, while generous line spacing and careful typography keep readers comfortable through long articles.</p>\n\n","previous":{"path":"_themes/massively.md","relative_path":"_themes/massively.md","excerpt":"<p>Massively is unlike anything else in the Jekyll ecosystem. Ported from HTML5 UP’s popular Massively template, it opens with a dramatic full-screen background image and bold typography that immediately signals a strong visual identity. The post listing uses large featured images that make even text-heavy content feel visual and inviting.</p>\n\n","previous":{"path":"_themes/long-haul.md","relative_path":"_themes/long-haul.md","id":"/themes/long-haul","collection":"themes","url":"/themes/long-haul/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Long Haul Jekyll Theme","description":"A minimal, type-focused Jekyll theme designed for long-form writing. Understated design that keeps the reader's attention on the words.","key_features":["Long-Form Writing","Type Focused","Minimal Design","GitHub Pages"],"card_description":"Minimal, type-focused theme designed for long-form writing.","category":"Blog","card_image":"/assets/images/themes/long-haul-card.webp","theme_screenshots":["/assets/images/themes/long-haul-screenshot.webp","/assets/images/themes/long-haul-screenshot-2.webp","/assets/images/themes/long-haul-screenshot-3.webp"],"demo_url":"https://brianmaierjr.com/long-haul/","github_url":"https://github.com/brianmaierjr/long-haul","author":"GitHub Community","github_author_name":"brianmaierjr","github_author_url":"https://github.com/brianmaierjr","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-08-10","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":697,"forks":305,"features":["Typography-first design","Minimal navigation","Large readable font sizes","Clean post listing","Social links","RSS feed","Google Analytics","GitHub Pages compatible","No JavaScript dependencies","Lightweight and fast"],"slug":"long-haul","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/massively","collection":"themes","next":{"path":"_themes/mediator.md","relative_path":"_themes/mediator.md","id":"/themes/mediator","collection":"themes","url":"/themes/mediator/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediator Jekyll Theme","description":"A medium-inspired Jekyll blog theme with large featured images, clean typography, and a focus on long-form reading.","key_features":["Medium-Inspired","Featured Images","Clean Typography","GitHub Pages"],"card_description":"Medium-inspired blog with large featured images and clean typography.","category":"Blog","card_image":"/assets/images/themes/mediator-card.webp","theme_screenshots":["/assets/images/themes/mediator-screenshot.webp","/assets/images/themes/mediator-screenshot-2.webp","/assets/images/themes/mediator-screenshot-3.webp"],"demo_url":"https://blog.base68.com/","github_url":"https://github.com/dirkfabisch/mediator","author":"GitHub Community","github_author_name":"dirkfabisch","github_author_url":"https://github.com/dirkfabisch","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2024-05-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.2.0","license":"MIT","stars":810,"forks":497,"features":["Medium-inspired layout","Full-width featured images","Clean reading typography","Author bio section","Disqus comments","Social share buttons","Google Analytics","Tag archive pages","RSS feed","Responsive design"],"slug":"mediator","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Massively is unlike anything else in the Jekyll ecosystem. Ported from HTML5 UP's popular Massively template, it opens with a dramatic full-screen background image and bold typography that immediately signals a strong visual identity. The post listing uses large featured images that make even text-heavy content feel visual and inviting.\n\nIf most Jekyll themes are quiet and minimal, Massively is loud β€” in the best possible way. It's the choice when you want your site to make an impression the moment someone arrives.\n\n**Who is it for?** Bloggers, photographers, journalists, and creatives who want a visually dramatic, image-led site that stands out from the typical minimal developer blog.\n","url":"/themes/massively/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Massively Jekyll Theme","description":"A bold, image-driven Jekyll blog theme ported from HTML5 UP. Full-screen background image on the homepage, large featured post images, and a striking visual identity unlike any other Jekyll theme.","key_features":["Full-Screen Images","Bold Design","GitHub Pages","HTML5 UP Port"],"card_description":"Bold, image-driven blog with full-screen homepage background.","category":"Blog","card_image":"/assets/images/themes/massively-card.webp","theme_screenshots":["/assets/images/themes/massively-screenshot.webp","/assets/images/themes/massively-screenshot-2.webp","/assets/images/themes/massively-screenshot-3.webp"],"demo_url":"https://jekyllup.github.io/jekyll-theme-massively/","github_url":"https://github.com/jekyllup/jekyll-theme-massively","author":"GitHub Community","github_author_name":"jekyllup","github_author_url":"https://github.com/jekyllup","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC BY 3.0","stars":300,"forks":350,"features":["Full-screen background image on homepage","Large featured images per post","Bold typographic headings","Smooth scroll effects","Article-oriented post grid layout","Social media links","Disqus comments","Google Analytics","Responsive design","GitHub Pages compatible"],"slug":"massively","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/mediator","collection":"themes","next":{"path":"_themes/mediumish.md","relative_path":"_themes/mediumish.md","excerpt":"<p>Mediumish brings the clean, readable aesthetic of Medium to your self-hosted Jekyll blog. Card-based post listings, full author profile pages, and a spacious reading layout combine to create a blog that feels serious and editorial.</p>\n\n","previous":{"path":"_themes/mediator.md","relative_path":"_themes/mediator.md","id":"/themes/mediator","collection":"themes","url":"/themes/mediator/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediator Jekyll Theme","description":"A medium-inspired Jekyll blog theme with large featured images, clean typography, and a focus on long-form reading.","key_features":["Medium-Inspired","Featured Images","Clean Typography","GitHub Pages"],"card_description":"Medium-inspired blog with large featured images and clean typography.","category":"Blog","card_image":"/assets/images/themes/mediator-card.webp","theme_screenshots":["/assets/images/themes/mediator-screenshot.webp","/assets/images/themes/mediator-screenshot-2.webp","/assets/images/themes/mediator-screenshot-3.webp"],"demo_url":"https://blog.base68.com/","github_url":"https://github.com/dirkfabisch/mediator","author":"GitHub Community","github_author_name":"dirkfabisch","github_author_url":"https://github.com/dirkfabisch","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2024-05-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.2.0","license":"MIT","stars":810,"forks":497,"features":["Medium-inspired layout","Full-width featured images","Clean reading typography","Author bio section","Disqus comments","Social share buttons","Google Analytics","Tag archive pages","RSS feed","Responsive design"],"slug":"mediator","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/mediumish","collection":"themes","next":{"path":"_themes/merlot.md","relative_path":"_themes/merlot.md","id":"/themes/merlot","collection":"themes","url":"/themes/merlot/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Merlot Jekyll Theme","description":"A warm, editorial GitHub Pages Jekyll theme with classic typographic styling. Official GitHub Pages theme for personal and project sites.","key_features":["GitHub Pages","Editorial Style","Warm Palette","Classic Typography"],"card_description":"Warm, editorial GitHub Pages theme with classic typographic styling.","category":"Personal","card_image":"/assets/images/themes/merlot-card.webp","theme_screenshots":["/assets/images/themes/merlot-screenshot.webp","/assets/images/themes/merlot-screenshot-2.webp","/assets/images/themes/merlot-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/merlot/","github_url":"https://github.com/pages-themes/merlot","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Warm burgundy header accent","Clean white content area","Elegant, professional aesthetic","Single-line enable via _config.yml","Responsive layout","No local setup required"],"slug":"merlot","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Mediumish brings the clean, readable aesthetic of Medium to your self-hosted Jekyll blog. Card-based post listings, full author profile pages, and a spacious reading layout combine to create a blog that feels serious and editorial.\n\n**Who is it for?** Bloggers and content creators who want a Medium-quality reading experience on their own domain.\n","url":"/themes/mediumish/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediumish Jekyll Theme","description":"A Medium-inspired blog theme with card-based post listings, author pages, and a clean reading layout. One of the most popular Jekyll blog starters.","key_features":["Card Layouts","Author Pages","GitHub Pages","Medium-Inspired"],"card_description":"Medium-inspired blog with card post listings and author pages.","category":"Blog","card_image":"/assets/images/themes/mediumish-card.webp","theme_screenshots":["/assets/images/themes/mediumish-screenshot.webp","/assets/images/themes/mediumish-screenshot-2.webp","/assets/images/themes/mediumish-screenshot-3.webp"],"demo_url":"https://wowthemesnet.github.io/mediumish-theme-jekyll/","github_url":"https://github.com/wowthemesnet/mediumish-theme-jekyll","author":"GitHub Community","github_author_name":"WowThemes","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap","jekyll-paginate"],"updated_at":"2023-08-01","added_at":"2026-03-10","popular":true,"trending":false,"bestseller":false,"version":"1.0.6","license":"MIT","stars":1900,"forks":1700,"features":["Card-based post grid","Featured post hero","Author profile pages","Disqus comments","MailChimp integration","Category/tag pages"],"slug":"mediumish","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Mediator is a Jekyll theme inspired by Medium's clean reading experience. Large full-width featured images set the tone for each post, while generous line spacing and careful typography keep readers comfortable through long articles.\n\nThe author bio section at the bottom of each post adds a personal touch β€” great for building a connection with your readership.\n\n**Who is it for?** Writers publishing long-form content who want a reading-first experience similar to Medium.\n","url":"/themes/mediator/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediator Jekyll Theme","description":"A medium-inspired Jekyll blog theme with large featured images, clean typography, and a focus on long-form reading.","key_features":["Medium-Inspired","Featured Images","Clean Typography","GitHub Pages"],"card_description":"Medium-inspired blog with large featured images and clean typography.","category":"Blog","card_image":"/assets/images/themes/mediator-card.webp","theme_screenshots":["/assets/images/themes/mediator-screenshot.webp","/assets/images/themes/mediator-screenshot-2.webp","/assets/images/themes/mediator-screenshot-3.webp"],"demo_url":"https://blog.base68.com/","github_url":"https://github.com/dirkfabisch/mediator","author":"GitHub Community","github_author_name":"dirkfabisch","github_author_url":"https://github.com/dirkfabisch","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2024-05-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.2.0","license":"MIT","stars":810,"forks":497,"features":["Medium-inspired layout","Full-width featured images","Clean reading typography","Author bio section","Disqus comments","Social share buttons","Google Analytics","Tag archive pages","RSS feed","Responsive design"],"slug":"mediator","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/mediumish.md","relative_path":"_themes/mediumish.md","excerpt":"<p>Mediumish brings the clean, readable aesthetic of Medium to your self-hosted Jekyll blog. Card-based post listings, full author profile pages, and a spacious reading layout combine to create a blog that feels serious and editorial.</p>\n\n","previous":{"path":"_themes/mediator.md","relative_path":"_themes/mediator.md","excerpt":"<p>Mediator is a Jekyll theme inspired by Medium’s clean reading experience. Large full-width featured images set the tone for each post, while generous line spacing and careful typography keep readers comfortable through long articles.</p>\n\n","previous":{"path":"_themes/massively.md","relative_path":"_themes/massively.md","id":"/themes/massively","collection":"themes","url":"/themes/massively/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Massively Jekyll Theme","description":"A bold, image-driven Jekyll blog theme ported from HTML5 UP. Full-screen background image on the homepage, large featured post images, and a striking visual identity unlike any other Jekyll theme.","key_features":["Full-Screen Images","Bold Design","GitHub Pages","HTML5 UP Port"],"card_description":"Bold, image-driven blog with full-screen homepage background.","category":"Blog","card_image":"/assets/images/themes/massively-card.webp","theme_screenshots":["/assets/images/themes/massively-screenshot.webp","/assets/images/themes/massively-screenshot-2.webp","/assets/images/themes/massively-screenshot-3.webp"],"demo_url":"https://jekyllup.github.io/jekyll-theme-massively/","github_url":"https://github.com/jekyllup/jekyll-theme-massively","author":"GitHub Community","github_author_name":"jekyllup","github_author_url":"https://github.com/jekyllup","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"CC BY 3.0","stars":300,"forks":350,"features":["Full-screen background image on homepage","Large featured images per post","Bold typographic headings","Smooth scroll effects","Article-oriented post grid layout","Social media links","Disqus comments","Google Analytics","Responsive design","GitHub Pages compatible"],"slug":"massively","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/mediator","collection":"themes","next":{"path":"_themes/mediumish.md","relative_path":"_themes/mediumish.md","id":"/themes/mediumish","collection":"themes","url":"/themes/mediumish/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediumish Jekyll Theme","description":"A Medium-inspired blog theme with card-based post listings, author pages, and a clean reading layout. One of the most popular Jekyll blog starters.","key_features":["Card Layouts","Author Pages","GitHub Pages","Medium-Inspired"],"card_description":"Medium-inspired blog with card post listings and author pages.","category":"Blog","card_image":"/assets/images/themes/mediumish-card.webp","theme_screenshots":["/assets/images/themes/mediumish-screenshot.webp","/assets/images/themes/mediumish-screenshot-2.webp","/assets/images/themes/mediumish-screenshot-3.webp"],"demo_url":"https://wowthemesnet.github.io/mediumish-theme-jekyll/","github_url":"https://github.com/wowthemesnet/mediumish-theme-jekyll","author":"GitHub Community","github_author_name":"WowThemes","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap","jekyll-paginate"],"updated_at":"2023-08-01","added_at":"2026-03-10","popular":true,"trending":false,"bestseller":false,"version":"1.0.6","license":"MIT","stars":1900,"forks":1700,"features":["Card-based post grid","Featured post hero","Author profile pages","Disqus comments","MailChimp integration","Category/tag pages"],"slug":"mediumish","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Mediator is a Jekyll theme inspired by Medium's clean reading experience. Large full-width featured images set the tone for each post, while generous line spacing and careful typography keep readers comfortable through long articles.\n\nThe author bio section at the bottom of each post adds a personal touch β€” great for building a connection with your readership.\n\n**Who is it for?** Writers publishing long-form content who want a reading-first experience similar to Medium.\n","url":"/themes/mediator/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediator Jekyll Theme","description":"A medium-inspired Jekyll blog theme with large featured images, clean typography, and a focus on long-form reading.","key_features":["Medium-Inspired","Featured Images","Clean Typography","GitHub Pages"],"card_description":"Medium-inspired blog with large featured images and clean typography.","category":"Blog","card_image":"/assets/images/themes/mediator-card.webp","theme_screenshots":["/assets/images/themes/mediator-screenshot.webp","/assets/images/themes/mediator-screenshot-2.webp","/assets/images/themes/mediator-screenshot-3.webp"],"demo_url":"https://blog.base68.com/","github_url":"https://github.com/dirkfabisch/mediator","author":"GitHub Community","github_author_name":"dirkfabisch","github_author_url":"https://github.com/dirkfabisch","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2024-05-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.2.0","license":"MIT","stars":810,"forks":497,"features":["Medium-inspired layout","Full-width featured images","Clean reading typography","Author bio section","Disqus comments","Social share buttons","Google Analytics","Tag archive pages","RSS feed","Responsive design"],"slug":"mediator","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/mediumish","collection":"themes","next":{"path":"_themes/merlot.md","relative_path":"_themes/merlot.md","excerpt":"<p>Merlot is the warmest of GitHub’s official themes. Its deep burgundy header creates an immediately distinctive look that feels more personal and elegant than the typical developer site. The white content area keeps reading comfortable, and the overall impression is polished without being corporate.</p>\n\n","previous":{"path":"_themes/mediumish.md","relative_path":"_themes/mediumish.md","id":"/themes/mediumish","collection":"themes","url":"/themes/mediumish/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediumish Jekyll Theme","description":"A Medium-inspired blog theme with card-based post listings, author pages, and a clean reading layout. One of the most popular Jekyll blog starters.","key_features":["Card Layouts","Author Pages","GitHub Pages","Medium-Inspired"],"card_description":"Medium-inspired blog with card post listings and author pages.","category":"Blog","card_image":"/assets/images/themes/mediumish-card.webp","theme_screenshots":["/assets/images/themes/mediumish-screenshot.webp","/assets/images/themes/mediumish-screenshot-2.webp","/assets/images/themes/mediumish-screenshot-3.webp"],"demo_url":"https://wowthemesnet.github.io/mediumish-theme-jekyll/","github_url":"https://github.com/wowthemesnet/mediumish-theme-jekyll","author":"GitHub Community","github_author_name":"WowThemes","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap","jekyll-paginate"],"updated_at":"2023-08-01","added_at":"2026-03-10","popular":true,"trending":false,"bestseller":false,"version":"1.0.6","license":"MIT","stars":1900,"forks":1700,"features":["Card-based post grid","Featured post hero","Author profile pages","Disqus comments","MailChimp integration","Category/tag pages"],"slug":"mediumish","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/merlot","collection":"themes","next":{"path":"_themes/midnight.md","relative_path":"_themes/midnight.md","id":"/themes/midnight","collection":"themes","url":"/themes/midnight/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Midnight Jekyll Theme","description":"A dark, sleek GitHub Pages Jekyll theme with light text on deep backgrounds. Official GitHub Pages theme ideal for personal projects and portfolios.","key_features":["Dark Theme","GitHub Pages","Sleek Design","Official GH Theme"],"card_description":"Dark, sleek GitHub Pages theme with light text on deep backgrounds.","category":"Personal","card_image":"/assets/images/themes/midnight-card.webp","theme_screenshots":["/assets/images/themes/midnight-screenshot.webp","/assets/images/themes/midnight-screenshot-2.webp","/assets/images/themes/midnight-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/midnight/","github_url":"https://github.com/pages-themes/midnight","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Dark background design","High-contrast content area","Responsive mobile layout","Single-line enable via _config.yml","No local setup required","Clean typographic hierarchy"],"slug":"midnight","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Merlot is the warmest of GitHub's official themes. Its deep burgundy header creates an immediately distinctive look that feels more personal and elegant than the typical developer site. The white content area keeps reading comfortable, and the overall impression is polished without being corporate.\n\nAs an official GitHub Pages theme, enabling it is a single line β€” making it a popular choice for personal project pages that need to look good quickly.\n\n**Who is it for?** Anyone who wants a warmer, more personal aesthetic on GitHub Pages, with a distinctive look that stands out from the default blue-and-white developer site template.\n","url":"/themes/merlot/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Merlot Jekyll Theme","description":"A warm, editorial GitHub Pages Jekyll theme with classic typographic styling. Official GitHub Pages theme for personal and project sites.","key_features":["GitHub Pages","Editorial Style","Warm Palette","Classic Typography"],"card_description":"Warm, editorial GitHub Pages theme with classic typographic styling.","category":"Personal","card_image":"/assets/images/themes/merlot-card.webp","theme_screenshots":["/assets/images/themes/merlot-screenshot.webp","/assets/images/themes/merlot-screenshot-2.webp","/assets/images/themes/merlot-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/merlot/","github_url":"https://github.com/pages-themes/merlot","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Warm burgundy header accent","Clean white content area","Elegant, professional aesthetic","Single-line enable via _config.yml","Responsive layout","No local setup required"],"slug":"merlot","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Mediumish brings the clean, readable aesthetic of Medium to your self-hosted Jekyll blog. Card-based post listings, full author profile pages, and a spacious reading layout combine to create a blog that feels serious and editorial.\n\n**Who is it for?** Bloggers and content creators who want a Medium-quality reading experience on their own domain.\n","url":"/themes/mediumish/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediumish Jekyll Theme","description":"A Medium-inspired blog theme with card-based post listings, author pages, and a clean reading layout. One of the most popular Jekyll blog starters.","key_features":["Card Layouts","Author Pages","GitHub Pages","Medium-Inspired"],"card_description":"Medium-inspired blog with card post listings and author pages.","category":"Blog","card_image":"/assets/images/themes/mediumish-card.webp","theme_screenshots":["/assets/images/themes/mediumish-screenshot.webp","/assets/images/themes/mediumish-screenshot-2.webp","/assets/images/themes/mediumish-screenshot-3.webp"],"demo_url":"https://wowthemesnet.github.io/mediumish-theme-jekyll/","github_url":"https://github.com/wowthemesnet/mediumish-theme-jekyll","author":"GitHub Community","github_author_name":"WowThemes","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap","jekyll-paginate"],"updated_at":"2023-08-01","added_at":"2026-03-10","popular":true,"trending":false,"bestseller":false,"version":"1.0.6","license":"MIT","stars":1900,"forks":1700,"features":["Card-based post grid","Featured post hero","Author profile pages","Disqus comments","MailChimp integration","Category/tag pages"],"slug":"mediumish","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/merlot.md","relative_path":"_themes/merlot.md","excerpt":"<p>Merlot is the warmest of GitHub’s official themes. Its deep burgundy header creates an immediately distinctive look that feels more personal and elegant than the typical developer site. The white content area keeps reading comfortable, and the overall impression is polished without being corporate.</p>\n\n","previous":{"path":"_themes/mediumish.md","relative_path":"_themes/mediumish.md","excerpt":"<p>Mediumish brings the clean, readable aesthetic of Medium to your self-hosted Jekyll blog. Card-based post listings, full author profile pages, and a spacious reading layout combine to create a blog that feels serious and editorial.</p>\n\n","previous":{"path":"_themes/mediator.md","relative_path":"_themes/mediator.md","id":"/themes/mediator","collection":"themes","url":"/themes/mediator/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediator Jekyll Theme","description":"A medium-inspired Jekyll blog theme with large featured images, clean typography, and a focus on long-form reading.","key_features":["Medium-Inspired","Featured Images","Clean Typography","GitHub Pages"],"card_description":"Medium-inspired blog with large featured images and clean typography.","category":"Blog","card_image":"/assets/images/themes/mediator-card.webp","theme_screenshots":["/assets/images/themes/mediator-screenshot.webp","/assets/images/themes/mediator-screenshot-2.webp","/assets/images/themes/mediator-screenshot-3.webp"],"demo_url":"https://blog.base68.com/","github_url":"https://github.com/dirkfabisch/mediator","author":"GitHub Community","github_author_name":"dirkfabisch","github_author_url":"https://github.com/dirkfabisch","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2024-05-28","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.2.0","license":"MIT","stars":810,"forks":497,"features":["Medium-inspired layout","Full-width featured images","Clean reading typography","Author bio section","Disqus comments","Social share buttons","Google Analytics","Tag archive pages","RSS feed","Responsive design"],"slug":"mediator","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/mediumish","collection":"themes","next":{"path":"_themes/merlot.md","relative_path":"_themes/merlot.md","id":"/themes/merlot","collection":"themes","url":"/themes/merlot/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Merlot Jekyll Theme","description":"A warm, editorial GitHub Pages Jekyll theme with classic typographic styling. Official GitHub Pages theme for personal and project sites.","key_features":["GitHub Pages","Editorial Style","Warm Palette","Classic Typography"],"card_description":"Warm, editorial GitHub Pages theme with classic typographic styling.","category":"Personal","card_image":"/assets/images/themes/merlot-card.webp","theme_screenshots":["/assets/images/themes/merlot-screenshot.webp","/assets/images/themes/merlot-screenshot-2.webp","/assets/images/themes/merlot-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/merlot/","github_url":"https://github.com/pages-themes/merlot","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Warm burgundy header accent","Clean white content area","Elegant, professional aesthetic","Single-line enable via _config.yml","Responsive layout","No local setup required"],"slug":"merlot","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Mediumish brings the clean, readable aesthetic of Medium to your self-hosted Jekyll blog. Card-based post listings, full author profile pages, and a spacious reading layout combine to create a blog that feels serious and editorial.\n\n**Who is it for?** Bloggers and content creators who want a Medium-quality reading experience on their own domain.\n","url":"/themes/mediumish/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediumish Jekyll Theme","description":"A Medium-inspired blog theme with card-based post listings, author pages, and a clean reading layout. One of the most popular Jekyll blog starters.","key_features":["Card Layouts","Author Pages","GitHub Pages","Medium-Inspired"],"card_description":"Medium-inspired blog with card post listings and author pages.","category":"Blog","card_image":"/assets/images/themes/mediumish-card.webp","theme_screenshots":["/assets/images/themes/mediumish-screenshot.webp","/assets/images/themes/mediumish-screenshot-2.webp","/assets/images/themes/mediumish-screenshot-3.webp"],"demo_url":"https://wowthemesnet.github.io/mediumish-theme-jekyll/","github_url":"https://github.com/wowthemesnet/mediumish-theme-jekyll","author":"GitHub Community","github_author_name":"WowThemes","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap","jekyll-paginate"],"updated_at":"2023-08-01","added_at":"2026-03-10","popular":true,"trending":false,"bestseller":false,"version":"1.0.6","license":"MIT","stars":1900,"forks":1700,"features":["Card-based post grid","Featured post hero","Author profile pages","Disqus comments","MailChimp integration","Category/tag pages"],"slug":"mediumish","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/merlot","collection":"themes","next":{"path":"_themes/midnight.md","relative_path":"_themes/midnight.md","excerpt":"<p>Midnight is the dark-mode option among GitHub’s official supported themes. Its deep charcoal background and carefully chosen accent colours create a striking, high-contrast aesthetic that feels at home for developer portfolios, open-source project pages, and creative personal sites.</p>\n\n","previous":{"path":"_themes/merlot.md","relative_path":"_themes/merlot.md","id":"/themes/merlot","collection":"themes","url":"/themes/merlot/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Merlot Jekyll Theme","description":"A warm, editorial GitHub Pages Jekyll theme with classic typographic styling. Official GitHub Pages theme for personal and project sites.","key_features":["GitHub Pages","Editorial Style","Warm Palette","Classic Typography"],"card_description":"Warm, editorial GitHub Pages theme with classic typographic styling.","category":"Personal","card_image":"/assets/images/themes/merlot-card.webp","theme_screenshots":["/assets/images/themes/merlot-screenshot.webp","/assets/images/themes/merlot-screenshot-2.webp","/assets/images/themes/merlot-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/merlot/","github_url":"https://github.com/pages-themes/merlot","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Warm burgundy header accent","Clean white content area","Elegant, professional aesthetic","Single-line enable via _config.yml","Responsive layout","No local setup required"],"slug":"merlot","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/midnight","collection":"themes","next":{"path":"_themes/miles.md","relative_path":"_themes/miles.md","id":"/themes/miles","collection":"themes","url":"/themes/miles/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Miles Jekyll Theme","rating":4.7,"rating_count":31,"description":"A creative portfolio and agency Jekyll theme with 12+ homepage layouts, 6 portfolio styles, and 4 blog layouts. Designed for agencies, freelancers, and creative professionals who want a stunning site in hours not days.","card_description":"Creative agency and portfolio theme β€” 12+ homepages, 6 portfolio styles, dark design.","price":79,"category":"Portfolio","card_image":"/assets/images/themes/miles-card.webp","theme_screenshots":["/assets/images/themes/miles-screenshot.webp","/assets/images/themes/miles-screenshot-2.webp","/assets/images/themes/miles-screenshot-3.webp"],"key_features":["12+ Homepages","6 Portfolio Styles","Agency Ready","4 Blog Layouts"],"demo_url":"https://miles-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/demo/miles/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-03-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["12+ unique creative homepage layouts to choose from","6 portfolio layout styles β€” masonry, grid, list, carousel, and more","4 blog layout styles for different editorial presentations","3 about page layouts for personal or team introductions","3 service layout styles for agency service showcases","8 additional essential inner page layouts","Modern and clean design on a 1170px grid system","Built with Bootstrap 4, fully responsive and cross-browser compatible","Google Fonts and Font Awesome icon font included","Pixel-perfect design with smooth unique effects","Easy to customise with well-structured code","Extended documentation included","Ideal for agencies, freelancers, consultants, creatives, and startups"],"slug":"miles","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Midnight is the dark-mode option among GitHub's official supported themes. Its deep charcoal background and carefully chosen accent colours create a striking, high-contrast aesthetic that feels at home for developer portfolios, open-source project pages, and creative personal sites.\n\nLike all GitHub Pages official themes, it requires only a line in `_config.yml` to activate β€” making it the fastest way to get a good-looking dark site onto GitHub Pages.\n\n**Who is it for?** Developers and creatives who want a polished dark-themed site on GitHub Pages with zero configuration overhead.\n","url":"/themes/midnight/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Midnight Jekyll Theme","description":"A dark, sleek GitHub Pages Jekyll theme with light text on deep backgrounds. Official GitHub Pages theme ideal for personal projects and portfolios.","key_features":["Dark Theme","GitHub Pages","Sleek Design","Official GH Theme"],"card_description":"Dark, sleek GitHub Pages theme with light text on deep backgrounds.","category":"Personal","card_image":"/assets/images/themes/midnight-card.webp","theme_screenshots":["/assets/images/themes/midnight-screenshot.webp","/assets/images/themes/midnight-screenshot-2.webp","/assets/images/themes/midnight-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/midnight/","github_url":"https://github.com/pages-themes/midnight","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Dark background design","High-contrast content area","Responsive mobile layout","Single-line enable via _config.yml","No local setup required","Clean typographic hierarchy"],"slug":"midnight","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Merlot is the warmest of GitHub's official themes. Its deep burgundy header creates an immediately distinctive look that feels more personal and elegant than the typical developer site. The white content area keeps reading comfortable, and the overall impression is polished without being corporate.\n\nAs an official GitHub Pages theme, enabling it is a single line β€” making it a popular choice for personal project pages that need to look good quickly.\n\n**Who is it for?** Anyone who wants a warmer, more personal aesthetic on GitHub Pages, with a distinctive look that stands out from the default blue-and-white developer site template.\n","url":"/themes/merlot/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Merlot Jekyll Theme","description":"A warm, editorial GitHub Pages Jekyll theme with classic typographic styling. Official GitHub Pages theme for personal and project sites.","key_features":["GitHub Pages","Editorial Style","Warm Palette","Classic Typography"],"card_description":"Warm, editorial GitHub Pages theme with classic typographic styling.","category":"Personal","card_image":"/assets/images/themes/merlot-card.webp","theme_screenshots":["/assets/images/themes/merlot-screenshot.webp","/assets/images/themes/merlot-screenshot-2.webp","/assets/images/themes/merlot-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/merlot/","github_url":"https://github.com/pages-themes/merlot","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Warm burgundy header accent","Clean white content area","Elegant, professional aesthetic","Single-line enable via _config.yml","Responsive layout","No local setup required"],"slug":"merlot","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/midnight.md","relative_path":"_themes/midnight.md","excerpt":"<p>Midnight is the dark-mode option among GitHub’s official supported themes. Its deep charcoal background and carefully chosen accent colours create a striking, high-contrast aesthetic that feels at home for developer portfolios, open-source project pages, and creative personal sites.</p>\n\n","previous":{"path":"_themes/merlot.md","relative_path":"_themes/merlot.md","excerpt":"<p>Merlot is the warmest of GitHub’s official themes. Its deep burgundy header creates an immediately distinctive look that feels more personal and elegant than the typical developer site. The white content area keeps reading comfortable, and the overall impression is polished without being corporate.</p>\n\n","previous":{"path":"_themes/mediumish.md","relative_path":"_themes/mediumish.md","id":"/themes/mediumish","collection":"themes","url":"/themes/mediumish/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mediumish Jekyll Theme","description":"A Medium-inspired blog theme with card-based post listings, author pages, and a clean reading layout. One of the most popular Jekyll blog starters.","key_features":["Card Layouts","Author Pages","GitHub Pages","Medium-Inspired"],"card_description":"Medium-inspired blog with card post listings and author pages.","category":"Blog","card_image":"/assets/images/themes/mediumish-card.webp","theme_screenshots":["/assets/images/themes/mediumish-screenshot.webp","/assets/images/themes/mediumish-screenshot-2.webp","/assets/images/themes/mediumish-screenshot-3.webp"],"demo_url":"https://wowthemesnet.github.io/mediumish-theme-jekyll/","github_url":"https://github.com/wowthemesnet/mediumish-theme-jekyll","author":"GitHub Community","github_author_name":"WowThemes","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap","jekyll-paginate"],"updated_at":"2023-08-01","added_at":"2026-03-10","popular":true,"trending":false,"bestseller":false,"version":"1.0.6","license":"MIT","stars":1900,"forks":1700,"features":["Card-based post grid","Featured post hero","Author profile pages","Disqus comments","MailChimp integration","Category/tag pages"],"slug":"mediumish","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/merlot","collection":"themes","next":{"path":"_themes/midnight.md","relative_path":"_themes/midnight.md","id":"/themes/midnight","collection":"themes","url":"/themes/midnight/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Midnight Jekyll Theme","description":"A dark, sleek GitHub Pages Jekyll theme with light text on deep backgrounds. Official GitHub Pages theme ideal for personal projects and portfolios.","key_features":["Dark Theme","GitHub Pages","Sleek Design","Official GH Theme"],"card_description":"Dark, sleek GitHub Pages theme with light text on deep backgrounds.","category":"Personal","card_image":"/assets/images/themes/midnight-card.webp","theme_screenshots":["/assets/images/themes/midnight-screenshot.webp","/assets/images/themes/midnight-screenshot-2.webp","/assets/images/themes/midnight-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/midnight/","github_url":"https://github.com/pages-themes/midnight","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Dark background design","High-contrast content area","Responsive mobile layout","Single-line enable via _config.yml","No local setup required","Clean typographic hierarchy"],"slug":"midnight","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Merlot is the warmest of GitHub's official themes. Its deep burgundy header creates an immediately distinctive look that feels more personal and elegant than the typical developer site. The white content area keeps reading comfortable, and the overall impression is polished without being corporate.\n\nAs an official GitHub Pages theme, enabling it is a single line β€” making it a popular choice for personal project pages that need to look good quickly.\n\n**Who is it for?** Anyone who wants a warmer, more personal aesthetic on GitHub Pages, with a distinctive look that stands out from the default blue-and-white developer site template.\n","url":"/themes/merlot/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Merlot Jekyll Theme","description":"A warm, editorial GitHub Pages Jekyll theme with classic typographic styling. Official GitHub Pages theme for personal and project sites.","key_features":["GitHub Pages","Editorial Style","Warm Palette","Classic Typography"],"card_description":"Warm, editorial GitHub Pages theme with classic typographic styling.","category":"Personal","card_image":"/assets/images/themes/merlot-card.webp","theme_screenshots":["/assets/images/themes/merlot-screenshot.webp","/assets/images/themes/merlot-screenshot-2.webp","/assets/images/themes/merlot-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/merlot/","github_url":"https://github.com/pages-themes/merlot","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Warm burgundy header accent","Clean white content area","Elegant, professional aesthetic","Single-line enable via _config.yml","Responsive layout","No local setup required"],"slug":"merlot","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/midnight","collection":"themes","next":{"path":"_themes/miles.md","relative_path":"_themes/miles.md","excerpt":"<p>Miles is built for creative professionals who need a portfolio or agency site that makes an immediate impression. The headline stat β€” 12+ homepage layouts β€” means you can pick the mood and structure that fits your work, from bold full-screen hero layouts to editorial multi-column arrangements, without touching layout code.</p>\n\n","previous":{"path":"_themes/midnight.md","relative_path":"_themes/midnight.md","id":"/themes/midnight","collection":"themes","url":"/themes/midnight/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Midnight Jekyll Theme","description":"A dark, sleek GitHub Pages Jekyll theme with light text on deep backgrounds. Official GitHub Pages theme ideal for personal projects and portfolios.","key_features":["Dark Theme","GitHub Pages","Sleek Design","Official GH Theme"],"card_description":"Dark, sleek GitHub Pages theme with light text on deep backgrounds.","category":"Personal","card_image":"/assets/images/themes/midnight-card.webp","theme_screenshots":["/assets/images/themes/midnight-screenshot.webp","/assets/images/themes/midnight-screenshot-2.webp","/assets/images/themes/midnight-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/midnight/","github_url":"https://github.com/pages-themes/midnight","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Dark background design","High-contrast content area","Responsive mobile layout","Single-line enable via _config.yml","No local setup required","Clean typographic hierarchy"],"slug":"midnight","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/miles","collection":"themes","next":{"path":"_themes/millennial.md","relative_path":"_themes/millennial.md","id":"/themes/millennial","collection":"themes","url":"/themes/millennial/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Millennial Jekyll Theme","description":"A minimalist, responsive Jekyll blog theme with a clean layout, tag support, pagination, and social share buttons.","key_features":["Tag Support","GitHub Pages","Social Sharing","Minimal Design"],"card_description":"Minimalist responsive blog with tag support and social share buttons.","category":"Blog","card_image":"/assets/images/themes/millennial-card.webp","theme_screenshots":["/assets/images/themes/millennial-screenshot.webp","/assets/images/themes/millennial-screenshot-2.webp","/assets/images/themes/millennial-screenshot-3.webp"],"demo_url":"https://lenpaul.github.io/Millennial/","github_url":"https://github.com/LeNPaul/Millennial","author":"GitHub Community","github_author_name":"LeNPaul","github_author_url":"https://github.com/LeNPaul","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-06-16","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":474,"forks":285,"features":["Clean minimal layout","Tag archive pages","Paginated post list","Social share buttons","Featured post images","Google Analytics","Disqus comments","RSS feed","GitHub Pages compatible","Mobile responsive"],"slug":"millennial","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Miles is built for creative professionals who need a portfolio or agency site that makes an immediate impression. The headline stat β€” 12+ homepage layouts β€” means you can pick the mood and structure that fits your work, from bold full-screen hero layouts to editorial multi-column arrangements, without touching layout code.\n\n### Layout Variety That Matters\n\nSix portfolio styles means your work can be presented the way it deserves: masonry grids for photography, clean single-column for case studies, filtered galleries for multi-discipline agencies. The four blog layouts and three service page styles give the same flexibility to supporting content, so every section of the site feels considered rather than templated.\n\n### Designed for Agencies and Freelancers\n\nThe 1170px grid, clean typography, smooth effects, and dark-capable design palette make Miles appropriate for the kinds of clients who judge a supplier by their own website. The theme is built on Bootstrap 4 with Font Awesome icons and Google Fonts β€” a stable, familiar stack that any developer can extend without learning proprietary conventions.\n\n**Who is it for?** Creative agencies, freelance designers and developers, consultants, and personal portfolio builders who want a professional result fast β€” and a theme that presents their work rather than competing with it.\n","url":"/themes/miles/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Miles Jekyll Theme","rating":4.7,"rating_count":31,"description":"A creative portfolio and agency Jekyll theme with 12+ homepage layouts, 6 portfolio styles, and 4 blog layouts. Designed for agencies, freelancers, and creative professionals who want a stunning site in hours not days.","card_description":"Creative agency and portfolio theme β€” 12+ homepages, 6 portfolio styles, dark design.","price":79,"category":"Portfolio","card_image":"/assets/images/themes/miles-card.webp","theme_screenshots":["/assets/images/themes/miles-screenshot.webp","/assets/images/themes/miles-screenshot-2.webp","/assets/images/themes/miles-screenshot-3.webp"],"key_features":["12+ Homepages","6 Portfolio Styles","Agency Ready","4 Blog Layouts"],"demo_url":"https://miles-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/demo/miles/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-03-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["12+ unique creative homepage layouts to choose from","6 portfolio layout styles β€” masonry, grid, list, carousel, and more","4 blog layout styles for different editorial presentations","3 about page layouts for personal or team introductions","3 service layout styles for agency service showcases","8 additional essential inner page layouts","Modern and clean design on a 1170px grid system","Built with Bootstrap 4, fully responsive and cross-browser compatible","Google Fonts and Font Awesome icon font included","Pixel-perfect design with smooth unique effects","Easy to customise with well-structured code","Extended documentation included","Ideal for agencies, freelancers, consultants, creatives, and startups"],"slug":"miles","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Midnight is the dark-mode option among GitHub's official supported themes. Its deep charcoal background and carefully chosen accent colours create a striking, high-contrast aesthetic that feels at home for developer portfolios, open-source project pages, and creative personal sites.\n\nLike all GitHub Pages official themes, it requires only a line in `_config.yml` to activate β€” making it the fastest way to get a good-looking dark site onto GitHub Pages.\n\n**Who is it for?** Developers and creatives who want a polished dark-themed site on GitHub Pages with zero configuration overhead.\n","url":"/themes/midnight/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Midnight Jekyll Theme","description":"A dark, sleek GitHub Pages Jekyll theme with light text on deep backgrounds. Official GitHub Pages theme ideal for personal projects and portfolios.","key_features":["Dark Theme","GitHub Pages","Sleek Design","Official GH Theme"],"card_description":"Dark, sleek GitHub Pages theme with light text on deep backgrounds.","category":"Personal","card_image":"/assets/images/themes/midnight-card.webp","theme_screenshots":["/assets/images/themes/midnight-screenshot.webp","/assets/images/themes/midnight-screenshot-2.webp","/assets/images/themes/midnight-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/midnight/","github_url":"https://github.com/pages-themes/midnight","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Dark background design","High-contrast content area","Responsive mobile layout","Single-line enable via _config.yml","No local setup required","Clean typographic hierarchy"],"slug":"midnight","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/miles.md","relative_path":"_themes/miles.md","excerpt":"<p>Miles is built for creative professionals who need a portfolio or agency site that makes an immediate impression. The headline stat β€” 12+ homepage layouts β€” means you can pick the mood and structure that fits your work, from bold full-screen hero layouts to editorial multi-column arrangements, without touching layout code.</p>\n\n","previous":{"path":"_themes/midnight.md","relative_path":"_themes/midnight.md","excerpt":"<p>Midnight is the dark-mode option among GitHub’s official supported themes. Its deep charcoal background and carefully chosen accent colours create a striking, high-contrast aesthetic that feels at home for developer portfolios, open-source project pages, and creative personal sites.</p>\n\n","previous":{"path":"_themes/merlot.md","relative_path":"_themes/merlot.md","id":"/themes/merlot","collection":"themes","url":"/themes/merlot/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Merlot Jekyll Theme","description":"A warm, editorial GitHub Pages Jekyll theme with classic typographic styling. Official GitHub Pages theme for personal and project sites.","key_features":["GitHub Pages","Editorial Style","Warm Palette","Classic Typography"],"card_description":"Warm, editorial GitHub Pages theme with classic typographic styling.","category":"Personal","card_image":"/assets/images/themes/merlot-card.webp","theme_screenshots":["/assets/images/themes/merlot-screenshot.webp","/assets/images/themes/merlot-screenshot-2.webp","/assets/images/themes/merlot-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/merlot/","github_url":"https://github.com/pages-themes/merlot","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":400,"forks":350,"features":["Official GitHub Pages supported theme","Warm burgundy header accent","Clean white content area","Elegant, professional aesthetic","Single-line enable via _config.yml","Responsive layout","No local setup required"],"slug":"merlot","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/midnight","collection":"themes","next":{"path":"_themes/miles.md","relative_path":"_themes/miles.md","id":"/themes/miles","collection":"themes","url":"/themes/miles/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Miles Jekyll Theme","rating":4.7,"rating_count":31,"description":"A creative portfolio and agency Jekyll theme with 12+ homepage layouts, 6 portfolio styles, and 4 blog layouts. Designed for agencies, freelancers, and creative professionals who want a stunning site in hours not days.","card_description":"Creative agency and portfolio theme β€” 12+ homepages, 6 portfolio styles, dark design.","price":79,"category":"Portfolio","card_image":"/assets/images/themes/miles-card.webp","theme_screenshots":["/assets/images/themes/miles-screenshot.webp","/assets/images/themes/miles-screenshot-2.webp","/assets/images/themes/miles-screenshot-3.webp"],"key_features":["12+ Homepages","6 Portfolio Styles","Agency Ready","4 Blog Layouts"],"demo_url":"https://miles-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/demo/miles/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-03-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["12+ unique creative homepage layouts to choose from","6 portfolio layout styles β€” masonry, grid, list, carousel, and more","4 blog layout styles for different editorial presentations","3 about page layouts for personal or team introductions","3 service layout styles for agency service showcases","8 additional essential inner page layouts","Modern and clean design on a 1170px grid system","Built with Bootstrap 4, fully responsive and cross-browser compatible","Google Fonts and Font Awesome icon font included","Pixel-perfect design with smooth unique effects","Easy to customise with well-structured code","Extended documentation included","Ideal for agencies, freelancers, consultants, creatives, and startups"],"slug":"miles","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Midnight is the dark-mode option among GitHub's official supported themes. Its deep charcoal background and carefully chosen accent colours create a striking, high-contrast aesthetic that feels at home for developer portfolios, open-source project pages, and creative personal sites.\n\nLike all GitHub Pages official themes, it requires only a line in `_config.yml` to activate β€” making it the fastest way to get a good-looking dark site onto GitHub Pages.\n\n**Who is it for?** Developers and creatives who want a polished dark-themed site on GitHub Pages with zero configuration overhead.\n","url":"/themes/midnight/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Midnight Jekyll Theme","description":"A dark, sleek GitHub Pages Jekyll theme with light text on deep backgrounds. Official GitHub Pages theme ideal for personal projects and portfolios.","key_features":["Dark Theme","GitHub Pages","Sleek Design","Official GH Theme"],"card_description":"Dark, sleek GitHub Pages theme with light text on deep backgrounds.","category":"Personal","card_image":"/assets/images/themes/midnight-card.webp","theme_screenshots":["/assets/images/themes/midnight-screenshot.webp","/assets/images/themes/midnight-screenshot-2.webp","/assets/images/themes/midnight-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/midnight/","github_url":"https://github.com/pages-themes/midnight","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Dark background design","High-contrast content area","Responsive mobile layout","Single-line enable via _config.yml","No local setup required","Clean typographic hierarchy"],"slug":"midnight","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/miles","collection":"themes","next":{"path":"_themes/millennial.md","relative_path":"_themes/millennial.md","excerpt":"<p>Millennial is a clean, straightforward Jekyll blog theme designed for writers who want a no-nonsense publishing platform. The layout is minimal by design β€” no sidebars, no clutter, just posts.</p>\n\n","previous":{"path":"_themes/miles.md","relative_path":"_themes/miles.md","id":"/themes/miles","collection":"themes","url":"/themes/miles/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Miles Jekyll Theme","rating":4.7,"rating_count":31,"description":"A creative portfolio and agency Jekyll theme with 12+ homepage layouts, 6 portfolio styles, and 4 blog layouts. Designed for agencies, freelancers, and creative professionals who want a stunning site in hours not days.","card_description":"Creative agency and portfolio theme β€” 12+ homepages, 6 portfolio styles, dark design.","price":79,"category":"Portfolio","card_image":"/assets/images/themes/miles-card.webp","theme_screenshots":["/assets/images/themes/miles-screenshot.webp","/assets/images/themes/miles-screenshot-2.webp","/assets/images/themes/miles-screenshot-3.webp"],"key_features":["12+ Homepages","6 Portfolio Styles","Agency Ready","4 Blog Layouts"],"demo_url":"https://miles-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/demo/miles/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-03-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["12+ unique creative homepage layouts to choose from","6 portfolio layout styles β€” masonry, grid, list, carousel, and more","4 blog layout styles for different editorial presentations","3 about page layouts for personal or team introductions","3 service layout styles for agency service showcases","8 additional essential inner page layouts","Modern and clean design on a 1170px grid system","Built with Bootstrap 4, fully responsive and cross-browser compatible","Google Fonts and Font Awesome icon font included","Pixel-perfect design with smooth unique effects","Easy to customise with well-structured code","Extended documentation included","Ideal for agencies, freelancers, consultants, creatives, and startups"],"slug":"miles","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/millennial","collection":"themes","next":{"path":"_themes/minima.md","relative_path":"_themes/minima.md","id":"/themes/minima","collection":"themes","url":"/themes/minima/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Minima Jekyll Theme","description":"Jekyll's built-in default theme. Minimal, clean, and battle-tested. The foundation every Jekyll developer knows.","key_features":["Jekyll Default","GitHub Pages","Dark Mode","Lightweight"],"card_description":"Jekyll's default theme β€” minimal, clean, and battle-tested.","category":"Blog","card_image":"/assets/images/themes/minima-card.webp","theme_screenshots":["/assets/images/themes/minima-screenshot.webp","/assets/images/themes/minima-screenshot-2.webp","/assets/images/themes/minima-screenshot-3.webp"],"demo_url":"https://jekyll.github.io/minima/","github_url":"https://github.com/jekyll/minima","author":"GitHub Community","github_author_name":"Jekyll","github_author_url":"https://github.com/jekyll","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2024-03-01","added_at":"2026-01-01","popular":true,"trending":false,"bestseller":false,"version":"2.1.1","license":"MIT","stars":3100,"forks":2800,"features":["Ultra-minimal layout","Dark mode support","Social links","Post listing","Feed and SEO built-in"],"slug":"minima","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Millennial is a clean, straightforward Jekyll blog theme designed for writers who want a no-nonsense publishing platform. The layout is minimal by design β€” no sidebars, no clutter, just posts.\n\nTag archive pages organise content for readers, and pagination handles large archives gracefully.\n\n**Who is it for?** Bloggers who want a lean, focused reading experience without any distracting design elements.\n","url":"/themes/millennial/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Millennial Jekyll Theme","description":"A minimalist, responsive Jekyll blog theme with a clean layout, tag support, pagination, and social share buttons.","key_features":["Tag Support","GitHub Pages","Social Sharing","Minimal Design"],"card_description":"Minimalist responsive blog with tag support and social share buttons.","category":"Blog","card_image":"/assets/images/themes/millennial-card.webp","theme_screenshots":["/assets/images/themes/millennial-screenshot.webp","/assets/images/themes/millennial-screenshot-2.webp","/assets/images/themes/millennial-screenshot-3.webp"],"demo_url":"https://lenpaul.github.io/Millennial/","github_url":"https://github.com/LeNPaul/Millennial","author":"GitHub Community","github_author_name":"LeNPaul","github_author_url":"https://github.com/LeNPaul","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-06-16","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":474,"forks":285,"features":["Clean minimal layout","Tag archive pages","Paginated post list","Social share buttons","Featured post images","Google Analytics","Disqus comments","RSS feed","GitHub Pages compatible","Mobile responsive"],"slug":"millennial","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Miles is built for creative professionals who need a portfolio or agency site that makes an immediate impression. The headline stat β€” 12+ homepage layouts β€” means you can pick the mood and structure that fits your work, from bold full-screen hero layouts to editorial multi-column arrangements, without touching layout code.\n\n### Layout Variety That Matters\n\nSix portfolio styles means your work can be presented the way it deserves: masonry grids for photography, clean single-column for case studies, filtered galleries for multi-discipline agencies. The four blog layouts and three service page styles give the same flexibility to supporting content, so every section of the site feels considered rather than templated.\n\n### Designed for Agencies and Freelancers\n\nThe 1170px grid, clean typography, smooth effects, and dark-capable design palette make Miles appropriate for the kinds of clients who judge a supplier by their own website. The theme is built on Bootstrap 4 with Font Awesome icons and Google Fonts β€” a stable, familiar stack that any developer can extend without learning proprietary conventions.\n\n**Who is it for?** Creative agencies, freelance designers and developers, consultants, and personal portfolio builders who want a professional result fast β€” and a theme that presents their work rather than competing with it.\n","url":"/themes/miles/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Miles Jekyll Theme","rating":4.7,"rating_count":31,"description":"A creative portfolio and agency Jekyll theme with 12+ homepage layouts, 6 portfolio styles, and 4 blog layouts. Designed for agencies, freelancers, and creative professionals who want a stunning site in hours not days.","card_description":"Creative agency and portfolio theme β€” 12+ homepages, 6 portfolio styles, dark design.","price":79,"category":"Portfolio","card_image":"/assets/images/themes/miles-card.webp","theme_screenshots":["/assets/images/themes/miles-screenshot.webp","/assets/images/themes/miles-screenshot-2.webp","/assets/images/themes/miles-screenshot-3.webp"],"key_features":["12+ Homepages","6 Portfolio Styles","Agency Ready","4 Blog Layouts"],"demo_url":"https://miles-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/demo/miles/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-03-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["12+ unique creative homepage layouts to choose from","6 portfolio layout styles β€” masonry, grid, list, carousel, and more","4 blog layout styles for different editorial presentations","3 about page layouts for personal or team introductions","3 service layout styles for agency service showcases","8 additional essential inner page layouts","Modern and clean design on a 1170px grid system","Built with Bootstrap 4, fully responsive and cross-browser compatible","Google Fonts and Font Awesome icon font included","Pixel-perfect design with smooth unique effects","Easy to customise with well-structured code","Extended documentation included","Ideal for agencies, freelancers, consultants, creatives, and startups"],"slug":"miles","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/millennial.md","relative_path":"_themes/millennial.md","excerpt":"<p>Millennial is a clean, straightforward Jekyll blog theme designed for writers who want a no-nonsense publishing platform. The layout is minimal by design β€” no sidebars, no clutter, just posts.</p>\n\n","previous":{"path":"_themes/miles.md","relative_path":"_themes/miles.md","excerpt":"<p>Miles is built for creative professionals who need a portfolio or agency site that makes an immediate impression. The headline stat β€” 12+ homepage layouts β€” means you can pick the mood and structure that fits your work, from bold full-screen hero layouts to editorial multi-column arrangements, without touching layout code.</p>\n\n","previous":{"path":"_themes/midnight.md","relative_path":"_themes/midnight.md","id":"/themes/midnight","collection":"themes","url":"/themes/midnight/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Midnight Jekyll Theme","description":"A dark, sleek GitHub Pages Jekyll theme with light text on deep backgrounds. Official GitHub Pages theme ideal for personal projects and portfolios.","key_features":["Dark Theme","GitHub Pages","Sleek Design","Official GH Theme"],"card_description":"Dark, sleek GitHub Pages theme with light text on deep backgrounds.","category":"Personal","card_image":"/assets/images/themes/midnight-card.webp","theme_screenshots":["/assets/images/themes/midnight-screenshot.webp","/assets/images/themes/midnight-screenshot-2.webp","/assets/images/themes/midnight-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/midnight/","github_url":"https://github.com/pages-themes/midnight","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Dark background design","High-contrast content area","Responsive mobile layout","Single-line enable via _config.yml","No local setup required","Clean typographic hierarchy"],"slug":"midnight","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/miles","collection":"themes","next":{"path":"_themes/millennial.md","relative_path":"_themes/millennial.md","id":"/themes/millennial","collection":"themes","url":"/themes/millennial/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Millennial Jekyll Theme","description":"A minimalist, responsive Jekyll blog theme with a clean layout, tag support, pagination, and social share buttons.","key_features":["Tag Support","GitHub Pages","Social Sharing","Minimal Design"],"card_description":"Minimalist responsive blog with tag support and social share buttons.","category":"Blog","card_image":"/assets/images/themes/millennial-card.webp","theme_screenshots":["/assets/images/themes/millennial-screenshot.webp","/assets/images/themes/millennial-screenshot-2.webp","/assets/images/themes/millennial-screenshot-3.webp"],"demo_url":"https://lenpaul.github.io/Millennial/","github_url":"https://github.com/LeNPaul/Millennial","author":"GitHub Community","github_author_name":"LeNPaul","github_author_url":"https://github.com/LeNPaul","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-06-16","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":474,"forks":285,"features":["Clean minimal layout","Tag archive pages","Paginated post list","Social share buttons","Featured post images","Google Analytics","Disqus comments","RSS feed","GitHub Pages compatible","Mobile responsive"],"slug":"millennial","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Miles is built for creative professionals who need a portfolio or agency site that makes an immediate impression. The headline stat β€” 12+ homepage layouts β€” means you can pick the mood and structure that fits your work, from bold full-screen hero layouts to editorial multi-column arrangements, without touching layout code.\n\n### Layout Variety That Matters\n\nSix portfolio styles means your work can be presented the way it deserves: masonry grids for photography, clean single-column for case studies, filtered galleries for multi-discipline agencies. The four blog layouts and three service page styles give the same flexibility to supporting content, so every section of the site feels considered rather than templated.\n\n### Designed for Agencies and Freelancers\n\nThe 1170px grid, clean typography, smooth effects, and dark-capable design palette make Miles appropriate for the kinds of clients who judge a supplier by their own website. The theme is built on Bootstrap 4 with Font Awesome icons and Google Fonts β€” a stable, familiar stack that any developer can extend without learning proprietary conventions.\n\n**Who is it for?** Creative agencies, freelance designers and developers, consultants, and personal portfolio builders who want a professional result fast β€” and a theme that presents their work rather than competing with it.\n","url":"/themes/miles/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Miles Jekyll Theme","rating":4.7,"rating_count":31,"description":"A creative portfolio and agency Jekyll theme with 12+ homepage layouts, 6 portfolio styles, and 4 blog layouts. Designed for agencies, freelancers, and creative professionals who want a stunning site in hours not days.","card_description":"Creative agency and portfolio theme β€” 12+ homepages, 6 portfolio styles, dark design.","price":79,"category":"Portfolio","card_image":"/assets/images/themes/miles-card.webp","theme_screenshots":["/assets/images/themes/miles-screenshot.webp","/assets/images/themes/miles-screenshot-2.webp","/assets/images/themes/miles-screenshot-3.webp"],"key_features":["12+ Homepages","6 Portfolio Styles","Agency Ready","4 Blog Layouts"],"demo_url":"https://miles-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/demo/miles/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-03-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["12+ unique creative homepage layouts to choose from","6 portfolio layout styles β€” masonry, grid, list, carousel, and more","4 blog layout styles for different editorial presentations","3 about page layouts for personal or team introductions","3 service layout styles for agency service showcases","8 additional essential inner page layouts","Modern and clean design on a 1170px grid system","Built with Bootstrap 4, fully responsive and cross-browser compatible","Google Fonts and Font Awesome icon font included","Pixel-perfect design with smooth unique effects","Easy to customise with well-structured code","Extended documentation included","Ideal for agencies, freelancers, consultants, creatives, and startups"],"slug":"miles","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/millennial","collection":"themes","next":{"path":"_themes/minima.md","relative_path":"_themes/minima.md","excerpt":"<p>Minima is Jekyll’s official default theme β€” the one that ships with every new Jekyll install. It’s deliberately minimal: clean white background, sensible typography, and just enough structure to get a blog running without getting in the way.</p>\n\n","previous":{"path":"_themes/millennial.md","relative_path":"_themes/millennial.md","id":"/themes/millennial","collection":"themes","url":"/themes/millennial/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Millennial Jekyll Theme","description":"A minimalist, responsive Jekyll blog theme with a clean layout, tag support, pagination, and social share buttons.","key_features":["Tag Support","GitHub Pages","Social Sharing","Minimal Design"],"card_description":"Minimalist responsive blog with tag support and social share buttons.","category":"Blog","card_image":"/assets/images/themes/millennial-card.webp","theme_screenshots":["/assets/images/themes/millennial-screenshot.webp","/assets/images/themes/millennial-screenshot-2.webp","/assets/images/themes/millennial-screenshot-3.webp"],"demo_url":"https://lenpaul.github.io/Millennial/","github_url":"https://github.com/LeNPaul/Millennial","author":"GitHub Community","github_author_name":"LeNPaul","github_author_url":"https://github.com/LeNPaul","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-06-16","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":474,"forks":285,"features":["Clean minimal layout","Tag archive pages","Paginated post list","Social share buttons","Featured post images","Google Analytics","Disqus comments","RSS feed","GitHub Pages compatible","Mobile responsive"],"slug":"millennial","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/minima","collection":"themes","next":{"path":"_themes/minimal-mistakes.md","relative_path":"_themes/minimal-mistakes.md","id":"/themes/minimal-mistakes","collection":"themes","url":"/themes/minimal-mistakes/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Minimal Mistakes Jekyll Theme","description":"The most popular Jekyll theme on GitHub. A flexible two-column theme perfect for personal sites, blogs, documentation, and portfolios β€” with 12 layout skins.","key_features":["12 Layout Skins","GitHub Pages","Two-Column Layout","Portfolio Ready"],"card_description":"Most popular Jekyll theme β€” flexible two-column with 12 layout skins.","category":"Blog","card_image":"/assets/images/themes/minimal-mistakes-card.webp","theme_screenshots":["/assets/images/themes/minimal-mistakes-screenshot.webp","/assets/images/themes/minimal-mistakes-screenshot-2.webp","/assets/images/themes/minimal-mistakes-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/minimal-mistakes/","github_url":"https://github.com/mmistakes/minimal-mistakes","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-include-cache","jekyll-paginate"],"updated_at":"2024-03-01","added_at":"2026-01-02","popular":true,"trending":false,"bestseller":false,"version":"4.28.0","license":"MIT","stars":13300,"forks":9300,"features":["12 built-in colour skins","Flexible two-column layout","Responsive design","SEO optimised with jekyll-seo-tag","Built-in Lunr.js full-text search","Support for comments (Disqus, giscus)","Social sharing buttons","Author sidebar with bio and avatar","Google Analytics integration","Breadcrumb navigation"],"slug":"minimal-mistakes","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Minima is Jekyll's official default theme β€” the one that ships with every new Jekyll install. It's deliberately minimal: clean white background, sensible typography, and just enough structure to get a blog running without getting in the way.\n\nVersion 3.x adds dark mode support and social link icons, making it a surprisingly capable foundation despite its simplicity.\n\n**Who is it for?** Anyone just starting with Jekyll who wants a reliable, clean foundation they can customise or grow from.\n","url":"/themes/minima/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Minima Jekyll Theme","description":"Jekyll's built-in default theme. Minimal, clean, and battle-tested. The foundation every Jekyll developer knows.","key_features":["Jekyll Default","GitHub Pages","Dark Mode","Lightweight"],"card_description":"Jekyll's default theme β€” minimal, clean, and battle-tested.","category":"Blog","card_image":"/assets/images/themes/minima-card.webp","theme_screenshots":["/assets/images/themes/minima-screenshot.webp","/assets/images/themes/minima-screenshot-2.webp","/assets/images/themes/minima-screenshot-3.webp"],"demo_url":"https://jekyll.github.io/minima/","github_url":"https://github.com/jekyll/minima","author":"GitHub Community","github_author_name":"Jekyll","github_author_url":"https://github.com/jekyll","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2024-03-01","added_at":"2026-01-01","popular":true,"trending":false,"bestseller":false,"version":"2.1.1","license":"MIT","stars":3100,"forks":2800,"features":["Ultra-minimal layout","Dark mode support","Social links","Post listing","Feed and SEO built-in"],"slug":"minima","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Millennial is a clean, straightforward Jekyll blog theme designed for writers who want a no-nonsense publishing platform. The layout is minimal by design β€” no sidebars, no clutter, just posts.\n\nTag archive pages organise content for readers, and pagination handles large archives gracefully.\n\n**Who is it for?** Bloggers who want a lean, focused reading experience without any distracting design elements.\n","url":"/themes/millennial/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Millennial Jekyll Theme","description":"A minimalist, responsive Jekyll blog theme with a clean layout, tag support, pagination, and social share buttons.","key_features":["Tag Support","GitHub Pages","Social Sharing","Minimal Design"],"card_description":"Minimalist responsive blog with tag support and social share buttons.","category":"Blog","card_image":"/assets/images/themes/millennial-card.webp","theme_screenshots":["/assets/images/themes/millennial-screenshot.webp","/assets/images/themes/millennial-screenshot-2.webp","/assets/images/themes/millennial-screenshot-3.webp"],"demo_url":"https://lenpaul.github.io/Millennial/","github_url":"https://github.com/LeNPaul/Millennial","author":"GitHub Community","github_author_name":"LeNPaul","github_author_url":"https://github.com/LeNPaul","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-06-16","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":474,"forks":285,"features":["Clean minimal layout","Tag archive pages","Paginated post list","Social share buttons","Featured post images","Google Analytics","Disqus comments","RSS feed","GitHub Pages compatible","Mobile responsive"],"slug":"millennial","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/minima.md","relative_path":"_themes/minima.md","excerpt":"<p>Minima is Jekyll’s official default theme β€” the one that ships with every new Jekyll install. It’s deliberately minimal: clean white background, sensible typography, and just enough structure to get a blog running without getting in the way.</p>\n\n","previous":{"path":"_themes/millennial.md","relative_path":"_themes/millennial.md","excerpt":"<p>Millennial is a clean, straightforward Jekyll blog theme designed for writers who want a no-nonsense publishing platform. The layout is minimal by design β€” no sidebars, no clutter, just posts.</p>\n\n","previous":{"path":"_themes/miles.md","relative_path":"_themes/miles.md","id":"/themes/miles","collection":"themes","url":"/themes/miles/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Miles Jekyll Theme","rating":4.7,"rating_count":31,"description":"A creative portfolio and agency Jekyll theme with 12+ homepage layouts, 6 portfolio styles, and 4 blog layouts. Designed for agencies, freelancers, and creative professionals who want a stunning site in hours not days.","card_description":"Creative agency and portfolio theme β€” 12+ homepages, 6 portfolio styles, dark design.","price":79,"category":"Portfolio","card_image":"/assets/images/themes/miles-card.webp","theme_screenshots":["/assets/images/themes/miles-screenshot.webp","/assets/images/themes/miles-screenshot-2.webp","/assets/images/themes/miles-screenshot-3.webp"],"key_features":["12+ Homepages","6 Portfolio Styles","Agency Ready","4 Blog Layouts"],"demo_url":"https://miles-jekyll.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/demo/miles/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-03-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["12+ unique creative homepage layouts to choose from","6 portfolio layout styles β€” masonry, grid, list, carousel, and more","4 blog layout styles for different editorial presentations","3 about page layouts for personal or team introductions","3 service layout styles for agency service showcases","8 additional essential inner page layouts","Modern and clean design on a 1170px grid system","Built with Bootstrap 4, fully responsive and cross-browser compatible","Google Fonts and Font Awesome icon font included","Pixel-perfect design with smooth unique effects","Easy to customise with well-structured code","Extended documentation included","Ideal for agencies, freelancers, consultants, creatives, and startups"],"slug":"miles","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/millennial","collection":"themes","next":{"path":"_themes/minima.md","relative_path":"_themes/minima.md","id":"/themes/minima","collection":"themes","url":"/themes/minima/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Minima Jekyll Theme","description":"Jekyll's built-in default theme. Minimal, clean, and battle-tested. The foundation every Jekyll developer knows.","key_features":["Jekyll Default","GitHub Pages","Dark Mode","Lightweight"],"card_description":"Jekyll's default theme β€” minimal, clean, and battle-tested.","category":"Blog","card_image":"/assets/images/themes/minima-card.webp","theme_screenshots":["/assets/images/themes/minima-screenshot.webp","/assets/images/themes/minima-screenshot-2.webp","/assets/images/themes/minima-screenshot-3.webp"],"demo_url":"https://jekyll.github.io/minima/","github_url":"https://github.com/jekyll/minima","author":"GitHub Community","github_author_name":"Jekyll","github_author_url":"https://github.com/jekyll","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2024-03-01","added_at":"2026-01-01","popular":true,"trending":false,"bestseller":false,"version":"2.1.1","license":"MIT","stars":3100,"forks":2800,"features":["Ultra-minimal layout","Dark mode support","Social links","Post listing","Feed and SEO built-in"],"slug":"minima","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Millennial is a clean, straightforward Jekyll blog theme designed for writers who want a no-nonsense publishing platform. The layout is minimal by design β€” no sidebars, no clutter, just posts.\n\nTag archive pages organise content for readers, and pagination handles large archives gracefully.\n\n**Who is it for?** Bloggers who want a lean, focused reading experience without any distracting design elements.\n","url":"/themes/millennial/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Millennial Jekyll Theme","description":"A minimalist, responsive Jekyll blog theme with a clean layout, tag support, pagination, and social share buttons.","key_features":["Tag Support","GitHub Pages","Social Sharing","Minimal Design"],"card_description":"Minimalist responsive blog with tag support and social share buttons.","category":"Blog","card_image":"/assets/images/themes/millennial-card.webp","theme_screenshots":["/assets/images/themes/millennial-screenshot.webp","/assets/images/themes/millennial-screenshot-2.webp","/assets/images/themes/millennial-screenshot-3.webp"],"demo_url":"https://lenpaul.github.io/Millennial/","github_url":"https://github.com/LeNPaul/Millennial","author":"GitHub Community","github_author_name":"LeNPaul","github_author_url":"https://github.com/LeNPaul","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-06-16","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":474,"forks":285,"features":["Clean minimal layout","Tag archive pages","Paginated post list","Social share buttons","Featured post images","Google Analytics","Disqus comments","RSS feed","GitHub Pages compatible","Mobile responsive"],"slug":"millennial","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/minima","collection":"themes","next":{"path":"_themes/minimal-mistakes.md","relative_path":"_themes/minimal-mistakes.md","excerpt":"<p>Minimal Mistakes is the undisputed king of Jekyll themes β€” with over 13,000 GitHub stars it is the most-starred and most-used Jekyll theme ever created. Built by Michael Rose over more than a decade of active development, it strikes the perfect balance between simplicity and power.</p>\n\n","previous":{"path":"_themes/minima.md","relative_path":"_themes/minima.md","id":"/themes/minima","collection":"themes","url":"/themes/minima/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Minima Jekyll Theme","description":"Jekyll's built-in default theme. Minimal, clean, and battle-tested. The foundation every Jekyll developer knows.","key_features":["Jekyll Default","GitHub Pages","Dark Mode","Lightweight"],"card_description":"Jekyll's default theme β€” minimal, clean, and battle-tested.","category":"Blog","card_image":"/assets/images/themes/minima-card.webp","theme_screenshots":["/assets/images/themes/minima-screenshot.webp","/assets/images/themes/minima-screenshot-2.webp","/assets/images/themes/minima-screenshot-3.webp"],"demo_url":"https://jekyll.github.io/minima/","github_url":"https://github.com/jekyll/minima","author":"GitHub Community","github_author_name":"Jekyll","github_author_url":"https://github.com/jekyll","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2024-03-01","added_at":"2026-01-01","popular":true,"trending":false,"bestseller":false,"version":"2.1.1","license":"MIT","stars":3100,"forks":2800,"features":["Ultra-minimal layout","Dark mode support","Social links","Post listing","Feed and SEO built-in"],"slug":"minima","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/minimal-mistakes","collection":"themes","next":{"path":"_themes/minimal.md","relative_path":"_themes/minimal.md","id":"/themes/minimal","collection":"themes","url":"/themes/minimal/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Minimal Jekyll Theme","description":"The official minimal GitHub Pages Jekyll theme. Clean and lightweight with great default typography for personal projects and documentation.","key_features":["GitHub Pages","Ultra Minimal","Clean Typography","Official GH Theme"],"card_description":"Official minimal GitHub Pages theme β€” clean and lightweight.","category":"Personal","card_image":"/assets/images/themes/minimal-card.webp","theme_screenshots":["/assets/images/themes/minimal-screenshot.webp","/assets/images/themes/minimal-screenshot-2.webp","/assets/images/themes/minimal-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/minimal/","github_url":"https://github.com/pages-themes/minimal","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Clean white minimal layout","Subtle header with site title","Responsive design","Single-line enable via _config.yml","No local setup required","Fast page loads"],"slug":"minimal","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Minimal Mistakes is the undisputed king of Jekyll themes β€” with over 13,000 GitHub stars it is the most-starred and most-used Jekyll theme ever created. Built by Michael Rose over more than a decade of active development, it strikes the perfect balance between simplicity and power.\n\nTwelve built-in colour skins let you switch the visual tone of your site with a single config change. Its documentation covers every feature in detail.\n\n**Who is it for?** Developers, technical writers, and bloggers who want a battle-tested, feature-complete Jekyll theme they can deploy today and customise for years.\n","url":"/themes/minimal-mistakes/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Minimal Mistakes Jekyll Theme","description":"The most popular Jekyll theme on GitHub. A flexible two-column theme perfect for personal sites, blogs, documentation, and portfolios β€” with 12 layout skins.","key_features":["12 Layout Skins","GitHub Pages","Two-Column Layout","Portfolio Ready"],"card_description":"Most popular Jekyll theme β€” flexible two-column with 12 layout skins.","category":"Blog","card_image":"/assets/images/themes/minimal-mistakes-card.webp","theme_screenshots":["/assets/images/themes/minimal-mistakes-screenshot.webp","/assets/images/themes/minimal-mistakes-screenshot-2.webp","/assets/images/themes/minimal-mistakes-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/minimal-mistakes/","github_url":"https://github.com/mmistakes/minimal-mistakes","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-include-cache","jekyll-paginate"],"updated_at":"2024-03-01","added_at":"2026-01-02","popular":true,"trending":false,"bestseller":false,"version":"4.28.0","license":"MIT","stars":13300,"forks":9300,"features":["12 built-in colour skins","Flexible two-column layout","Responsive design","SEO optimised with jekyll-seo-tag","Built-in Lunr.js full-text search","Support for comments (Disqus, giscus)","Social sharing buttons","Author sidebar with bio and avatar","Google Analytics integration","Breadcrumb navigation"],"slug":"minimal-mistakes","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Minima is Jekyll's official default theme β€” the one that ships with every new Jekyll install. It's deliberately minimal: clean white background, sensible typography, and just enough structure to get a blog running without getting in the way.\n\nVersion 3.x adds dark mode support and social link icons, making it a surprisingly capable foundation despite its simplicity.\n\n**Who is it for?** Anyone just starting with Jekyll who wants a reliable, clean foundation they can customise or grow from.\n","url":"/themes/minima/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Minima Jekyll Theme","description":"Jekyll's built-in default theme. Minimal, clean, and battle-tested. The foundation every Jekyll developer knows.","key_features":["Jekyll Default","GitHub Pages","Dark Mode","Lightweight"],"card_description":"Jekyll's default theme β€” minimal, clean, and battle-tested.","category":"Blog","card_image":"/assets/images/themes/minima-card.webp","theme_screenshots":["/assets/images/themes/minima-screenshot.webp","/assets/images/themes/minima-screenshot-2.webp","/assets/images/themes/minima-screenshot-3.webp"],"demo_url":"https://jekyll.github.io/minima/","github_url":"https://github.com/jekyll/minima","author":"GitHub Community","github_author_name":"Jekyll","github_author_url":"https://github.com/jekyll","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2024-03-01","added_at":"2026-01-01","popular":true,"trending":false,"bestseller":false,"version":"2.1.1","license":"MIT","stars":3100,"forks":2800,"features":["Ultra-minimal layout","Dark mode support","Social links","Post listing","Feed and SEO built-in"],"slug":"minima","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/minimal-mistakes.md","relative_path":"_themes/minimal-mistakes.md","excerpt":"<p>Minimal Mistakes is the undisputed king of Jekyll themes β€” with over 13,000 GitHub stars it is the most-starred and most-used Jekyll theme ever created. Built by Michael Rose over more than a decade of active development, it strikes the perfect balance between simplicity and power.</p>\n\n","previous":{"path":"_themes/minima.md","relative_path":"_themes/minima.md","excerpt":"<p>Minima is Jekyll’s official default theme β€” the one that ships with every new Jekyll install. It’s deliberately minimal: clean white background, sensible typography, and just enough structure to get a blog running without getting in the way.</p>\n\n","previous":{"path":"_themes/millennial.md","relative_path":"_themes/millennial.md","id":"/themes/millennial","collection":"themes","url":"/themes/millennial/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Millennial Jekyll Theme","description":"A minimalist, responsive Jekyll blog theme with a clean layout, tag support, pagination, and social share buttons.","key_features":["Tag Support","GitHub Pages","Social Sharing","Minimal Design"],"card_description":"Minimalist responsive blog with tag support and social share buttons.","category":"Blog","card_image":"/assets/images/themes/millennial-card.webp","theme_screenshots":["/assets/images/themes/millennial-screenshot.webp","/assets/images/themes/millennial-screenshot-2.webp","/assets/images/themes/millennial-screenshot-3.webp"],"demo_url":"https://lenpaul.github.io/Millennial/","github_url":"https://github.com/LeNPaul/Millennial","author":"GitHub Community","github_author_name":"LeNPaul","github_author_url":"https://github.com/LeNPaul","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-06-16","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":474,"forks":285,"features":["Clean minimal layout","Tag archive pages","Paginated post list","Social share buttons","Featured post images","Google Analytics","Disqus comments","RSS feed","GitHub Pages compatible","Mobile responsive"],"slug":"millennial","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/minima","collection":"themes","next":{"path":"_themes/minimal-mistakes.md","relative_path":"_themes/minimal-mistakes.md","id":"/themes/minimal-mistakes","collection":"themes","url":"/themes/minimal-mistakes/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Minimal Mistakes Jekyll Theme","description":"The most popular Jekyll theme on GitHub. A flexible two-column theme perfect for personal sites, blogs, documentation, and portfolios β€” with 12 layout skins.","key_features":["12 Layout Skins","GitHub Pages","Two-Column Layout","Portfolio Ready"],"card_description":"Most popular Jekyll theme β€” flexible two-column with 12 layout skins.","category":"Blog","card_image":"/assets/images/themes/minimal-mistakes-card.webp","theme_screenshots":["/assets/images/themes/minimal-mistakes-screenshot.webp","/assets/images/themes/minimal-mistakes-screenshot-2.webp","/assets/images/themes/minimal-mistakes-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/minimal-mistakes/","github_url":"https://github.com/mmistakes/minimal-mistakes","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-include-cache","jekyll-paginate"],"updated_at":"2024-03-01","added_at":"2026-01-02","popular":true,"trending":false,"bestseller":false,"version":"4.28.0","license":"MIT","stars":13300,"forks":9300,"features":["12 built-in colour skins","Flexible two-column layout","Responsive design","SEO optimised with jekyll-seo-tag","Built-in Lunr.js full-text search","Support for comments (Disqus, giscus)","Social sharing buttons","Author sidebar with bio and avatar","Google Analytics integration","Breadcrumb navigation"],"slug":"minimal-mistakes","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Minima is Jekyll's official default theme β€” the one that ships with every new Jekyll install. It's deliberately minimal: clean white background, sensible typography, and just enough structure to get a blog running without getting in the way.\n\nVersion 3.x adds dark mode support and social link icons, making it a surprisingly capable foundation despite its simplicity.\n\n**Who is it for?** Anyone just starting with Jekyll who wants a reliable, clean foundation they can customise or grow from.\n","url":"/themes/minima/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Minima Jekyll Theme","description":"Jekyll's built-in default theme. Minimal, clean, and battle-tested. The foundation every Jekyll developer knows.","key_features":["Jekyll Default","GitHub Pages","Dark Mode","Lightweight"],"card_description":"Jekyll's default theme β€” minimal, clean, and battle-tested.","category":"Blog","card_image":"/assets/images/themes/minima-card.webp","theme_screenshots":["/assets/images/themes/minima-screenshot.webp","/assets/images/themes/minima-screenshot-2.webp","/assets/images/themes/minima-screenshot-3.webp"],"demo_url":"https://jekyll.github.io/minima/","github_url":"https://github.com/jekyll/minima","author":"GitHub Community","github_author_name":"Jekyll","github_author_url":"https://github.com/jekyll","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2024-03-01","added_at":"2026-01-01","popular":true,"trending":false,"bestseller":false,"version":"2.1.1","license":"MIT","stars":3100,"forks":2800,"features":["Ultra-minimal layout","Dark mode support","Social links","Post listing","Feed and SEO built-in"],"slug":"minima","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/minimal-mistakes","collection":"themes","next":{"path":"_themes/minimal.md","relative_path":"_themes/minimal.md","excerpt":"<p>Minimal is exactly what its name promises β€” GitHub’s most stripped-back official theme. A clean white page, a simple header, and nothing to get in the way of your content. It’s the choice when you want a professional online presence as quickly as possible.</p>\n\n","previous":{"path":"_themes/minimal-mistakes.md","relative_path":"_themes/minimal-mistakes.md","id":"/themes/minimal-mistakes","collection":"themes","url":"/themes/minimal-mistakes/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Minimal Mistakes Jekyll Theme","description":"The most popular Jekyll theme on GitHub. A flexible two-column theme perfect for personal sites, blogs, documentation, and portfolios β€” with 12 layout skins.","key_features":["12 Layout Skins","GitHub Pages","Two-Column Layout","Portfolio Ready"],"card_description":"Most popular Jekyll theme β€” flexible two-column with 12 layout skins.","category":"Blog","card_image":"/assets/images/themes/minimal-mistakes-card.webp","theme_screenshots":["/assets/images/themes/minimal-mistakes-screenshot.webp","/assets/images/themes/minimal-mistakes-screenshot-2.webp","/assets/images/themes/minimal-mistakes-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/minimal-mistakes/","github_url":"https://github.com/mmistakes/minimal-mistakes","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-include-cache","jekyll-paginate"],"updated_at":"2024-03-01","added_at":"2026-01-02","popular":true,"trending":false,"bestseller":false,"version":"4.28.0","license":"MIT","stars":13300,"forks":9300,"features":["12 built-in colour skins","Flexible two-column layout","Responsive design","SEO optimised with jekyll-seo-tag","Built-in Lunr.js full-text search","Support for comments (Disqus, giscus)","Social sharing buttons","Author sidebar with bio and avatar","Google Analytics integration","Breadcrumb navigation"],"slug":"minimal-mistakes","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/minimal","collection":"themes","next":{"path":"_themes/modern-resume-theme.md","relative_path":"_themes/modern-resume-theme.md","id":"/themes/modern-resume-theme","collection":"themes","url":"/themes/modern-resume-theme/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Modern Resume Theme Jekyll Theme","description":"A sleek, single-page resume/CV theme for Jekyll. Dark header, clean timeline layout, and sections for experience, education, skills, and projects.","key_features":["Single-Page CV","Timeline Layout","GitHub Pages","Dark Header"],"card_description":"Sleek single-page resume/CV with timeline and skills sections.","category":"Resume / CV","card_image":"/assets/images/themes/modern-resume-theme-card.webp","theme_screenshots":["/assets/images/themes/modern-resume-theme-screenshot.webp","/assets/images/themes/modern-resume-theme-screenshot-2.webp","/assets/images/themes/modern-resume-theme-screenshot-3.webp"],"demo_url":"https://sproogen.github.io/modern-resume-theme/","github_url":"https://github.com/sproogen/modern-resume-theme","author":"GitHub Community","github_author_name":"James Grant","github_author_url":"https://github.com/sproogen","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-28","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":4400,"forks":4700,"features":["YAML-driven content","Timeline for experience and education","Skills section","Projects section","Dark profile header","Print-friendly"],"slug":"modern-resume-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Minimal is exactly what its name promises β€” GitHub's most stripped-back official theme. A clean white page, a simple header, and nothing to get in the way of your content. It's the choice when you want a professional online presence as quickly as possible.\n\nAs an official GitHub Pages theme, it can be activated with a single `theme:` line in `_config.yml`, making it one of the fastest paths from a GitHub repository to a live website.\n\n**Who is it for?** Anyone who wants a simple, professional-looking GitHub Pages site with minimal fuss and maximum speed.\n","url":"/themes/minimal/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Minimal Jekyll Theme","description":"The official minimal GitHub Pages Jekyll theme. Clean and lightweight with great default typography for personal projects and documentation.","key_features":["GitHub Pages","Ultra Minimal","Clean Typography","Official GH Theme"],"card_description":"Official minimal GitHub Pages theme β€” clean and lightweight.","category":"Personal","card_image":"/assets/images/themes/minimal-card.webp","theme_screenshots":["/assets/images/themes/minimal-screenshot.webp","/assets/images/themes/minimal-screenshot-2.webp","/assets/images/themes/minimal-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/minimal/","github_url":"https://github.com/pages-themes/minimal","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Clean white minimal layout","Subtle header with site title","Responsive design","Single-line enable via _config.yml","No local setup required","Fast page loads"],"slug":"minimal","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Minimal Mistakes is the undisputed king of Jekyll themes β€” with over 13,000 GitHub stars it is the most-starred and most-used Jekyll theme ever created. Built by Michael Rose over more than a decade of active development, it strikes the perfect balance between simplicity and power.\n\nTwelve built-in colour skins let you switch the visual tone of your site with a single config change. Its documentation covers every feature in detail.\n\n**Who is it for?** Developers, technical writers, and bloggers who want a battle-tested, feature-complete Jekyll theme they can deploy today and customise for years.\n","url":"/themes/minimal-mistakes/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Minimal Mistakes Jekyll Theme","description":"The most popular Jekyll theme on GitHub. A flexible two-column theme perfect for personal sites, blogs, documentation, and portfolios β€” with 12 layout skins.","key_features":["12 Layout Skins","GitHub Pages","Two-Column Layout","Portfolio Ready"],"card_description":"Most popular Jekyll theme β€” flexible two-column with 12 layout skins.","category":"Blog","card_image":"/assets/images/themes/minimal-mistakes-card.webp","theme_screenshots":["/assets/images/themes/minimal-mistakes-screenshot.webp","/assets/images/themes/minimal-mistakes-screenshot-2.webp","/assets/images/themes/minimal-mistakes-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/minimal-mistakes/","github_url":"https://github.com/mmistakes/minimal-mistakes","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-include-cache","jekyll-paginate"],"updated_at":"2024-03-01","added_at":"2026-01-02","popular":true,"trending":false,"bestseller":false,"version":"4.28.0","license":"MIT","stars":13300,"forks":9300,"features":["12 built-in colour skins","Flexible two-column layout","Responsive design","SEO optimised with jekyll-seo-tag","Built-in Lunr.js full-text search","Support for comments (Disqus, giscus)","Social sharing buttons","Author sidebar with bio and avatar","Google Analytics integration","Breadcrumb navigation"],"slug":"minimal-mistakes","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/minimal.md","relative_path":"_themes/minimal.md","excerpt":"<p>Minimal is exactly what its name promises β€” GitHub’s most stripped-back official theme. A clean white page, a simple header, and nothing to get in the way of your content. It’s the choice when you want a professional online presence as quickly as possible.</p>\n\n","previous":{"path":"_themes/minimal-mistakes.md","relative_path":"_themes/minimal-mistakes.md","excerpt":"<p>Minimal Mistakes is the undisputed king of Jekyll themes β€” with over 13,000 GitHub stars it is the most-starred and most-used Jekyll theme ever created. Built by Michael Rose over more than a decade of active development, it strikes the perfect balance between simplicity and power.</p>\n\n","previous":{"path":"_themes/minima.md","relative_path":"_themes/minima.md","id":"/themes/minima","collection":"themes","url":"/themes/minima/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Minima Jekyll Theme","description":"Jekyll's built-in default theme. Minimal, clean, and battle-tested. The foundation every Jekyll developer knows.","key_features":["Jekyll Default","GitHub Pages","Dark Mode","Lightweight"],"card_description":"Jekyll's default theme β€” minimal, clean, and battle-tested.","category":"Blog","card_image":"/assets/images/themes/minima-card.webp","theme_screenshots":["/assets/images/themes/minima-screenshot.webp","/assets/images/themes/minima-screenshot-2.webp","/assets/images/themes/minima-screenshot-3.webp"],"demo_url":"https://jekyll.github.io/minima/","github_url":"https://github.com/jekyll/minima","author":"GitHub Community","github_author_name":"Jekyll","github_author_url":"https://github.com/jekyll","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.5","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2024-03-01","added_at":"2026-01-01","popular":true,"trending":false,"bestseller":false,"version":"2.1.1","license":"MIT","stars":3100,"forks":2800,"features":["Ultra-minimal layout","Dark mode support","Social links","Post listing","Feed and SEO built-in"],"slug":"minima","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/minimal-mistakes","collection":"themes","next":{"path":"_themes/minimal.md","relative_path":"_themes/minimal.md","id":"/themes/minimal","collection":"themes","url":"/themes/minimal/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Minimal Jekyll Theme","description":"The official minimal GitHub Pages Jekyll theme. Clean and lightweight with great default typography for personal projects and documentation.","key_features":["GitHub Pages","Ultra Minimal","Clean Typography","Official GH Theme"],"card_description":"Official minimal GitHub Pages theme β€” clean and lightweight.","category":"Personal","card_image":"/assets/images/themes/minimal-card.webp","theme_screenshots":["/assets/images/themes/minimal-screenshot.webp","/assets/images/themes/minimal-screenshot-2.webp","/assets/images/themes/minimal-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/minimal/","github_url":"https://github.com/pages-themes/minimal","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Clean white minimal layout","Subtle header with site title","Responsive design","Single-line enable via _config.yml","No local setup required","Fast page loads"],"slug":"minimal","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Minimal Mistakes is the undisputed king of Jekyll themes β€” with over 13,000 GitHub stars it is the most-starred and most-used Jekyll theme ever created. Built by Michael Rose over more than a decade of active development, it strikes the perfect balance between simplicity and power.\n\nTwelve built-in colour skins let you switch the visual tone of your site with a single config change. Its documentation covers every feature in detail.\n\n**Who is it for?** Developers, technical writers, and bloggers who want a battle-tested, feature-complete Jekyll theme they can deploy today and customise for years.\n","url":"/themes/minimal-mistakes/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Minimal Mistakes Jekyll Theme","description":"The most popular Jekyll theme on GitHub. A flexible two-column theme perfect for personal sites, blogs, documentation, and portfolios β€” with 12 layout skins.","key_features":["12 Layout Skins","GitHub Pages","Two-Column Layout","Portfolio Ready"],"card_description":"Most popular Jekyll theme β€” flexible two-column with 12 layout skins.","category":"Blog","card_image":"/assets/images/themes/minimal-mistakes-card.webp","theme_screenshots":["/assets/images/themes/minimal-mistakes-screenshot.webp","/assets/images/themes/minimal-mistakes-screenshot-2.webp","/assets/images/themes/minimal-mistakes-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/minimal-mistakes/","github_url":"https://github.com/mmistakes/minimal-mistakes","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-include-cache","jekyll-paginate"],"updated_at":"2024-03-01","added_at":"2026-01-02","popular":true,"trending":false,"bestseller":false,"version":"4.28.0","license":"MIT","stars":13300,"forks":9300,"features":["12 built-in colour skins","Flexible two-column layout","Responsive design","SEO optimised with jekyll-seo-tag","Built-in Lunr.js full-text search","Support for comments (Disqus, giscus)","Social sharing buttons","Author sidebar with bio and avatar","Google Analytics integration","Breadcrumb navigation"],"slug":"minimal-mistakes","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/minimal","collection":"themes","next":{"path":"_themes/modern-resume-theme.md","relative_path":"_themes/modern-resume-theme.md","excerpt":"<p>Modern Resume Theme turns a YAML configuration file into a polished, single-page CV. You fill in your experience, education, and skills in <code class=\"language-plaintext highlighter-rouge\">_config.yml</code> β€” the theme handles all the layout and styling.</p>\n\n","previous":{"path":"_themes/minimal.md","relative_path":"_themes/minimal.md","id":"/themes/minimal","collection":"themes","url":"/themes/minimal/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Minimal Jekyll Theme","description":"The official minimal GitHub Pages Jekyll theme. Clean and lightweight with great default typography for personal projects and documentation.","key_features":["GitHub Pages","Ultra Minimal","Clean Typography","Official GH Theme"],"card_description":"Official minimal GitHub Pages theme β€” clean and lightweight.","category":"Personal","card_image":"/assets/images/themes/minimal-card.webp","theme_screenshots":["/assets/images/themes/minimal-screenshot.webp","/assets/images/themes/minimal-screenshot-2.webp","/assets/images/themes/minimal-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/minimal/","github_url":"https://github.com/pages-themes/minimal","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Clean white minimal layout","Subtle header with site title","Responsive design","Single-line enable via _config.yml","No local setup required","Fast page loads"],"slug":"minimal","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/modern-resume-theme","collection":"themes","next":{"path":"_themes/moonwalk.md","relative_path":"_themes/moonwalk.md","id":"/themes/moonwalk","collection":"themes","url":"/themes/moonwalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Moonwalk Jekyll Theme","description":"A dark, minimal Jekyll blog theme with a focus on typography and whitespace. Elegant simplicity for serious writers.","key_features":["Dark Mode","Typography Focus","Minimal Design","GitHub Pages"],"card_description":"Dark, minimal blog focused on typography and generous whitespace.","category":"Blog","card_image":"/assets/images/themes/moonwalk-card.webp","theme_screenshots":["/assets/images/themes/moonwalk-screenshot.webp","/assets/images/themes/moonwalk-screenshot-2.webp","/assets/images/themes/moonwalk-screenshot-3.webp"],"demo_url":"https://abhinavs.github.io/moonwalk/","github_url":"https://github.com/abhinavs/moonwalk","author":"GitHub Community","github_author_name":"Abhinav Saxena","github_author_url":"https://github.com/abhinavs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2023-07-01","added_at":"2026-03-12","popular":false,"trending":true,"bestseller":false,"version":"0.5.0","license":"MIT","stars":1500,"forks":280,"features":["Dark minimal design","Typography-focused","Fast loading","soopr social sharing","Clean post layout"],"slug":"moonwalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Modern Resume Theme turns a YAML configuration file into a polished, single-page CV. You fill in your experience, education, and skills in `_config.yml` β€” the theme handles all the layout and styling.\n\nThe dark header with avatar creates a professional first impression, and the clean timeline makes career history easy to scan.\n\n**Who is it for?** Developers, designers, and professionals who want a clean, online CV hosted on GitHub Pages.\n","url":"/themes/modern-resume-theme/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Modern Resume Theme Jekyll Theme","description":"A sleek, single-page resume/CV theme for Jekyll. Dark header, clean timeline layout, and sections for experience, education, skills, and projects.","key_features":["Single-Page CV","Timeline Layout","GitHub Pages","Dark Header"],"card_description":"Sleek single-page resume/CV with timeline and skills sections.","category":"Resume / CV","card_image":"/assets/images/themes/modern-resume-theme-card.webp","theme_screenshots":["/assets/images/themes/modern-resume-theme-screenshot.webp","/assets/images/themes/modern-resume-theme-screenshot-2.webp","/assets/images/themes/modern-resume-theme-screenshot-3.webp"],"demo_url":"https://sproogen.github.io/modern-resume-theme/","github_url":"https://github.com/sproogen/modern-resume-theme","author":"GitHub Community","github_author_name":"James Grant","github_author_url":"https://github.com/sproogen","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-28","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":4400,"forks":4700,"features":["YAML-driven content","Timeline for experience and education","Skills section","Projects section","Dark profile header","Print-friendly"],"slug":"modern-resume-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Minimal is exactly what its name promises β€” GitHub's most stripped-back official theme. A clean white page, a simple header, and nothing to get in the way of your content. It's the choice when you want a professional online presence as quickly as possible.\n\nAs an official GitHub Pages theme, it can be activated with a single `theme:` line in `_config.yml`, making it one of the fastest paths from a GitHub repository to a live website.\n\n**Who is it for?** Anyone who wants a simple, professional-looking GitHub Pages site with minimal fuss and maximum speed.\n","url":"/themes/minimal/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Minimal Jekyll Theme","description":"The official minimal GitHub Pages Jekyll theme. Clean and lightweight with great default typography for personal projects and documentation.","key_features":["GitHub Pages","Ultra Minimal","Clean Typography","Official GH Theme"],"card_description":"Official minimal GitHub Pages theme β€” clean and lightweight.","category":"Personal","card_image":"/assets/images/themes/minimal-card.webp","theme_screenshots":["/assets/images/themes/minimal-screenshot.webp","/assets/images/themes/minimal-screenshot-2.webp","/assets/images/themes/minimal-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/minimal/","github_url":"https://github.com/pages-themes/minimal","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Clean white minimal layout","Subtle header with site title","Responsive design","Single-line enable via _config.yml","No local setup required","Fast page loads"],"slug":"minimal","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/modern-resume-theme.md","relative_path":"_themes/modern-resume-theme.md","excerpt":"<p>Modern Resume Theme turns a YAML configuration file into a polished, single-page CV. You fill in your experience, education, and skills in <code class=\"language-plaintext highlighter-rouge\">_config.yml</code> β€” the theme handles all the layout and styling.</p>\n\n","previous":{"path":"_themes/minimal.md","relative_path":"_themes/minimal.md","excerpt":"<p>Minimal is exactly what its name promises β€” GitHub’s most stripped-back official theme. A clean white page, a simple header, and nothing to get in the way of your content. It’s the choice when you want a professional online presence as quickly as possible.</p>\n\n","previous":{"path":"_themes/minimal-mistakes.md","relative_path":"_themes/minimal-mistakes.md","id":"/themes/minimal-mistakes","collection":"themes","url":"/themes/minimal-mistakes/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Minimal Mistakes Jekyll Theme","description":"The most popular Jekyll theme on GitHub. A flexible two-column theme perfect for personal sites, blogs, documentation, and portfolios β€” with 12 layout skins.","key_features":["12 Layout Skins","GitHub Pages","Two-Column Layout","Portfolio Ready"],"card_description":"Most popular Jekyll theme β€” flexible two-column with 12 layout skins.","category":"Blog","card_image":"/assets/images/themes/minimal-mistakes-card.webp","theme_screenshots":["/assets/images/themes/minimal-mistakes-screenshot.webp","/assets/images/themes/minimal-mistakes-screenshot-2.webp","/assets/images/themes/minimal-mistakes-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/minimal-mistakes/","github_url":"https://github.com/mmistakes/minimal-mistakes","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-include-cache","jekyll-paginate"],"updated_at":"2024-03-01","added_at":"2026-01-02","popular":true,"trending":false,"bestseller":false,"version":"4.28.0","license":"MIT","stars":13300,"forks":9300,"features":["12 built-in colour skins","Flexible two-column layout","Responsive design","SEO optimised with jekyll-seo-tag","Built-in Lunr.js full-text search","Support for comments (Disqus, giscus)","Social sharing buttons","Author sidebar with bio and avatar","Google Analytics integration","Breadcrumb navigation"],"slug":"minimal-mistakes","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/minimal","collection":"themes","next":{"path":"_themes/modern-resume-theme.md","relative_path":"_themes/modern-resume-theme.md","id":"/themes/modern-resume-theme","collection":"themes","url":"/themes/modern-resume-theme/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Modern Resume Theme Jekyll Theme","description":"A sleek, single-page resume/CV theme for Jekyll. Dark header, clean timeline layout, and sections for experience, education, skills, and projects.","key_features":["Single-Page CV","Timeline Layout","GitHub Pages","Dark Header"],"card_description":"Sleek single-page resume/CV with timeline and skills sections.","category":"Resume / CV","card_image":"/assets/images/themes/modern-resume-theme-card.webp","theme_screenshots":["/assets/images/themes/modern-resume-theme-screenshot.webp","/assets/images/themes/modern-resume-theme-screenshot-2.webp","/assets/images/themes/modern-resume-theme-screenshot-3.webp"],"demo_url":"https://sproogen.github.io/modern-resume-theme/","github_url":"https://github.com/sproogen/modern-resume-theme","author":"GitHub Community","github_author_name":"James Grant","github_author_url":"https://github.com/sproogen","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-28","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":4400,"forks":4700,"features":["YAML-driven content","Timeline for experience and education","Skills section","Projects section","Dark profile header","Print-friendly"],"slug":"modern-resume-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Minimal is exactly what its name promises β€” GitHub's most stripped-back official theme. A clean white page, a simple header, and nothing to get in the way of your content. It's the choice when you want a professional online presence as quickly as possible.\n\nAs an official GitHub Pages theme, it can be activated with a single `theme:` line in `_config.yml`, making it one of the fastest paths from a GitHub repository to a live website.\n\n**Who is it for?** Anyone who wants a simple, professional-looking GitHub Pages site with minimal fuss and maximum speed.\n","url":"/themes/minimal/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Minimal Jekyll Theme","description":"The official minimal GitHub Pages Jekyll theme. Clean and lightweight with great default typography for personal projects and documentation.","key_features":["GitHub Pages","Ultra Minimal","Clean Typography","Official GH Theme"],"card_description":"Official minimal GitHub Pages theme β€” clean and lightweight.","category":"Personal","card_image":"/assets/images/themes/minimal-card.webp","theme_screenshots":["/assets/images/themes/minimal-screenshot.webp","/assets/images/themes/minimal-screenshot-2.webp","/assets/images/themes/minimal-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/minimal/","github_url":"https://github.com/pages-themes/minimal","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Clean white minimal layout","Subtle header with site title","Responsive design","Single-line enable via _config.yml","No local setup required","Fast page loads"],"slug":"minimal","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/modern-resume-theme","collection":"themes","next":{"path":"_themes/moonwalk.md","relative_path":"_themes/moonwalk.md","excerpt":"<p>Moonwalk is a dark, minimal Jekyll blog theme that puts your words first. No sidebars, no carousels, no social widgets cluttering the margins β€” just clean typography on a deep background that makes reading a pleasure at any hour.</p>\n\n","previous":{"path":"_themes/modern-resume-theme.md","relative_path":"_themes/modern-resume-theme.md","id":"/themes/modern-resume-theme","collection":"themes","url":"/themes/modern-resume-theme/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Modern Resume Theme Jekyll Theme","description":"A sleek, single-page resume/CV theme for Jekyll. Dark header, clean timeline layout, and sections for experience, education, skills, and projects.","key_features":["Single-Page CV","Timeline Layout","GitHub Pages","Dark Header"],"card_description":"Sleek single-page resume/CV with timeline and skills sections.","category":"Resume / CV","card_image":"/assets/images/themes/modern-resume-theme-card.webp","theme_screenshots":["/assets/images/themes/modern-resume-theme-screenshot.webp","/assets/images/themes/modern-resume-theme-screenshot-2.webp","/assets/images/themes/modern-resume-theme-screenshot-3.webp"],"demo_url":"https://sproogen.github.io/modern-resume-theme/","github_url":"https://github.com/sproogen/modern-resume-theme","author":"GitHub Community","github_author_name":"James Grant","github_author_url":"https://github.com/sproogen","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-28","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":4400,"forks":4700,"features":["YAML-driven content","Timeline for experience and education","Skills section","Projects section","Dark profile header","Print-friendly"],"slug":"modern-resume-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/moonwalk","collection":"themes","next":{"path":"_themes/mundana.md","relative_path":"_themes/mundana.md","id":"/themes/mundana","collection":"themes","url":"/themes/mundana/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mundana Jekyll Theme","description":"A modern Jekyll theme for bloggers built with Bootstrap 4. Features featured posts, category pages, newsletter signup, and clean card layouts.","key_features":["Newsletter Signup","Featured Posts","Category Pages","GitHub Pages"],"card_description":"Modern Bootstrap 4 blog with featured posts and newsletter signup.","category":"Blog","card_image":"/assets/images/themes/mundana-card.webp","theme_screenshots":["/assets/images/themes/mundana-screenshot.webp","/assets/images/themes/mundana-screenshot-2.webp","/assets/images/themes/mundana-screenshot-3.webp"],"demo_url":"https://mundana.amitmerchant.com/","github_url":"https://github.com/wowthemesnet/mundana-theme-jekyll","author":"GitHub Community","github_author_name":"wowthemesnet","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-03-24","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":784,"forks":398,"features":["Bootstrap 4 powered","Featured hero post","Card-based post grid","Category archive pages","Newsletter signup section","Author profile pages","Related posts","Social sharing","Google Analytics","GitHub Pages compatible"],"slug":"mundana","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Moonwalk is a dark, minimal Jekyll blog theme that puts your words first. No sidebars, no carousels, no social widgets cluttering the margins β€” just clean typography on a deep background that makes reading a pleasure at any hour.\n\n**Who is it for?** Writers, thinkers, and bloggers who want a dark, distraction-free writing environment that readers will appreciate.\n","url":"/themes/moonwalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Moonwalk Jekyll Theme","description":"A dark, minimal Jekyll blog theme with a focus on typography and whitespace. Elegant simplicity for serious writers.","key_features":["Dark Mode","Typography Focus","Minimal Design","GitHub Pages"],"card_description":"Dark, minimal blog focused on typography and generous whitespace.","category":"Blog","card_image":"/assets/images/themes/moonwalk-card.webp","theme_screenshots":["/assets/images/themes/moonwalk-screenshot.webp","/assets/images/themes/moonwalk-screenshot-2.webp","/assets/images/themes/moonwalk-screenshot-3.webp"],"demo_url":"https://abhinavs.github.io/moonwalk/","github_url":"https://github.com/abhinavs/moonwalk","author":"GitHub Community","github_author_name":"Abhinav Saxena","github_author_url":"https://github.com/abhinavs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2023-07-01","added_at":"2026-03-12","popular":false,"trending":true,"bestseller":false,"version":"0.5.0","license":"MIT","stars":1500,"forks":280,"features":["Dark minimal design","Typography-focused","Fast loading","soopr social sharing","Clean post layout"],"slug":"moonwalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Modern Resume Theme turns a YAML configuration file into a polished, single-page CV. You fill in your experience, education, and skills in `_config.yml` β€” the theme handles all the layout and styling.\n\nThe dark header with avatar creates a professional first impression, and the clean timeline makes career history easy to scan.\n\n**Who is it for?** Developers, designers, and professionals who want a clean, online CV hosted on GitHub Pages.\n","url":"/themes/modern-resume-theme/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Modern Resume Theme Jekyll Theme","description":"A sleek, single-page resume/CV theme for Jekyll. Dark header, clean timeline layout, and sections for experience, education, skills, and projects.","key_features":["Single-Page CV","Timeline Layout","GitHub Pages","Dark Header"],"card_description":"Sleek single-page resume/CV with timeline and skills sections.","category":"Resume / CV","card_image":"/assets/images/themes/modern-resume-theme-card.webp","theme_screenshots":["/assets/images/themes/modern-resume-theme-screenshot.webp","/assets/images/themes/modern-resume-theme-screenshot-2.webp","/assets/images/themes/modern-resume-theme-screenshot-3.webp"],"demo_url":"https://sproogen.github.io/modern-resume-theme/","github_url":"https://github.com/sproogen/modern-resume-theme","author":"GitHub Community","github_author_name":"James Grant","github_author_url":"https://github.com/sproogen","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-28","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":4400,"forks":4700,"features":["YAML-driven content","Timeline for experience and education","Skills section","Projects section","Dark profile header","Print-friendly"],"slug":"modern-resume-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/moonwalk.md","relative_path":"_themes/moonwalk.md","excerpt":"<p>Moonwalk is a dark, minimal Jekyll blog theme that puts your words first. No sidebars, no carousels, no social widgets cluttering the margins β€” just clean typography on a deep background that makes reading a pleasure at any hour.</p>\n\n","previous":{"path":"_themes/modern-resume-theme.md","relative_path":"_themes/modern-resume-theme.md","excerpt":"<p>Modern Resume Theme turns a YAML configuration file into a polished, single-page CV. You fill in your experience, education, and skills in <code class=\"language-plaintext highlighter-rouge\">_config.yml</code> β€” the theme handles all the layout and styling.</p>\n\n","previous":{"path":"_themes/minimal.md","relative_path":"_themes/minimal.md","id":"/themes/minimal","collection":"themes","url":"/themes/minimal/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Minimal Jekyll Theme","description":"The official minimal GitHub Pages Jekyll theme. Clean and lightweight with great default typography for personal projects and documentation.","key_features":["GitHub Pages","Ultra Minimal","Clean Typography","Official GH Theme"],"card_description":"Official minimal GitHub Pages theme β€” clean and lightweight.","category":"Personal","card_image":"/assets/images/themes/minimal-card.webp","theme_screenshots":["/assets/images/themes/minimal-screenshot.webp","/assets/images/themes/minimal-screenshot-2.webp","/assets/images/themes/minimal-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/minimal/","github_url":"https://github.com/pages-themes/minimal","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Clean white minimal layout","Subtle header with site title","Responsive design","Single-line enable via _config.yml","No local setup required","Fast page loads"],"slug":"minimal","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/modern-resume-theme","collection":"themes","next":{"path":"_themes/moonwalk.md","relative_path":"_themes/moonwalk.md","id":"/themes/moonwalk","collection":"themes","url":"/themes/moonwalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Moonwalk Jekyll Theme","description":"A dark, minimal Jekyll blog theme with a focus on typography and whitespace. Elegant simplicity for serious writers.","key_features":["Dark Mode","Typography Focus","Minimal Design","GitHub Pages"],"card_description":"Dark, minimal blog focused on typography and generous whitespace.","category":"Blog","card_image":"/assets/images/themes/moonwalk-card.webp","theme_screenshots":["/assets/images/themes/moonwalk-screenshot.webp","/assets/images/themes/moonwalk-screenshot-2.webp","/assets/images/themes/moonwalk-screenshot-3.webp"],"demo_url":"https://abhinavs.github.io/moonwalk/","github_url":"https://github.com/abhinavs/moonwalk","author":"GitHub Community","github_author_name":"Abhinav Saxena","github_author_url":"https://github.com/abhinavs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2023-07-01","added_at":"2026-03-12","popular":false,"trending":true,"bestseller":false,"version":"0.5.0","license":"MIT","stars":1500,"forks":280,"features":["Dark minimal design","Typography-focused","Fast loading","soopr social sharing","Clean post layout"],"slug":"moonwalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Modern Resume Theme turns a YAML configuration file into a polished, single-page CV. You fill in your experience, education, and skills in `_config.yml` β€” the theme handles all the layout and styling.\n\nThe dark header with avatar creates a professional first impression, and the clean timeline makes career history easy to scan.\n\n**Who is it for?** Developers, designers, and professionals who want a clean, online CV hosted on GitHub Pages.\n","url":"/themes/modern-resume-theme/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Modern Resume Theme Jekyll Theme","description":"A sleek, single-page resume/CV theme for Jekyll. Dark header, clean timeline layout, and sections for experience, education, skills, and projects.","key_features":["Single-Page CV","Timeline Layout","GitHub Pages","Dark Header"],"card_description":"Sleek single-page resume/CV with timeline and skills sections.","category":"Resume / CV","card_image":"/assets/images/themes/modern-resume-theme-card.webp","theme_screenshots":["/assets/images/themes/modern-resume-theme-screenshot.webp","/assets/images/themes/modern-resume-theme-screenshot-2.webp","/assets/images/themes/modern-resume-theme-screenshot-3.webp"],"demo_url":"https://sproogen.github.io/modern-resume-theme/","github_url":"https://github.com/sproogen/modern-resume-theme","author":"GitHub Community","github_author_name":"James Grant","github_author_url":"https://github.com/sproogen","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-28","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":4400,"forks":4700,"features":["YAML-driven content","Timeline for experience and education","Skills section","Projects section","Dark profile header","Print-friendly"],"slug":"modern-resume-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/moonwalk","collection":"themes","next":{"path":"_themes/mundana.md","relative_path":"_themes/mundana.md","excerpt":"<p>Mundana is a modern, publication-style Jekyll theme from WowThemes.net. The homepage features a large hero post followed by a clean card grid β€” giving it the feel of a professional editorial site.</p>\n\n","previous":{"path":"_themes/moonwalk.md","relative_path":"_themes/moonwalk.md","id":"/themes/moonwalk","collection":"themes","url":"/themes/moonwalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Moonwalk Jekyll Theme","description":"A dark, minimal Jekyll blog theme with a focus on typography and whitespace. Elegant simplicity for serious writers.","key_features":["Dark Mode","Typography Focus","Minimal Design","GitHub Pages"],"card_description":"Dark, minimal blog focused on typography and generous whitespace.","category":"Blog","card_image":"/assets/images/themes/moonwalk-card.webp","theme_screenshots":["/assets/images/themes/moonwalk-screenshot.webp","/assets/images/themes/moonwalk-screenshot-2.webp","/assets/images/themes/moonwalk-screenshot-3.webp"],"demo_url":"https://abhinavs.github.io/moonwalk/","github_url":"https://github.com/abhinavs/moonwalk","author":"GitHub Community","github_author_name":"Abhinav Saxena","github_author_url":"https://github.com/abhinavs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2023-07-01","added_at":"2026-03-12","popular":false,"trending":true,"bestseller":false,"version":"0.5.0","license":"MIT","stars":1500,"forks":280,"features":["Dark minimal design","Typography-focused","Fast loading","soopr social sharing","Clean post layout"],"slug":"moonwalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/mundana","collection":"themes","next":{"path":"_themes/online-cv.md","relative_path":"_themes/online-cv.md","id":"/themes/online-cv","collection":"themes","url":"/themes/online-cv/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Online CV Jekyll Theme","description":"A one-page Jekyll CV and resume theme for creating a beautiful online portfolio. Minimal, readable design perfect for job seekers and freelancers.","key_features":["One-Page CV","GitHub Pages","Skills Section","Minimal Design"],"card_description":"One-page CV/resume theme for a beautiful online portfolio.","category":"Resume / CV","card_image":"/assets/images/themes/online-cv-card.webp","theme_screenshots":["/assets/images/themes/online-cv-screenshot.webp","/assets/images/themes/online-cv-screenshot-2.webp","/assets/images/themes/online-cv-screenshot-3.webp"],"demo_url":"https://sharu725.github.io/online-cv/","github_url":"https://github.com/sharu725/online-cv","author":"GitHub Community","github_author_name":"Sharath Kumar","github_author_url":"https://github.com/sharu725","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-15","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":2200,"forks":3800,"features":["Dark profile sidebar","Skills with progress bars","Experience timeline","Education section","Languages and interests","Print-friendly"],"slug":"online-cv","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Mundana is a modern, publication-style Jekyll theme from WowThemes.net. The homepage features a large hero post followed by a clean card grid β€” giving it the feel of a professional editorial site.\n\nCategory pages, author profiles, and newsletter signup sections are all built in, making it one of the most complete free blogging themes for Jekyll.\n\n**Who is it for?** Bloggers and content creators who want a professional editorial look without the complexity of a premium theme.\n","url":"/themes/mundana/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mundana Jekyll Theme","description":"A modern Jekyll theme for bloggers built with Bootstrap 4. Features featured posts, category pages, newsletter signup, and clean card layouts.","key_features":["Newsletter Signup","Featured Posts","Category Pages","GitHub Pages"],"card_description":"Modern Bootstrap 4 blog with featured posts and newsletter signup.","category":"Blog","card_image":"/assets/images/themes/mundana-card.webp","theme_screenshots":["/assets/images/themes/mundana-screenshot.webp","/assets/images/themes/mundana-screenshot-2.webp","/assets/images/themes/mundana-screenshot-3.webp"],"demo_url":"https://mundana.amitmerchant.com/","github_url":"https://github.com/wowthemesnet/mundana-theme-jekyll","author":"GitHub Community","github_author_name":"wowthemesnet","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-03-24","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":784,"forks":398,"features":["Bootstrap 4 powered","Featured hero post","Card-based post grid","Category archive pages","Newsletter signup section","Author profile pages","Related posts","Social sharing","Google Analytics","GitHub Pages compatible"],"slug":"mundana","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Moonwalk is a dark, minimal Jekyll blog theme that puts your words first. No sidebars, no carousels, no social widgets cluttering the margins β€” just clean typography on a deep background that makes reading a pleasure at any hour.\n\n**Who is it for?** Writers, thinkers, and bloggers who want a dark, distraction-free writing environment that readers will appreciate.\n","url":"/themes/moonwalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Moonwalk Jekyll Theme","description":"A dark, minimal Jekyll blog theme with a focus on typography and whitespace. Elegant simplicity for serious writers.","key_features":["Dark Mode","Typography Focus","Minimal Design","GitHub Pages"],"card_description":"Dark, minimal blog focused on typography and generous whitespace.","category":"Blog","card_image":"/assets/images/themes/moonwalk-card.webp","theme_screenshots":["/assets/images/themes/moonwalk-screenshot.webp","/assets/images/themes/moonwalk-screenshot-2.webp","/assets/images/themes/moonwalk-screenshot-3.webp"],"demo_url":"https://abhinavs.github.io/moonwalk/","github_url":"https://github.com/abhinavs/moonwalk","author":"GitHub Community","github_author_name":"Abhinav Saxena","github_author_url":"https://github.com/abhinavs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2023-07-01","added_at":"2026-03-12","popular":false,"trending":true,"bestseller":false,"version":"0.5.0","license":"MIT","stars":1500,"forks":280,"features":["Dark minimal design","Typography-focused","Fast loading","soopr social sharing","Clean post layout"],"slug":"moonwalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/mundana.md","relative_path":"_themes/mundana.md","excerpt":"<p>Mundana is a modern, publication-style Jekyll theme from WowThemes.net. The homepage features a large hero post followed by a clean card grid β€” giving it the feel of a professional editorial site.</p>\n\n","previous":{"path":"_themes/moonwalk.md","relative_path":"_themes/moonwalk.md","excerpt":"<p>Moonwalk is a dark, minimal Jekyll blog theme that puts your words first. No sidebars, no carousels, no social widgets cluttering the margins β€” just clean typography on a deep background that makes reading a pleasure at any hour.</p>\n\n","previous":{"path":"_themes/modern-resume-theme.md","relative_path":"_themes/modern-resume-theme.md","id":"/themes/modern-resume-theme","collection":"themes","url":"/themes/modern-resume-theme/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":true,"dark_mode":false,"responsive":true,"title":"Modern Resume Theme Jekyll Theme","description":"A sleek, single-page resume/CV theme for Jekyll. Dark header, clean timeline layout, and sections for experience, education, skills, and projects.","key_features":["Single-Page CV","Timeline Layout","GitHub Pages","Dark Header"],"card_description":"Sleek single-page resume/CV with timeline and skills sections.","category":"Resume / CV","card_image":"/assets/images/themes/modern-resume-theme-card.webp","theme_screenshots":["/assets/images/themes/modern-resume-theme-screenshot.webp","/assets/images/themes/modern-resume-theme-screenshot-2.webp","/assets/images/themes/modern-resume-theme-screenshot-3.webp"],"demo_url":"https://sproogen.github.io/modern-resume-theme/","github_url":"https://github.com/sproogen/modern-resume-theme","author":"GitHub Community","github_author_name":"James Grant","github_author_url":"https://github.com/sproogen","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-seo-tag"],"updated_at":"2024-01-01","added_at":"2026-02-28","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":4400,"forks":4700,"features":["YAML-driven content","Timeline for experience and education","Skills section","Projects section","Dark profile header","Print-friendly"],"slug":"modern-resume-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/moonwalk","collection":"themes","next":{"path":"_themes/mundana.md","relative_path":"_themes/mundana.md","id":"/themes/mundana","collection":"themes","url":"/themes/mundana/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mundana Jekyll Theme","description":"A modern Jekyll theme for bloggers built with Bootstrap 4. Features featured posts, category pages, newsletter signup, and clean card layouts.","key_features":["Newsletter Signup","Featured Posts","Category Pages","GitHub Pages"],"card_description":"Modern Bootstrap 4 blog with featured posts and newsletter signup.","category":"Blog","card_image":"/assets/images/themes/mundana-card.webp","theme_screenshots":["/assets/images/themes/mundana-screenshot.webp","/assets/images/themes/mundana-screenshot-2.webp","/assets/images/themes/mundana-screenshot-3.webp"],"demo_url":"https://mundana.amitmerchant.com/","github_url":"https://github.com/wowthemesnet/mundana-theme-jekyll","author":"GitHub Community","github_author_name":"wowthemesnet","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-03-24","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":784,"forks":398,"features":["Bootstrap 4 powered","Featured hero post","Card-based post grid","Category archive pages","Newsletter signup section","Author profile pages","Related posts","Social sharing","Google Analytics","GitHub Pages compatible"],"slug":"mundana","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Moonwalk is a dark, minimal Jekyll blog theme that puts your words first. No sidebars, no carousels, no social widgets cluttering the margins β€” just clean typography on a deep background that makes reading a pleasure at any hour.\n\n**Who is it for?** Writers, thinkers, and bloggers who want a dark, distraction-free writing environment that readers will appreciate.\n","url":"/themes/moonwalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Moonwalk Jekyll Theme","description":"A dark, minimal Jekyll blog theme with a focus on typography and whitespace. Elegant simplicity for serious writers.","key_features":["Dark Mode","Typography Focus","Minimal Design","GitHub Pages"],"card_description":"Dark, minimal blog focused on typography and generous whitespace.","category":"Blog","card_image":"/assets/images/themes/moonwalk-card.webp","theme_screenshots":["/assets/images/themes/moonwalk-screenshot.webp","/assets/images/themes/moonwalk-screenshot-2.webp","/assets/images/themes/moonwalk-screenshot-3.webp"],"demo_url":"https://abhinavs.github.io/moonwalk/","github_url":"https://github.com/abhinavs/moonwalk","author":"GitHub Community","github_author_name":"Abhinav Saxena","github_author_url":"https://github.com/abhinavs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2023-07-01","added_at":"2026-03-12","popular":false,"trending":true,"bestseller":false,"version":"0.5.0","license":"MIT","stars":1500,"forks":280,"features":["Dark minimal design","Typography-focused","Fast loading","soopr social sharing","Clean post layout"],"slug":"moonwalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/mundana","collection":"themes","next":{"path":"_themes/online-cv.md","relative_path":"_themes/online-cv.md","excerpt":"<p>Online CV is a clean two-column resume theme with a dark sidebar for your profile photo and contact details, and a light content area for your experience, education, and skills.</p>\n\n","previous":{"path":"_themes/mundana.md","relative_path":"_themes/mundana.md","id":"/themes/mundana","collection":"themes","url":"/themes/mundana/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mundana Jekyll Theme","description":"A modern Jekyll theme for bloggers built with Bootstrap 4. Features featured posts, category pages, newsletter signup, and clean card layouts.","key_features":["Newsletter Signup","Featured Posts","Category Pages","GitHub Pages"],"card_description":"Modern Bootstrap 4 blog with featured posts and newsletter signup.","category":"Blog","card_image":"/assets/images/themes/mundana-card.webp","theme_screenshots":["/assets/images/themes/mundana-screenshot.webp","/assets/images/themes/mundana-screenshot-2.webp","/assets/images/themes/mundana-screenshot-3.webp"],"demo_url":"https://mundana.amitmerchant.com/","github_url":"https://github.com/wowthemesnet/mundana-theme-jekyll","author":"GitHub Community","github_author_name":"wowthemesnet","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-03-24","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":784,"forks":398,"features":["Bootstrap 4 powered","Featured hero post","Card-based post grid","Category archive pages","Newsletter signup section","Author profile pages","Related posts","Social sharing","Google Analytics","GitHub Pages compatible"],"slug":"mundana","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/online-cv","collection":"themes","next":{"path":"_themes/origin.md","relative_path":"_themes/origin.md","id":"/themes/origin","collection":"themes","url":"/themes/origin/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Origin Jekyll Theme","rating":4.8,"rating_count":42,"description":"A fully featured and highly configurable modern blog theme for Jekyll. Includes categories, authors, comments, pagination, dark mode, and a perfect 100/100 Google Lighthouse score.","card_description":"Modern blog theme with dark mode, authors, categories, and 100/100 Lighthouse.","price":49,"category":"Blog","card_image":"/assets/images/themes/origin-card.webp","theme_screenshots":["/assets/images/themes/origin-screenshot.webp","/assets/images/themes/origin-screenshot-2.webp","/assets/images/themes/origin-screenshot-3.webp"],"key_features":["Dark Mode","100 Lighthouse","Categories","Authors"],"demo_url":"https://jekyll-origin.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-origin/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ support","100% responsive design with crisp imagery and beautiful typography","Fully featured Blog with categories, authors, comments, and pagination","Dark mode with automatic and manual switching","100/100 Google Lighthouse speed and SEO scores","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, header, and footer in _config.yml","SCSS + Bootstrap 5.2, no jQuery, minimal vanilla JS","Auto-generated SEO meta tags with per-page overrides","Open Graph / Twitter card meta data included","Google Analytics support and social media links","Nested dropdown menus and responsive mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Mailchimp newsletter subscribe form","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation with setup and customisation guide"],"slug":"origin","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Online CV is a clean two-column resume theme with a dark sidebar for your profile photo and contact details, and a light content area for your experience, education, and skills.\n\nAll content is configured through `data/data.yml` β€” no HTML editing required.\n\n**Who is it for?** Job seekers and professionals who want a clean, printable online resume hosted on GitHub Pages.\n","url":"/themes/online-cv/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Online CV Jekyll Theme","description":"A one-page Jekyll CV and resume theme for creating a beautiful online portfolio. Minimal, readable design perfect for job seekers and freelancers.","key_features":["One-Page CV","GitHub Pages","Skills Section","Minimal Design"],"card_description":"One-page CV/resume theme for a beautiful online portfolio.","category":"Resume / CV","card_image":"/assets/images/themes/online-cv-card.webp","theme_screenshots":["/assets/images/themes/online-cv-screenshot.webp","/assets/images/themes/online-cv-screenshot-2.webp","/assets/images/themes/online-cv-screenshot-3.webp"],"demo_url":"https://sharu725.github.io/online-cv/","github_url":"https://github.com/sharu725/online-cv","author":"GitHub Community","github_author_name":"Sharath Kumar","github_author_url":"https://github.com/sharu725","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-15","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":2200,"forks":3800,"features":["Dark profile sidebar","Skills with progress bars","Experience timeline","Education section","Languages and interests","Print-friendly"],"slug":"online-cv","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Mundana is a modern, publication-style Jekyll theme from WowThemes.net. The homepage features a large hero post followed by a clean card grid β€” giving it the feel of a professional editorial site.\n\nCategory pages, author profiles, and newsletter signup sections are all built in, making it one of the most complete free blogging themes for Jekyll.\n\n**Who is it for?** Bloggers and content creators who want a professional editorial look without the complexity of a premium theme.\n","url":"/themes/mundana/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mundana Jekyll Theme","description":"A modern Jekyll theme for bloggers built with Bootstrap 4. Features featured posts, category pages, newsletter signup, and clean card layouts.","key_features":["Newsletter Signup","Featured Posts","Category Pages","GitHub Pages"],"card_description":"Modern Bootstrap 4 blog with featured posts and newsletter signup.","category":"Blog","card_image":"/assets/images/themes/mundana-card.webp","theme_screenshots":["/assets/images/themes/mundana-screenshot.webp","/assets/images/themes/mundana-screenshot-2.webp","/assets/images/themes/mundana-screenshot-3.webp"],"demo_url":"https://mundana.amitmerchant.com/","github_url":"https://github.com/wowthemesnet/mundana-theme-jekyll","author":"GitHub Community","github_author_name":"wowthemesnet","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-03-24","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":784,"forks":398,"features":["Bootstrap 4 powered","Featured hero post","Card-based post grid","Category archive pages","Newsletter signup section","Author profile pages","Related posts","Social sharing","Google Analytics","GitHub Pages compatible"],"slug":"mundana","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/online-cv.md","relative_path":"_themes/online-cv.md","excerpt":"<p>Online CV is a clean two-column resume theme with a dark sidebar for your profile photo and contact details, and a light content area for your experience, education, and skills.</p>\n\n","previous":{"path":"_themes/mundana.md","relative_path":"_themes/mundana.md","excerpt":"<p>Mundana is a modern, publication-style Jekyll theme from WowThemes.net. The homepage features a large hero post followed by a clean card grid β€” giving it the feel of a professional editorial site.</p>\n\n","previous":{"path":"_themes/moonwalk.md","relative_path":"_themes/moonwalk.md","id":"/themes/moonwalk","collection":"themes","url":"/themes/moonwalk/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"Moonwalk Jekyll Theme","description":"A dark, minimal Jekyll blog theme with a focus on typography and whitespace. Elegant simplicity for serious writers.","key_features":["Dark Mode","Typography Focus","Minimal Design","GitHub Pages"],"card_description":"Dark, minimal blog focused on typography and generous whitespace.","category":"Blog","card_image":"/assets/images/themes/moonwalk-card.webp","theme_screenshots":["/assets/images/themes/moonwalk-screenshot.webp","/assets/images/themes/moonwalk-screenshot-2.webp","/assets/images/themes/moonwalk-screenshot-3.webp"],"demo_url":"https://abhinavs.github.io/moonwalk/","github_url":"https://github.com/abhinavs/moonwalk","author":"GitHub Community","github_author_name":"Abhinav Saxena","github_author_url":"https://github.com/abhinavs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2023-07-01","added_at":"2026-03-12","popular":false,"trending":true,"bestseller":false,"version":"0.5.0","license":"MIT","stars":1500,"forks":280,"features":["Dark minimal design","Typography-focused","Fast loading","soopr social sharing","Clean post layout"],"slug":"moonwalk","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/mundana","collection":"themes","next":{"path":"_themes/online-cv.md","relative_path":"_themes/online-cv.md","id":"/themes/online-cv","collection":"themes","url":"/themes/online-cv/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Online CV Jekyll Theme","description":"A one-page Jekyll CV and resume theme for creating a beautiful online portfolio. Minimal, readable design perfect for job seekers and freelancers.","key_features":["One-Page CV","GitHub Pages","Skills Section","Minimal Design"],"card_description":"One-page CV/resume theme for a beautiful online portfolio.","category":"Resume / CV","card_image":"/assets/images/themes/online-cv-card.webp","theme_screenshots":["/assets/images/themes/online-cv-screenshot.webp","/assets/images/themes/online-cv-screenshot-2.webp","/assets/images/themes/online-cv-screenshot-3.webp"],"demo_url":"https://sharu725.github.io/online-cv/","github_url":"https://github.com/sharu725/online-cv","author":"GitHub Community","github_author_name":"Sharath Kumar","github_author_url":"https://github.com/sharu725","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-15","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":2200,"forks":3800,"features":["Dark profile sidebar","Skills with progress bars","Experience timeline","Education section","Languages and interests","Print-friendly"],"slug":"online-cv","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Mundana is a modern, publication-style Jekyll theme from WowThemes.net. The homepage features a large hero post followed by a clean card grid β€” giving it the feel of a professional editorial site.\n\nCategory pages, author profiles, and newsletter signup sections are all built in, making it one of the most complete free blogging themes for Jekyll.\n\n**Who is it for?** Bloggers and content creators who want a professional editorial look without the complexity of a premium theme.\n","url":"/themes/mundana/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mundana Jekyll Theme","description":"A modern Jekyll theme for bloggers built with Bootstrap 4. Features featured posts, category pages, newsletter signup, and clean card layouts.","key_features":["Newsletter Signup","Featured Posts","Category Pages","GitHub Pages"],"card_description":"Modern Bootstrap 4 blog with featured posts and newsletter signup.","category":"Blog","card_image":"/assets/images/themes/mundana-card.webp","theme_screenshots":["/assets/images/themes/mundana-screenshot.webp","/assets/images/themes/mundana-screenshot-2.webp","/assets/images/themes/mundana-screenshot-3.webp"],"demo_url":"https://mundana.amitmerchant.com/","github_url":"https://github.com/wowthemesnet/mundana-theme-jekyll","author":"GitHub Community","github_author_name":"wowthemesnet","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-03-24","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":784,"forks":398,"features":["Bootstrap 4 powered","Featured hero post","Card-based post grid","Category archive pages","Newsletter signup section","Author profile pages","Related posts","Social sharing","Google Analytics","GitHub Pages compatible"],"slug":"mundana","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/online-cv","collection":"themes","next":{"path":"_themes/origin.md","relative_path":"_themes/origin.md","excerpt":"<p>Origin is a modern, fully featured Jekyll blog theme built for writers, developers, and content creators who want a polished, high-performance site without trade-offs.</p>\n\n","previous":{"path":"_themes/online-cv.md","relative_path":"_themes/online-cv.md","id":"/themes/online-cv","collection":"themes","url":"/themes/online-cv/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Online CV Jekyll Theme","description":"A one-page Jekyll CV and resume theme for creating a beautiful online portfolio. Minimal, readable design perfect for job seekers and freelancers.","key_features":["One-Page CV","GitHub Pages","Skills Section","Minimal Design"],"card_description":"One-page CV/resume theme for a beautiful online portfolio.","category":"Resume / CV","card_image":"/assets/images/themes/online-cv-card.webp","theme_screenshots":["/assets/images/themes/online-cv-screenshot.webp","/assets/images/themes/online-cv-screenshot-2.webp","/assets/images/themes/online-cv-screenshot-3.webp"],"demo_url":"https://sharu725.github.io/online-cv/","github_url":"https://github.com/sharu725/online-cv","author":"GitHub Community","github_author_name":"Sharath Kumar","github_author_url":"https://github.com/sharu725","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-15","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":2200,"forks":3800,"features":["Dark profile sidebar","Skills with progress bars","Experience timeline","Education section","Languages and interests","Print-friendly"],"slug":"online-cv","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/origin","collection":"themes","next":{"path":"_themes/phantom.md","relative_path":"_themes/phantom.md","id":"/themes/phantom","collection":"themes","url":"/themes/phantom/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Phantom Jekyll Theme","description":"A minimalist, responsive portfolio Jekyll theme with a project grid, modal image viewer, and subtle hover animations.","key_features":["Project Grid","Modal Viewer","Hover Animations","GitHub Pages"],"card_description":"Minimalist portfolio with project grid and modal image viewer.","category":"Portfolio","card_image":"/assets/images/themes/phantom-card.webp","theme_screenshots":["/assets/images/themes/phantom-screenshot.webp","/assets/images/themes/phantom-screenshot-2.webp","/assets/images/themes/phantom-screenshot-3.webp"],"demo_url":"https://jamigibbs.github.io/phantom/","github_url":"https://github.com/jamigibbs/phantom","author":"GitHub Community","github_author_name":"jamigibbs","github_author_url":"https://github.com/jamigibbs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-23","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":353,"forks":196,"features":["Project portfolio grid","Modal image lightbox","Hover animations","About page layout","Skills section","Contact form ready","Clean minimal design","GitHub Pages compatible","Mobile responsive","Custom colour scheme"],"slug":"phantom","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Origin is a modern, fully featured Jekyll blog theme built for writers, developers, and content creators who want a polished, high-performance site without trade-offs.\n\n### Why Origin Stands Out\n\nThe headline achievement is a perfect 100/100 Google Lighthouse score for both speed and SEO β€” achieved through minimal JavaScript (no jQuery), tiny CSS/JS bundles, and semantic HTML with auto-generated meta tags. Visitors get fast page loads; you get better search rankings by default.\n\n### Content Management\n\nAll content is managed through markdown files and YAML configuration β€” no hardcoded HTML to hunt down. Configure your logo, colour scheme, fonts, navigation menus, header, and footer entirely from `_config.yml`. The fully featured blog supports categories, named authors, Disqus comments, and paginated archive pages, giving your site professional editorial structure from day one.\n\n### Design & Customisation\n\nOrigin ships with SCSS + Bootstrap 5.2 for a responsive, mobile-first layout that looks polished on every screen size. Dark mode is built in with both automatic (system preference) and manual toggle options. The navigation supports nested dropdown menus and a responsive mobile overlay with an animated hamburger icon β€” no third-party libraries required.\n\n### Integrations\n\nOut of the box: Google Analytics, Mailchimp newsletter signup, Formspree and Netlify Forms for contact, Disqus comments, Google Fonts, Font Awesome 6, and Open Graph / Twitter card metadata. Ready to deploy to GitHub Pages or Netlify with a `netlify.toml` already included.\n\n**Who is it for?** Writers and developers who want a beautiful, fast, SEO-ready blog β€” without spending time on configuration or performance tuning.\n","url":"/themes/origin/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Origin Jekyll Theme","rating":4.8,"rating_count":42,"description":"A fully featured and highly configurable modern blog theme for Jekyll. Includes categories, authors, comments, pagination, dark mode, and a perfect 100/100 Google Lighthouse score.","card_description":"Modern blog theme with dark mode, authors, categories, and 100/100 Lighthouse.","price":49,"category":"Blog","card_image":"/assets/images/themes/origin-card.webp","theme_screenshots":["/assets/images/themes/origin-screenshot.webp","/assets/images/themes/origin-screenshot-2.webp","/assets/images/themes/origin-screenshot-3.webp"],"key_features":["Dark Mode","100 Lighthouse","Categories","Authors"],"demo_url":"https://jekyll-origin.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-origin/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ support","100% responsive design with crisp imagery and beautiful typography","Fully featured Blog with categories, authors, comments, and pagination","Dark mode with automatic and manual switching","100/100 Google Lighthouse speed and SEO scores","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, header, and footer in _config.yml","SCSS + Bootstrap 5.2, no jQuery, minimal vanilla JS","Auto-generated SEO meta tags with per-page overrides","Open Graph / Twitter card meta data included","Google Analytics support and social media links","Nested dropdown menus and responsive mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Mailchimp newsletter subscribe form","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation with setup and customisation guide"],"slug":"origin","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Online CV is a clean two-column resume theme with a dark sidebar for your profile photo and contact details, and a light content area for your experience, education, and skills.\n\nAll content is configured through `data/data.yml` β€” no HTML editing required.\n\n**Who is it for?** Job seekers and professionals who want a clean, printable online resume hosted on GitHub Pages.\n","url":"/themes/online-cv/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Online CV Jekyll Theme","description":"A one-page Jekyll CV and resume theme for creating a beautiful online portfolio. Minimal, readable design perfect for job seekers and freelancers.","key_features":["One-Page CV","GitHub Pages","Skills Section","Minimal Design"],"card_description":"One-page CV/resume theme for a beautiful online portfolio.","category":"Resume / CV","card_image":"/assets/images/themes/online-cv-card.webp","theme_screenshots":["/assets/images/themes/online-cv-screenshot.webp","/assets/images/themes/online-cv-screenshot-2.webp","/assets/images/themes/online-cv-screenshot-3.webp"],"demo_url":"https://sharu725.github.io/online-cv/","github_url":"https://github.com/sharu725/online-cv","author":"GitHub Community","github_author_name":"Sharath Kumar","github_author_url":"https://github.com/sharu725","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-15","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":2200,"forks":3800,"features":["Dark profile sidebar","Skills with progress bars","Experience timeline","Education section","Languages and interests","Print-friendly"],"slug":"online-cv","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/origin.md","relative_path":"_themes/origin.md","excerpt":"<p>Origin is a modern, fully featured Jekyll blog theme built for writers, developers, and content creators who want a polished, high-performance site without trade-offs.</p>\n\n","previous":{"path":"_themes/online-cv.md","relative_path":"_themes/online-cv.md","excerpt":"<p>Online CV is a clean two-column resume theme with a dark sidebar for your profile photo and contact details, and a light content area for your experience, education, and skills.</p>\n\n","previous":{"path":"_themes/mundana.md","relative_path":"_themes/mundana.md","id":"/themes/mundana","collection":"themes","url":"/themes/mundana/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Mundana Jekyll Theme","description":"A modern Jekyll theme for bloggers built with Bootstrap 4. Features featured posts, category pages, newsletter signup, and clean card layouts.","key_features":["Newsletter Signup","Featured Posts","Category Pages","GitHub Pages"],"card_description":"Modern Bootstrap 4 blog with featured posts and newsletter signup.","category":"Blog","card_image":"/assets/images/themes/mundana-card.webp","theme_screenshots":["/assets/images/themes/mundana-screenshot.webp","/assets/images/themes/mundana-screenshot-2.webp","/assets/images/themes/mundana-screenshot-3.webp"],"demo_url":"https://mundana.amitmerchant.com/","github_url":"https://github.com/wowthemesnet/mundana-theme-jekyll","author":"GitHub Community","github_author_name":"wowthemesnet","github_author_url":"https://github.com/wowthemesnet","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap"],"updated_at":"2024-03-24","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":784,"forks":398,"features":["Bootstrap 4 powered","Featured hero post","Card-based post grid","Category archive pages","Newsletter signup section","Author profile pages","Related posts","Social sharing","Google Analytics","GitHub Pages compatible"],"slug":"mundana","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/online-cv","collection":"themes","next":{"path":"_themes/origin.md","relative_path":"_themes/origin.md","id":"/themes/origin","collection":"themes","url":"/themes/origin/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Origin Jekyll Theme","rating":4.8,"rating_count":42,"description":"A fully featured and highly configurable modern blog theme for Jekyll. Includes categories, authors, comments, pagination, dark mode, and a perfect 100/100 Google Lighthouse score.","card_description":"Modern blog theme with dark mode, authors, categories, and 100/100 Lighthouse.","price":49,"category":"Blog","card_image":"/assets/images/themes/origin-card.webp","theme_screenshots":["/assets/images/themes/origin-screenshot.webp","/assets/images/themes/origin-screenshot-2.webp","/assets/images/themes/origin-screenshot-3.webp"],"key_features":["Dark Mode","100 Lighthouse","Categories","Authors"],"demo_url":"https://jekyll-origin.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-origin/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ support","100% responsive design with crisp imagery and beautiful typography","Fully featured Blog with categories, authors, comments, and pagination","Dark mode with automatic and manual switching","100/100 Google Lighthouse speed and SEO scores","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, header, and footer in _config.yml","SCSS + Bootstrap 5.2, no jQuery, minimal vanilla JS","Auto-generated SEO meta tags with per-page overrides","Open Graph / Twitter card meta data included","Google Analytics support and social media links","Nested dropdown menus and responsive mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Mailchimp newsletter subscribe form","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation with setup and customisation guide"],"slug":"origin","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Online CV is a clean two-column resume theme with a dark sidebar for your profile photo and contact details, and a light content area for your experience, education, and skills.\n\nAll content is configured through `data/data.yml` β€” no HTML editing required.\n\n**Who is it for?** Job seekers and professionals who want a clean, printable online resume hosted on GitHub Pages.\n","url":"/themes/online-cv/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Online CV Jekyll Theme","description":"A one-page Jekyll CV and resume theme for creating a beautiful online portfolio. Minimal, readable design perfect for job seekers and freelancers.","key_features":["One-Page CV","GitHub Pages","Skills Section","Minimal Design"],"card_description":"One-page CV/resume theme for a beautiful online portfolio.","category":"Resume / CV","card_image":"/assets/images/themes/online-cv-card.webp","theme_screenshots":["/assets/images/themes/online-cv-screenshot.webp","/assets/images/themes/online-cv-screenshot-2.webp","/assets/images/themes/online-cv-screenshot-3.webp"],"demo_url":"https://sharu725.github.io/online-cv/","github_url":"https://github.com/sharu725/online-cv","author":"GitHub Community","github_author_name":"Sharath Kumar","github_author_url":"https://github.com/sharu725","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-15","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":2200,"forks":3800,"features":["Dark profile sidebar","Skills with progress bars","Experience timeline","Education section","Languages and interests","Print-friendly"],"slug":"online-cv","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/origin","collection":"themes","next":{"path":"_themes/phantom.md","relative_path":"_themes/phantom.md","excerpt":"<p>Phantom is a clean, minimal portfolio theme built for designers and developers who want to present their work with style. Projects are displayed in a responsive grid, with each item opening in a full modal lightbox on click.</p>\n\n","previous":{"path":"_themes/origin.md","relative_path":"_themes/origin.md","id":"/themes/origin","collection":"themes","url":"/themes/origin/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Origin Jekyll Theme","rating":4.8,"rating_count":42,"description":"A fully featured and highly configurable modern blog theme for Jekyll. Includes categories, authors, comments, pagination, dark mode, and a perfect 100/100 Google Lighthouse score.","card_description":"Modern blog theme with dark mode, authors, categories, and 100/100 Lighthouse.","price":49,"category":"Blog","card_image":"/assets/images/themes/origin-card.webp","theme_screenshots":["/assets/images/themes/origin-screenshot.webp","/assets/images/themes/origin-screenshot-2.webp","/assets/images/themes/origin-screenshot-3.webp"],"key_features":["Dark Mode","100 Lighthouse","Categories","Authors"],"demo_url":"https://jekyll-origin.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-origin/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ support","100% responsive design with crisp imagery and beautiful typography","Fully featured Blog with categories, authors, comments, and pagination","Dark mode with automatic and manual switching","100/100 Google Lighthouse speed and SEO scores","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, header, and footer in _config.yml","SCSS + Bootstrap 5.2, no jQuery, minimal vanilla JS","Auto-generated SEO meta tags with per-page overrides","Open Graph / Twitter card meta data included","Google Analytics support and social media links","Nested dropdown menus and responsive mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Mailchimp newsletter subscribe form","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation with setup and customisation guide"],"slug":"origin","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/phantom","collection":"themes","next":{"path":"_themes/pixyll.md","relative_path":"_themes/pixyll.md","id":"/themes/pixyll","collection":"themes","url":"/themes/pixyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Pixyll Jekyll Theme","description":"A simple, beautiful Jekyll theme that puts your content first. Mobile-first, fluidly responsive, and delightfully lightweight β€” built around great typography and generous whitespace.","key_features":["Mobile First","Clean Typography","GitHub Pages","Lightweight"],"card_description":"Simple, beautiful theme that puts content first with generous whitespace.","category":"Blog","card_image":"/assets/images/themes/pixyll-card.webp","theme_screenshots":["/assets/images/themes/pixyll-screenshot.webp","/assets/images/themes/pixyll-screenshot-2.webp","/assets/images/themes/pixyll-screenshot-3.webp"],"demo_url":"https://pixyll.com/","github_url":"https://github.com/johno/pixyll","author":"GitHub Community","github_author_name":"johno","github_author_url":"https://github.com/johno","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"3.0.0","license":"MIT","stars":2000,"forks":700,"features":["Mobile-first responsive design","Beautiful typographic scale","Generous whitespace layout","Disqus comments","Google Analytics","Syntax highlighting","Paginated post listing","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"pixyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Phantom is a clean, minimal portfolio theme built for designers and developers who want to present their work with style. Projects are displayed in a responsive grid, with each item opening in a full modal lightbox on click.\n\nSubtle hover animations add polish without distracting from the work itself.\n\n**Who is it for?** Designers, illustrators, and developers who want a minimal portfolio with a lightbox-style project viewer.\n","url":"/themes/phantom/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Phantom Jekyll Theme","description":"A minimalist, responsive portfolio Jekyll theme with a project grid, modal image viewer, and subtle hover animations.","key_features":["Project Grid","Modal Viewer","Hover Animations","GitHub Pages"],"card_description":"Minimalist portfolio with project grid and modal image viewer.","category":"Portfolio","card_image":"/assets/images/themes/phantom-card.webp","theme_screenshots":["/assets/images/themes/phantom-screenshot.webp","/assets/images/themes/phantom-screenshot-2.webp","/assets/images/themes/phantom-screenshot-3.webp"],"demo_url":"https://jamigibbs.github.io/phantom/","github_url":"https://github.com/jamigibbs/phantom","author":"GitHub Community","github_author_name":"jamigibbs","github_author_url":"https://github.com/jamigibbs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-23","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":353,"forks":196,"features":["Project portfolio grid","Modal image lightbox","Hover animations","About page layout","Skills section","Contact form ready","Clean minimal design","GitHub Pages compatible","Mobile responsive","Custom colour scheme"],"slug":"phantom","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Origin is a modern, fully featured Jekyll blog theme built for writers, developers, and content creators who want a polished, high-performance site without trade-offs.\n\n### Why Origin Stands Out\n\nThe headline achievement is a perfect 100/100 Google Lighthouse score for both speed and SEO β€” achieved through minimal JavaScript (no jQuery), tiny CSS/JS bundles, and semantic HTML with auto-generated meta tags. Visitors get fast page loads; you get better search rankings by default.\n\n### Content Management\n\nAll content is managed through markdown files and YAML configuration β€” no hardcoded HTML to hunt down. Configure your logo, colour scheme, fonts, navigation menus, header, and footer entirely from `_config.yml`. The fully featured blog supports categories, named authors, Disqus comments, and paginated archive pages, giving your site professional editorial structure from day one.\n\n### Design & Customisation\n\nOrigin ships with SCSS + Bootstrap 5.2 for a responsive, mobile-first layout that looks polished on every screen size. Dark mode is built in with both automatic (system preference) and manual toggle options. The navigation supports nested dropdown menus and a responsive mobile overlay with an animated hamburger icon β€” no third-party libraries required.\n\n### Integrations\n\nOut of the box: Google Analytics, Mailchimp newsletter signup, Formspree and Netlify Forms for contact, Disqus comments, Google Fonts, Font Awesome 6, and Open Graph / Twitter card metadata. Ready to deploy to GitHub Pages or Netlify with a `netlify.toml` already included.\n\n**Who is it for?** Writers and developers who want a beautiful, fast, SEO-ready blog β€” without spending time on configuration or performance tuning.\n","url":"/themes/origin/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Origin Jekyll Theme","rating":4.8,"rating_count":42,"description":"A fully featured and highly configurable modern blog theme for Jekyll. Includes categories, authors, comments, pagination, dark mode, and a perfect 100/100 Google Lighthouse score.","card_description":"Modern blog theme with dark mode, authors, categories, and 100/100 Lighthouse.","price":49,"category":"Blog","card_image":"/assets/images/themes/origin-card.webp","theme_screenshots":["/assets/images/themes/origin-screenshot.webp","/assets/images/themes/origin-screenshot-2.webp","/assets/images/themes/origin-screenshot-3.webp"],"key_features":["Dark Mode","100 Lighthouse","Categories","Authors"],"demo_url":"https://jekyll-origin.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-origin/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ support","100% responsive design with crisp imagery and beautiful typography","Fully featured Blog with categories, authors, comments, and pagination","Dark mode with automatic and manual switching","100/100 Google Lighthouse speed and SEO scores","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, header, and footer in _config.yml","SCSS + Bootstrap 5.2, no jQuery, minimal vanilla JS","Auto-generated SEO meta tags with per-page overrides","Open Graph / Twitter card meta data included","Google Analytics support and social media links","Nested dropdown menus and responsive mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Mailchimp newsletter subscribe form","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation with setup and customisation guide"],"slug":"origin","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/phantom.md","relative_path":"_themes/phantom.md","excerpt":"<p>Phantom is a clean, minimal portfolio theme built for designers and developers who want to present their work with style. Projects are displayed in a responsive grid, with each item opening in a full modal lightbox on click.</p>\n\n","previous":{"path":"_themes/origin.md","relative_path":"_themes/origin.md","excerpt":"<p>Origin is a modern, fully featured Jekyll blog theme built for writers, developers, and content creators who want a polished, high-performance site without trade-offs.</p>\n\n","previous":{"path":"_themes/online-cv.md","relative_path":"_themes/online-cv.md","id":"/themes/online-cv","collection":"themes","url":"/themes/online-cv/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Online CV Jekyll Theme","description":"A one-page Jekyll CV and resume theme for creating a beautiful online portfolio. Minimal, readable design perfect for job seekers and freelancers.","key_features":["One-Page CV","GitHub Pages","Skills Section","Minimal Design"],"card_description":"One-page CV/resume theme for a beautiful online portfolio.","category":"Resume / CV","card_image":"/assets/images/themes/online-cv-card.webp","theme_screenshots":["/assets/images/themes/online-cv-screenshot.webp","/assets/images/themes/online-cv-screenshot-2.webp","/assets/images/themes/online-cv-screenshot-3.webp"],"demo_url":"https://sharu725.github.io/online-cv/","github_url":"https://github.com/sharu725/online-cv","author":"GitHub Community","github_author_name":"Sharath Kumar","github_author_url":"https://github.com/sharu725","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-05-01","added_at":"2026-03-15","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":2200,"forks":3800,"features":["Dark profile sidebar","Skills with progress bars","Experience timeline","Education section","Languages and interests","Print-friendly"],"slug":"online-cv","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/origin","collection":"themes","next":{"path":"_themes/phantom.md","relative_path":"_themes/phantom.md","id":"/themes/phantom","collection":"themes","url":"/themes/phantom/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Phantom Jekyll Theme","description":"A minimalist, responsive portfolio Jekyll theme with a project grid, modal image viewer, and subtle hover animations.","key_features":["Project Grid","Modal Viewer","Hover Animations","GitHub Pages"],"card_description":"Minimalist portfolio with project grid and modal image viewer.","category":"Portfolio","card_image":"/assets/images/themes/phantom-card.webp","theme_screenshots":["/assets/images/themes/phantom-screenshot.webp","/assets/images/themes/phantom-screenshot-2.webp","/assets/images/themes/phantom-screenshot-3.webp"],"demo_url":"https://jamigibbs.github.io/phantom/","github_url":"https://github.com/jamigibbs/phantom","author":"GitHub Community","github_author_name":"jamigibbs","github_author_url":"https://github.com/jamigibbs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-23","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":353,"forks":196,"features":["Project portfolio grid","Modal image lightbox","Hover animations","About page layout","Skills section","Contact form ready","Clean minimal design","GitHub Pages compatible","Mobile responsive","Custom colour scheme"],"slug":"phantom","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Origin is a modern, fully featured Jekyll blog theme built for writers, developers, and content creators who want a polished, high-performance site without trade-offs.\n\n### Why Origin Stands Out\n\nThe headline achievement is a perfect 100/100 Google Lighthouse score for both speed and SEO β€” achieved through minimal JavaScript (no jQuery), tiny CSS/JS bundles, and semantic HTML with auto-generated meta tags. Visitors get fast page loads; you get better search rankings by default.\n\n### Content Management\n\nAll content is managed through markdown files and YAML configuration β€” no hardcoded HTML to hunt down. Configure your logo, colour scheme, fonts, navigation menus, header, and footer entirely from `_config.yml`. The fully featured blog supports categories, named authors, Disqus comments, and paginated archive pages, giving your site professional editorial structure from day one.\n\n### Design & Customisation\n\nOrigin ships with SCSS + Bootstrap 5.2 for a responsive, mobile-first layout that looks polished on every screen size. Dark mode is built in with both automatic (system preference) and manual toggle options. The navigation supports nested dropdown menus and a responsive mobile overlay with an animated hamburger icon β€” no third-party libraries required.\n\n### Integrations\n\nOut of the box: Google Analytics, Mailchimp newsletter signup, Formspree and Netlify Forms for contact, Disqus comments, Google Fonts, Font Awesome 6, and Open Graph / Twitter card metadata. Ready to deploy to GitHub Pages or Netlify with a `netlify.toml` already included.\n\n**Who is it for?** Writers and developers who want a beautiful, fast, SEO-ready blog β€” without spending time on configuration or performance tuning.\n","url":"/themes/origin/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Origin Jekyll Theme","rating":4.8,"rating_count":42,"description":"A fully featured and highly configurable modern blog theme for Jekyll. Includes categories, authors, comments, pagination, dark mode, and a perfect 100/100 Google Lighthouse score.","card_description":"Modern blog theme with dark mode, authors, categories, and 100/100 Lighthouse.","price":49,"category":"Blog","card_image":"/assets/images/themes/origin-card.webp","theme_screenshots":["/assets/images/themes/origin-screenshot.webp","/assets/images/themes/origin-screenshot-2.webp","/assets/images/themes/origin-screenshot-3.webp"],"key_features":["Dark Mode","100 Lighthouse","Categories","Authors"],"demo_url":"https://jekyll-origin.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-origin/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ support","100% responsive design with crisp imagery and beautiful typography","Fully featured Blog with categories, authors, comments, and pagination","Dark mode with automatic and manual switching","100/100 Google Lighthouse speed and SEO scores","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, header, and footer in _config.yml","SCSS + Bootstrap 5.2, no jQuery, minimal vanilla JS","Auto-generated SEO meta tags with per-page overrides","Open Graph / Twitter card meta data included","Google Analytics support and social media links","Nested dropdown menus and responsive mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Mailchimp newsletter subscribe form","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation with setup and customisation guide"],"slug":"origin","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/phantom","collection":"themes","next":{"path":"_themes/pixyll.md","relative_path":"_themes/pixyll.md","excerpt":"<p>Pixyll is the minimalist’s Jekyll theme. Created by John Otander, it strips away every non-essential element and focuses entirely on making text beautiful. The result is a theme that feels effortless to read β€” wide margins, comfortable line height, and a typographic hierarchy that works at every screen size.</p>\n\n","previous":{"path":"_themes/phantom.md","relative_path":"_themes/phantom.md","id":"/themes/phantom","collection":"themes","url":"/themes/phantom/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Phantom Jekyll Theme","description":"A minimalist, responsive portfolio Jekyll theme with a project grid, modal image viewer, and subtle hover animations.","key_features":["Project Grid","Modal Viewer","Hover Animations","GitHub Pages"],"card_description":"Minimalist portfolio with project grid and modal image viewer.","category":"Portfolio","card_image":"/assets/images/themes/phantom-card.webp","theme_screenshots":["/assets/images/themes/phantom-screenshot.webp","/assets/images/themes/phantom-screenshot-2.webp","/assets/images/themes/phantom-screenshot-3.webp"],"demo_url":"https://jamigibbs.github.io/phantom/","github_url":"https://github.com/jamigibbs/phantom","author":"GitHub Community","github_author_name":"jamigibbs","github_author_url":"https://github.com/jamigibbs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-23","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":353,"forks":196,"features":["Project portfolio grid","Modal image lightbox","Hover animations","About page layout","Skills section","Contact form ready","Clean minimal design","GitHub Pages compatible","Mobile responsive","Custom colour scheme"],"slug":"phantom","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/pixyll","collection":"themes","next":{"path":"_themes/primer.md","relative_path":"_themes/primer.md","id":"/themes/primer","collection":"themes","url":"/themes/primer/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Primer Jekyll Theme","description":"The official GitHub Pages primer Jekyll theme. Clean, GitHub-style design with great readability β€” perfect for documentation and project pages.","key_features":["GitHub Style","GitHub Pages","Clean Readability","Project Docs"],"card_description":"Official GitHub Pages primer theme β€” clean GitHub-style for docs.","category":"Documentation","card_image":"/assets/images/themes/primer-card.webp","theme_screenshots":["/assets/images/themes/primer-screenshot.webp","/assets/images/themes/primer-screenshot-2.webp","/assets/images/themes/primer-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/primer/","github_url":"https://github.com/pages-themes/primer","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Built on GitHub Primer CSS design system","Clean neutral layout","Instantly readable typography","Single-line enable via _config.yml","Responsive layout","No local Jekyll install needed","Familiar GitHub aesthetic"],"slug":"primer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Pixyll is the minimalist's Jekyll theme. Created by John Otander, it strips away every non-essential element and focuses entirely on making text beautiful. The result is a theme that feels effortless to read β€” wide margins, comfortable line height, and a typographic hierarchy that works at every screen size.\n\nThe mobile-first approach means it looks just as good on a phone as a widescreen monitor. And because it carries so little visual weight, pages load instantly.\n\n**Who is it for?** Writers, essayists, and developers who believe design should get out of the way and let the words do the work.\n","url":"/themes/pixyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Pixyll Jekyll Theme","description":"A simple, beautiful Jekyll theme that puts your content first. Mobile-first, fluidly responsive, and delightfully lightweight β€” built around great typography and generous whitespace.","key_features":["Mobile First","Clean Typography","GitHub Pages","Lightweight"],"card_description":"Simple, beautiful theme that puts content first with generous whitespace.","category":"Blog","card_image":"/assets/images/themes/pixyll-card.webp","theme_screenshots":["/assets/images/themes/pixyll-screenshot.webp","/assets/images/themes/pixyll-screenshot-2.webp","/assets/images/themes/pixyll-screenshot-3.webp"],"demo_url":"https://pixyll.com/","github_url":"https://github.com/johno/pixyll","author":"GitHub Community","github_author_name":"johno","github_author_url":"https://github.com/johno","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"3.0.0","license":"MIT","stars":2000,"forks":700,"features":["Mobile-first responsive design","Beautiful typographic scale","Generous whitespace layout","Disqus comments","Google Analytics","Syntax highlighting","Paginated post listing","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"pixyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Phantom is a clean, minimal portfolio theme built for designers and developers who want to present their work with style. Projects are displayed in a responsive grid, with each item opening in a full modal lightbox on click.\n\nSubtle hover animations add polish without distracting from the work itself.\n\n**Who is it for?** Designers, illustrators, and developers who want a minimal portfolio with a lightbox-style project viewer.\n","url":"/themes/phantom/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Phantom Jekyll Theme","description":"A minimalist, responsive portfolio Jekyll theme with a project grid, modal image viewer, and subtle hover animations.","key_features":["Project Grid","Modal Viewer","Hover Animations","GitHub Pages"],"card_description":"Minimalist portfolio with project grid and modal image viewer.","category":"Portfolio","card_image":"/assets/images/themes/phantom-card.webp","theme_screenshots":["/assets/images/themes/phantom-screenshot.webp","/assets/images/themes/phantom-screenshot-2.webp","/assets/images/themes/phantom-screenshot-3.webp"],"demo_url":"https://jamigibbs.github.io/phantom/","github_url":"https://github.com/jamigibbs/phantom","author":"GitHub Community","github_author_name":"jamigibbs","github_author_url":"https://github.com/jamigibbs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-23","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":353,"forks":196,"features":["Project portfolio grid","Modal image lightbox","Hover animations","About page layout","Skills section","Contact form ready","Clean minimal design","GitHub Pages compatible","Mobile responsive","Custom colour scheme"],"slug":"phantom","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/pixyll.md","relative_path":"_themes/pixyll.md","excerpt":"<p>Pixyll is the minimalist’s Jekyll theme. Created by John Otander, it strips away every non-essential element and focuses entirely on making text beautiful. The result is a theme that feels effortless to read β€” wide margins, comfortable line height, and a typographic hierarchy that works at every screen size.</p>\n\n","previous":{"path":"_themes/phantom.md","relative_path":"_themes/phantom.md","excerpt":"<p>Phantom is a clean, minimal portfolio theme built for designers and developers who want to present their work with style. Projects are displayed in a responsive grid, with each item opening in a full modal lightbox on click.</p>\n\n","previous":{"path":"_themes/origin.md","relative_path":"_themes/origin.md","id":"/themes/origin","collection":"themes","url":"/themes/origin/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Origin Jekyll Theme","rating":4.8,"rating_count":42,"description":"A fully featured and highly configurable modern blog theme for Jekyll. Includes categories, authors, comments, pagination, dark mode, and a perfect 100/100 Google Lighthouse score.","card_description":"Modern blog theme with dark mode, authors, categories, and 100/100 Lighthouse.","price":49,"category":"Blog","card_image":"/assets/images/themes/origin-card.webp","theme_screenshots":["/assets/images/themes/origin-screenshot.webp","/assets/images/themes/origin-screenshot-2.webp","/assets/images/themes/origin-screenshot-3.webp"],"key_features":["Dark Mode","100 Lighthouse","Categories","Authors"],"demo_url":"https://jekyll-origin.netlify.app/","buy_url":"https://www.zerostatic.io/theme/jekyll-origin/","author":"Zerostatic","author_url":"https://www.zerostatic.io/","github_author_name":"Zerostatic","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.2","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2025-04-01","added_at":"2026-06-27","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"Commercial","features":["Jekyll 4.2+ support","100% responsive design with crisp imagery and beautiful typography","Fully featured Blog with categories, authors, comments, and pagination","Dark mode with automatic and manual switching","100/100 Google Lighthouse speed and SEO scores","All content editable via markdown, front-matter, or YAML β€” nothing hardcoded","Configure logo, colours, fonts, menus, header, and footer in _config.yml","SCSS + Bootstrap 5.2, no jQuery, minimal vanilla JS","Auto-generated SEO meta tags with per-page overrides","Open Graph / Twitter card meta data included","Google Analytics support and social media links","Nested dropdown menus and responsive mobile hamburger menu","Contact page with Netlify Forms and Formspree support","Disqus comments integration","Mailchimp newsletter subscribe form","Google Fonts and Font Awesome 6 icons","Works with GitHub Pages and Netlify (includes netlify.toml)","All photos, illustrations, and icons included are royalty free","Full documentation with setup and customisation guide"],"slug":"origin","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/phantom","collection":"themes","next":{"path":"_themes/pixyll.md","relative_path":"_themes/pixyll.md","id":"/themes/pixyll","collection":"themes","url":"/themes/pixyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Pixyll Jekyll Theme","description":"A simple, beautiful Jekyll theme that puts your content first. Mobile-first, fluidly responsive, and delightfully lightweight β€” built around great typography and generous whitespace.","key_features":["Mobile First","Clean Typography","GitHub Pages","Lightweight"],"card_description":"Simple, beautiful theme that puts content first with generous whitespace.","category":"Blog","card_image":"/assets/images/themes/pixyll-card.webp","theme_screenshots":["/assets/images/themes/pixyll-screenshot.webp","/assets/images/themes/pixyll-screenshot-2.webp","/assets/images/themes/pixyll-screenshot-3.webp"],"demo_url":"https://pixyll.com/","github_url":"https://github.com/johno/pixyll","author":"GitHub Community","github_author_name":"johno","github_author_url":"https://github.com/johno","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"3.0.0","license":"MIT","stars":2000,"forks":700,"features":["Mobile-first responsive design","Beautiful typographic scale","Generous whitespace layout","Disqus comments","Google Analytics","Syntax highlighting","Paginated post listing","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"pixyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Phantom is a clean, minimal portfolio theme built for designers and developers who want to present their work with style. Projects are displayed in a responsive grid, with each item opening in a full modal lightbox on click.\n\nSubtle hover animations add polish without distracting from the work itself.\n\n**Who is it for?** Designers, illustrators, and developers who want a minimal portfolio with a lightbox-style project viewer.\n","url":"/themes/phantom/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Phantom Jekyll Theme","description":"A minimalist, responsive portfolio Jekyll theme with a project grid, modal image viewer, and subtle hover animations.","key_features":["Project Grid","Modal Viewer","Hover Animations","GitHub Pages"],"card_description":"Minimalist portfolio with project grid and modal image viewer.","category":"Portfolio","card_image":"/assets/images/themes/phantom-card.webp","theme_screenshots":["/assets/images/themes/phantom-screenshot.webp","/assets/images/themes/phantom-screenshot-2.webp","/assets/images/themes/phantom-screenshot-3.webp"],"demo_url":"https://jamigibbs.github.io/phantom/","github_url":"https://github.com/jamigibbs/phantom","author":"GitHub Community","github_author_name":"jamigibbs","github_author_url":"https://github.com/jamigibbs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-23","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":353,"forks":196,"features":["Project portfolio grid","Modal image lightbox","Hover animations","About page layout","Skills section","Contact form ready","Clean minimal design","GitHub Pages compatible","Mobile responsive","Custom colour scheme"],"slug":"phantom","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/pixyll","collection":"themes","next":{"path":"_themes/primer.md","relative_path":"_themes/primer.md","excerpt":"<p>Primer is the official GitHub Pages theme built on GitHub’s own design system β€” the same CSS framework that powers GitHub.com. The result is a site that feels immediately familiar and credible to developers: clean, neutral, readable, and professional without being flashy.</p>\n\n","previous":{"path":"_themes/pixyll.md","relative_path":"_themes/pixyll.md","id":"/themes/pixyll","collection":"themes","url":"/themes/pixyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Pixyll Jekyll Theme","description":"A simple, beautiful Jekyll theme that puts your content first. Mobile-first, fluidly responsive, and delightfully lightweight β€” built around great typography and generous whitespace.","key_features":["Mobile First","Clean Typography","GitHub Pages","Lightweight"],"card_description":"Simple, beautiful theme that puts content first with generous whitespace.","category":"Blog","card_image":"/assets/images/themes/pixyll-card.webp","theme_screenshots":["/assets/images/themes/pixyll-screenshot.webp","/assets/images/themes/pixyll-screenshot-2.webp","/assets/images/themes/pixyll-screenshot-3.webp"],"demo_url":"https://pixyll.com/","github_url":"https://github.com/johno/pixyll","author":"GitHub Community","github_author_name":"johno","github_author_url":"https://github.com/johno","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"3.0.0","license":"MIT","stars":2000,"forks":700,"features":["Mobile-first responsive design","Beautiful typographic scale","Generous whitespace layout","Disqus comments","Google Analytics","Syntax highlighting","Paginated post listing","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"pixyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/primer","collection":"themes","next":{"path":"_themes/researcher.md","relative_path":"_themes/researcher.md","id":"/themes/researcher","collection":"themes","url":"/themes/researcher/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Researcher Jekyll Theme","description":"A minimal, clean Jekyll theme for a single-page academic CV. Presents your education, experience, publications, and skills in a clear, professional layout that loads instantly.","key_features":["Single-Page CV","Academic Layout","GitHub Pages","Fast Loading"],"card_description":"Minimal single-page academic CV with a clean, professional layout.","category":"Resume / CV","card_image":"/assets/images/themes/researcher-card.webp","theme_screenshots":["/assets/images/themes/researcher-screenshot.webp","/assets/images/themes/researcher-screenshot-2.webp","/assets/images/themes/researcher-screenshot-3.webp"],"demo_url":"https://ankitsultana.com/researcher/","github_url":"https://github.com/ankitsultana/researcher","author":"GitHub Community","github_author_name":"ankitsultana","github_author_url":"https://github.com/ankitsultana","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":500,"forks":400,"features":["Single-page CV layout","Education and experience sections","Publications listing","Skills and interests display","Clean monospace typography","Social and contact links","Minimal CSS footprint","Fast page load","GitHub Pages compatible","Easy YAML configuration"],"slug":"researcher","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Primer is the official GitHub Pages theme built on GitHub's own design system β€” the same CSS framework that powers GitHub.com. The result is a site that feels immediately familiar and credible to developers: clean, neutral, readable, and professional without being flashy.\n\nFor open-source projects that want their documentation site to feel like a natural extension of GitHub itself, Primer is the natural choice. Its single-line setup makes it one of the easiest ways to put a well-designed page on GitHub Pages.\n\n**Who is it for?** Open-source maintainers and developers who want documentation that looks authoritative and professional, with the familiar GitHub design language users already trust.\n","url":"/themes/primer/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Primer Jekyll Theme","description":"The official GitHub Pages primer Jekyll theme. Clean, GitHub-style design with great readability β€” perfect for documentation and project pages.","key_features":["GitHub Style","GitHub Pages","Clean Readability","Project Docs"],"card_description":"Official GitHub Pages primer theme β€” clean GitHub-style for docs.","category":"Documentation","card_image":"/assets/images/themes/primer-card.webp","theme_screenshots":["/assets/images/themes/primer-screenshot.webp","/assets/images/themes/primer-screenshot-2.webp","/assets/images/themes/primer-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/primer/","github_url":"https://github.com/pages-themes/primer","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Built on GitHub Primer CSS design system","Clean neutral layout","Instantly readable typography","Single-line enable via _config.yml","Responsive layout","No local Jekyll install needed","Familiar GitHub aesthetic"],"slug":"primer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Pixyll is the minimalist's Jekyll theme. Created by John Otander, it strips away every non-essential element and focuses entirely on making text beautiful. The result is a theme that feels effortless to read β€” wide margins, comfortable line height, and a typographic hierarchy that works at every screen size.\n\nThe mobile-first approach means it looks just as good on a phone as a widescreen monitor. And because it carries so little visual weight, pages load instantly.\n\n**Who is it for?** Writers, essayists, and developers who believe design should get out of the way and let the words do the work.\n","url":"/themes/pixyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Pixyll Jekyll Theme","description":"A simple, beautiful Jekyll theme that puts your content first. Mobile-first, fluidly responsive, and delightfully lightweight β€” built around great typography and generous whitespace.","key_features":["Mobile First","Clean Typography","GitHub Pages","Lightweight"],"card_description":"Simple, beautiful theme that puts content first with generous whitespace.","category":"Blog","card_image":"/assets/images/themes/pixyll-card.webp","theme_screenshots":["/assets/images/themes/pixyll-screenshot.webp","/assets/images/themes/pixyll-screenshot-2.webp","/assets/images/themes/pixyll-screenshot-3.webp"],"demo_url":"https://pixyll.com/","github_url":"https://github.com/johno/pixyll","author":"GitHub Community","github_author_name":"johno","github_author_url":"https://github.com/johno","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"3.0.0","license":"MIT","stars":2000,"forks":700,"features":["Mobile-first responsive design","Beautiful typographic scale","Generous whitespace layout","Disqus comments","Google Analytics","Syntax highlighting","Paginated post listing","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"pixyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/primer.md","relative_path":"_themes/primer.md","excerpt":"<p>Primer is the official GitHub Pages theme built on GitHub’s own design system β€” the same CSS framework that powers GitHub.com. The result is a site that feels immediately familiar and credible to developers: clean, neutral, readable, and professional without being flashy.</p>\n\n","previous":{"path":"_themes/pixyll.md","relative_path":"_themes/pixyll.md","excerpt":"<p>Pixyll is the minimalist’s Jekyll theme. Created by John Otander, it strips away every non-essential element and focuses entirely on making text beautiful. The result is a theme that feels effortless to read β€” wide margins, comfortable line height, and a typographic hierarchy that works at every screen size.</p>\n\n","previous":{"path":"_themes/phantom.md","relative_path":"_themes/phantom.md","id":"/themes/phantom","collection":"themes","url":"/themes/phantom/","draft":false,"categories":["Portfolio"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Phantom Jekyll Theme","description":"A minimalist, responsive portfolio Jekyll theme with a project grid, modal image viewer, and subtle hover animations.","key_features":["Project Grid","Modal Viewer","Hover Animations","GitHub Pages"],"card_description":"Minimalist portfolio with project grid and modal image viewer.","category":"Portfolio","card_image":"/assets/images/themes/phantom-card.webp","theme_screenshots":["/assets/images/themes/phantom-screenshot.webp","/assets/images/themes/phantom-screenshot-2.webp","/assets/images/themes/phantom-screenshot-3.webp"],"demo_url":"https://jamigibbs.github.io/phantom/","github_url":"https://github.com/jamigibbs/phantom","author":"GitHub Community","github_author_name":"jamigibbs","github_author_url":"https://github.com/jamigibbs","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed"],"updated_at":"2024-07-23","added_at":"2026-04-01","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":353,"forks":196,"features":["Project portfolio grid","Modal image lightbox","Hover animations","About page layout","Skills section","Contact form ready","Clean minimal design","GitHub Pages compatible","Mobile responsive","Custom colour scheme"],"slug":"phantom","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/pixyll","collection":"themes","next":{"path":"_themes/primer.md","relative_path":"_themes/primer.md","id":"/themes/primer","collection":"themes","url":"/themes/primer/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Primer Jekyll Theme","description":"The official GitHub Pages primer Jekyll theme. Clean, GitHub-style design with great readability β€” perfect for documentation and project pages.","key_features":["GitHub Style","GitHub Pages","Clean Readability","Project Docs"],"card_description":"Official GitHub Pages primer theme β€” clean GitHub-style for docs.","category":"Documentation","card_image":"/assets/images/themes/primer-card.webp","theme_screenshots":["/assets/images/themes/primer-screenshot.webp","/assets/images/themes/primer-screenshot-2.webp","/assets/images/themes/primer-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/primer/","github_url":"https://github.com/pages-themes/primer","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Built on GitHub Primer CSS design system","Clean neutral layout","Instantly readable typography","Single-line enable via _config.yml","Responsive layout","No local Jekyll install needed","Familiar GitHub aesthetic"],"slug":"primer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Pixyll is the minimalist's Jekyll theme. Created by John Otander, it strips away every non-essential element and focuses entirely on making text beautiful. The result is a theme that feels effortless to read β€” wide margins, comfortable line height, and a typographic hierarchy that works at every screen size.\n\nThe mobile-first approach means it looks just as good on a phone as a widescreen monitor. And because it carries so little visual weight, pages load instantly.\n\n**Who is it for?** Writers, essayists, and developers who believe design should get out of the way and let the words do the work.\n","url":"/themes/pixyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Pixyll Jekyll Theme","description":"A simple, beautiful Jekyll theme that puts your content first. Mobile-first, fluidly responsive, and delightfully lightweight β€” built around great typography and generous whitespace.","key_features":["Mobile First","Clean Typography","GitHub Pages","Lightweight"],"card_description":"Simple, beautiful theme that puts content first with generous whitespace.","category":"Blog","card_image":"/assets/images/themes/pixyll-card.webp","theme_screenshots":["/assets/images/themes/pixyll-screenshot.webp","/assets/images/themes/pixyll-screenshot-2.webp","/assets/images/themes/pixyll-screenshot-3.webp"],"demo_url":"https://pixyll.com/","github_url":"https://github.com/johno/pixyll","author":"GitHub Community","github_author_name":"johno","github_author_url":"https://github.com/johno","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"3.0.0","license":"MIT","stars":2000,"forks":700,"features":["Mobile-first responsive design","Beautiful typographic scale","Generous whitespace layout","Disqus comments","Google Analytics","Syntax highlighting","Paginated post listing","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"pixyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/primer","collection":"themes","next":{"path":"_themes/researcher.md","relative_path":"_themes/researcher.md","excerpt":"<p>Researcher is the no-nonsense option for academics who want a clean, single-page CV on the web. Where Academic Pages gives you an entire multi-page website, Researcher keeps everything on one page β€” education, experience, publications, skills, and contact β€” in a clean, minimal layout that loads instantly and looks professional everywhere.</p>\n\n","previous":{"path":"_themes/primer.md","relative_path":"_themes/primer.md","id":"/themes/primer","collection":"themes","url":"/themes/primer/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Primer Jekyll Theme","description":"The official GitHub Pages primer Jekyll theme. Clean, GitHub-style design with great readability β€” perfect for documentation and project pages.","key_features":["GitHub Style","GitHub Pages","Clean Readability","Project Docs"],"card_description":"Official GitHub Pages primer theme β€” clean GitHub-style for docs.","category":"Documentation","card_image":"/assets/images/themes/primer-card.webp","theme_screenshots":["/assets/images/themes/primer-screenshot.webp","/assets/images/themes/primer-screenshot-2.webp","/assets/images/themes/primer-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/primer/","github_url":"https://github.com/pages-themes/primer","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Built on GitHub Primer CSS design system","Clean neutral layout","Instantly readable typography","Single-line enable via _config.yml","Responsive layout","No local Jekyll install needed","Familiar GitHub aesthetic"],"slug":"primer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/researcher","collection":"themes","next":{"path":"_themes/reverie.md","relative_path":"_themes/reverie.md","id":"/themes/reverie","collection":"themes","url":"/themes/reverie/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Reverie Jekyll Theme","description":"A ridiculously elegant, fully responsive Jekyll blog theme based on Poole. Supports categories, tags, Disqus comments, and Google Analytics.","key_features":["Category Pages","Tag Support","GitHub Pages","Disqus Comments"],"card_description":"Elegantly responsive blog based on Poole with categories and tags.","category":"Blog","card_image":"/assets/images/themes/reverie-card.webp","theme_screenshots":["/assets/images/themes/reverie-screenshot.webp","/assets/images/themes/reverie-screenshot-2.webp","/assets/images/themes/reverie-screenshot-3.webp"],"demo_url":"https://reverie.amitmerchant.com/","github_url":"https://github.com/amitmerchant1990/reverie","author":"GitHub Community","github_author_name":"amitmerchant1990","github_author_url":"https://github.com/amitmerchant1990","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-03-23","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":842,"forks":418,"features":["Elegant minimal layout","Category and tag pages","Disqus comments","Google Analytics","GitHub Pages compatible","Paginated archive","Social sharing buttons","SEO optimised","RSS feed","Mobile friendly"],"slug":"reverie","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Researcher is the no-nonsense option for academics who want a clean, single-page CV on the web. Where Academic Pages gives you an entire multi-page website, Researcher keeps everything on one page β€” education, experience, publications, skills, and contact β€” in a clean, minimal layout that loads instantly and looks professional everywhere.\n\nThe monospace typography gives it a subtle technical identity without being gimmicky, and the straightforward YAML configuration means you can have it set up and deployed in under an hour.\n\n**Who is it for?** Academics, researchers, and PhD students who want a simple, fast, single-page CV site without the complexity of a full academic website.\n","url":"/themes/researcher/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Researcher Jekyll Theme","description":"A minimal, clean Jekyll theme for a single-page academic CV. Presents your education, experience, publications, and skills in a clear, professional layout that loads instantly.","key_features":["Single-Page CV","Academic Layout","GitHub Pages","Fast Loading"],"card_description":"Minimal single-page academic CV with a clean, professional layout.","category":"Resume / CV","card_image":"/assets/images/themes/researcher-card.webp","theme_screenshots":["/assets/images/themes/researcher-screenshot.webp","/assets/images/themes/researcher-screenshot-2.webp","/assets/images/themes/researcher-screenshot-3.webp"],"demo_url":"https://ankitsultana.com/researcher/","github_url":"https://github.com/ankitsultana/researcher","author":"GitHub Community","github_author_name":"ankitsultana","github_author_url":"https://github.com/ankitsultana","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":500,"forks":400,"features":["Single-page CV layout","Education and experience sections","Publications listing","Skills and interests display","Clean monospace typography","Social and contact links","Minimal CSS footprint","Fast page load","GitHub Pages compatible","Easy YAML configuration"],"slug":"researcher","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Primer is the official GitHub Pages theme built on GitHub's own design system β€” the same CSS framework that powers GitHub.com. The result is a site that feels immediately familiar and credible to developers: clean, neutral, readable, and professional without being flashy.\n\nFor open-source projects that want their documentation site to feel like a natural extension of GitHub itself, Primer is the natural choice. Its single-line setup makes it one of the easiest ways to put a well-designed page on GitHub Pages.\n\n**Who is it for?** Open-source maintainers and developers who want documentation that looks authoritative and professional, with the familiar GitHub design language users already trust.\n","url":"/themes/primer/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Primer Jekyll Theme","description":"The official GitHub Pages primer Jekyll theme. Clean, GitHub-style design with great readability β€” perfect for documentation and project pages.","key_features":["GitHub Style","GitHub Pages","Clean Readability","Project Docs"],"card_description":"Official GitHub Pages primer theme β€” clean GitHub-style for docs.","category":"Documentation","card_image":"/assets/images/themes/primer-card.webp","theme_screenshots":["/assets/images/themes/primer-screenshot.webp","/assets/images/themes/primer-screenshot-2.webp","/assets/images/themes/primer-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/primer/","github_url":"https://github.com/pages-themes/primer","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Built on GitHub Primer CSS design system","Clean neutral layout","Instantly readable typography","Single-line enable via _config.yml","Responsive layout","No local Jekyll install needed","Familiar GitHub aesthetic"],"slug":"primer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/researcher.md","relative_path":"_themes/researcher.md","excerpt":"<p>Researcher is the no-nonsense option for academics who want a clean, single-page CV on the web. Where Academic Pages gives you an entire multi-page website, Researcher keeps everything on one page β€” education, experience, publications, skills, and contact β€” in a clean, minimal layout that loads instantly and looks professional everywhere.</p>\n\n","previous":{"path":"_themes/primer.md","relative_path":"_themes/primer.md","excerpt":"<p>Primer is the official GitHub Pages theme built on GitHub’s own design system β€” the same CSS framework that powers GitHub.com. The result is a site that feels immediately familiar and credible to developers: clean, neutral, readable, and professional without being flashy.</p>\n\n","previous":{"path":"_themes/pixyll.md","relative_path":"_themes/pixyll.md","id":"/themes/pixyll","collection":"themes","url":"/themes/pixyll/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Pixyll Jekyll Theme","description":"A simple, beautiful Jekyll theme that puts your content first. Mobile-first, fluidly responsive, and delightfully lightweight β€” built around great typography and generous whitespace.","key_features":["Mobile First","Clean Typography","GitHub Pages","Lightweight"],"card_description":"Simple, beautiful theme that puts content first with generous whitespace.","category":"Blog","card_image":"/assets/images/themes/pixyll-card.webp","theme_screenshots":["/assets/images/themes/pixyll-screenshot.webp","/assets/images/themes/pixyll-screenshot-2.webp","/assets/images/themes/pixyll-screenshot-3.webp"],"demo_url":"https://pixyll.com/","github_url":"https://github.com/johno/pixyll","author":"GitHub Community","github_author_name":"johno","github_author_url":"https://github.com/johno","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"3.0.0","license":"MIT","stars":2000,"forks":700,"features":["Mobile-first responsive design","Beautiful typographic scale","Generous whitespace layout","Disqus comments","Google Analytics","Syntax highlighting","Paginated post listing","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"pixyll","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/primer","collection":"themes","next":{"path":"_themes/researcher.md","relative_path":"_themes/researcher.md","id":"/themes/researcher","collection":"themes","url":"/themes/researcher/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Researcher Jekyll Theme","description":"A minimal, clean Jekyll theme for a single-page academic CV. Presents your education, experience, publications, and skills in a clear, professional layout that loads instantly.","key_features":["Single-Page CV","Academic Layout","GitHub Pages","Fast Loading"],"card_description":"Minimal single-page academic CV with a clean, professional layout.","category":"Resume / CV","card_image":"/assets/images/themes/researcher-card.webp","theme_screenshots":["/assets/images/themes/researcher-screenshot.webp","/assets/images/themes/researcher-screenshot-2.webp","/assets/images/themes/researcher-screenshot-3.webp"],"demo_url":"https://ankitsultana.com/researcher/","github_url":"https://github.com/ankitsultana/researcher","author":"GitHub Community","github_author_name":"ankitsultana","github_author_url":"https://github.com/ankitsultana","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":500,"forks":400,"features":["Single-page CV layout","Education and experience sections","Publications listing","Skills and interests display","Clean monospace typography","Social and contact links","Minimal CSS footprint","Fast page load","GitHub Pages compatible","Easy YAML configuration"],"slug":"researcher","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Primer is the official GitHub Pages theme built on GitHub's own design system β€” the same CSS framework that powers GitHub.com. The result is a site that feels immediately familiar and credible to developers: clean, neutral, readable, and professional without being flashy.\n\nFor open-source projects that want their documentation site to feel like a natural extension of GitHub itself, Primer is the natural choice. Its single-line setup makes it one of the easiest ways to put a well-designed page on GitHub Pages.\n\n**Who is it for?** Open-source maintainers and developers who want documentation that looks authoritative and professional, with the familiar GitHub design language users already trust.\n","url":"/themes/primer/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Primer Jekyll Theme","description":"The official GitHub Pages primer Jekyll theme. Clean, GitHub-style design with great readability β€” perfect for documentation and project pages.","key_features":["GitHub Style","GitHub Pages","Clean Readability","Project Docs"],"card_description":"Official GitHub Pages primer theme β€” clean GitHub-style for docs.","category":"Documentation","card_image":"/assets/images/themes/primer-card.webp","theme_screenshots":["/assets/images/themes/primer-screenshot.webp","/assets/images/themes/primer-screenshot-2.webp","/assets/images/themes/primer-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/primer/","github_url":"https://github.com/pages-themes/primer","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Built on GitHub Primer CSS design system","Clean neutral layout","Instantly readable typography","Single-line enable via _config.yml","Responsive layout","No local Jekyll install needed","Familiar GitHub aesthetic"],"slug":"primer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/researcher","collection":"themes","next":{"path":"_themes/reverie.md","relative_path":"_themes/reverie.md","excerpt":"<p>Reverie is a fork of the classic Poole theme, polished into an elegant blogging experience by Amit Merchant. It retains Poole’s clean, spacious feel while adding practical features like category/tag pages, Disqus integration, and pagination.</p>\n\n","previous":{"path":"_themes/researcher.md","relative_path":"_themes/researcher.md","id":"/themes/researcher","collection":"themes","url":"/themes/researcher/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Researcher Jekyll Theme","description":"A minimal, clean Jekyll theme for a single-page academic CV. Presents your education, experience, publications, and skills in a clear, professional layout that loads instantly.","key_features":["Single-Page CV","Academic Layout","GitHub Pages","Fast Loading"],"card_description":"Minimal single-page academic CV with a clean, professional layout.","category":"Resume / CV","card_image":"/assets/images/themes/researcher-card.webp","theme_screenshots":["/assets/images/themes/researcher-screenshot.webp","/assets/images/themes/researcher-screenshot-2.webp","/assets/images/themes/researcher-screenshot-3.webp"],"demo_url":"https://ankitsultana.com/researcher/","github_url":"https://github.com/ankitsultana/researcher","author":"GitHub Community","github_author_name":"ankitsultana","github_author_url":"https://github.com/ankitsultana","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":500,"forks":400,"features":["Single-page CV layout","Education and experience sections","Publications listing","Skills and interests display","Clean monospace typography","Social and contact links","Minimal CSS footprint","Fast page load","GitHub Pages compatible","Easy YAML configuration"],"slug":"researcher","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/reverie","collection":"themes","next":{"path":"_themes/sandbox.md","relative_path":"_themes/sandbox.md","id":"/themes/sandbox","collection":"themes","url":"/themes/sandbox/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Sandbox Jekyll Theme","rating":4.8,"rating_count":56,"description":"A massive multipurpose Jekyll theme with 27 home pages, 130+ ready-to-use blocks, and 250+ UI elements. Built with Bootstrap 5 and zero jQuery β€” perfect for startups, SaaS, agencies, portfolios, and eCommerce sites.","card_description":"Multipurpose theme β€” 27 homepages, 130+ blocks, 250+ UI elements, Bootstrap 5.","price":99,"category":"Business","card_image":"/assets/images/themes/sandbox-card.webp","theme_screenshots":["/assets/images/themes/sandbox-screenshot.webp","/assets/images/themes/sandbox-screenshot-2.webp","/assets/images/themes/sandbox-screenshot-3.webp"],"key_features":["27 Home Pages","130+ Blocks","No jQuery","Video Backgrounds"],"demo_url":"https://sandbox.tortoizthemes.com/demo28/","buy_url":"https://tortoizthemes.com/theme/sandbox/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-06-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"2.0.0","license":"Commercial","features":["27 unique home pages and landing pages for every use case","130+ pre-made ready-to-use blocks β€” mix and match freely","250+ beautiful UI elements included","100+ neatly coded pages","Gulp, Bootstrap 5, and SASS β€” zero jQuery dependency","Valid HTML5 and CSS3 with thorough documentation","Fully responsive and retina-ready","Modern and eye-catching portfolio layouts with Isotope.js filtering","One-page layout option with smooth scroll","Various header and menu options including mega menu (light and dark)","Offcanvas mobile menu and info panel","Sticky header and footer","Notification bar and modal popup","Scroll animations with scrollCue.js","Swiper.js sliders with animated captions","Image and video background options (HTML5, YouTube, Vimeo via Plyr)","Lightbox for images and videos","Contact form without page refresh","Mailchimp newsletter integration","Duotone and font icon options with high-quality retina icon sets","Color and font options for brand customisation"],"slug":"sandbox","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Reverie is a fork of the classic Poole theme, polished into an elegant blogging experience by Amit Merchant. It retains Poole's clean, spacious feel while adding practical features like category/tag pages, Disqus integration, and pagination.\n\nThe setup is deliberately simple β€” fork the repo, update `_config.yml`, and you're live on GitHub Pages in minutes.\n\n**Who is it for?** Writers who want an elegant, low-maintenance blog that deploys straight to GitHub Pages.\n","url":"/themes/reverie/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Reverie Jekyll Theme","description":"A ridiculously elegant, fully responsive Jekyll blog theme based on Poole. Supports categories, tags, Disqus comments, and Google Analytics.","key_features":["Category Pages","Tag Support","GitHub Pages","Disqus Comments"],"card_description":"Elegantly responsive blog based on Poole with categories and tags.","category":"Blog","card_image":"/assets/images/themes/reverie-card.webp","theme_screenshots":["/assets/images/themes/reverie-screenshot.webp","/assets/images/themes/reverie-screenshot-2.webp","/assets/images/themes/reverie-screenshot-3.webp"],"demo_url":"https://reverie.amitmerchant.com/","github_url":"https://github.com/amitmerchant1990/reverie","author":"GitHub Community","github_author_name":"amitmerchant1990","github_author_url":"https://github.com/amitmerchant1990","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-03-23","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":842,"forks":418,"features":["Elegant minimal layout","Category and tag pages","Disqus comments","Google Analytics","GitHub Pages compatible","Paginated archive","Social sharing buttons","SEO optimised","RSS feed","Mobile friendly"],"slug":"reverie","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Researcher is the no-nonsense option for academics who want a clean, single-page CV on the web. Where Academic Pages gives you an entire multi-page website, Researcher keeps everything on one page β€” education, experience, publications, skills, and contact β€” in a clean, minimal layout that loads instantly and looks professional everywhere.\n\nThe monospace typography gives it a subtle technical identity without being gimmicky, and the straightforward YAML configuration means you can have it set up and deployed in under an hour.\n\n**Who is it for?** Academics, researchers, and PhD students who want a simple, fast, single-page CV site without the complexity of a full academic website.\n","url":"/themes/researcher/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Researcher Jekyll Theme","description":"A minimal, clean Jekyll theme for a single-page academic CV. Presents your education, experience, publications, and skills in a clear, professional layout that loads instantly.","key_features":["Single-Page CV","Academic Layout","GitHub Pages","Fast Loading"],"card_description":"Minimal single-page academic CV with a clean, professional layout.","category":"Resume / CV","card_image":"/assets/images/themes/researcher-card.webp","theme_screenshots":["/assets/images/themes/researcher-screenshot.webp","/assets/images/themes/researcher-screenshot-2.webp","/assets/images/themes/researcher-screenshot-3.webp"],"demo_url":"https://ankitsultana.com/researcher/","github_url":"https://github.com/ankitsultana/researcher","author":"GitHub Community","github_author_name":"ankitsultana","github_author_url":"https://github.com/ankitsultana","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":500,"forks":400,"features":["Single-page CV layout","Education and experience sections","Publications listing","Skills and interests display","Clean monospace typography","Social and contact links","Minimal CSS footprint","Fast page load","GitHub Pages compatible","Easy YAML configuration"],"slug":"researcher","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/reverie.md","relative_path":"_themes/reverie.md","excerpt":"<p>Reverie is a fork of the classic Poole theme, polished into an elegant blogging experience by Amit Merchant. It retains Poole’s clean, spacious feel while adding practical features like category/tag pages, Disqus integration, and pagination.</p>\n\n","previous":{"path":"_themes/researcher.md","relative_path":"_themes/researcher.md","excerpt":"<p>Researcher is the no-nonsense option for academics who want a clean, single-page CV on the web. Where Academic Pages gives you an entire multi-page website, Researcher keeps everything on one page β€” education, experience, publications, skills, and contact β€” in a clean, minimal layout that loads instantly and looks professional everywhere.</p>\n\n","previous":{"path":"_themes/primer.md","relative_path":"_themes/primer.md","id":"/themes/primer","collection":"themes","url":"/themes/primer/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Primer Jekyll Theme","description":"The official GitHub Pages primer Jekyll theme. Clean, GitHub-style design with great readability β€” perfect for documentation and project pages.","key_features":["GitHub Style","GitHub Pages","Clean Readability","Project Docs"],"card_description":"Official GitHub Pages primer theme β€” clean GitHub-style for docs.","category":"Documentation","card_image":"/assets/images/themes/primer-card.webp","theme_screenshots":["/assets/images/themes/primer-screenshot.webp","/assets/images/themes/primer-screenshot-2.webp","/assets/images/themes/primer-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/primer/","github_url":"https://github.com/pages-themes/primer","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":600,"forks":500,"features":["Official GitHub Pages supported theme","Built on GitHub Primer CSS design system","Clean neutral layout","Instantly readable typography","Single-line enable via _config.yml","Responsive layout","No local Jekyll install needed","Familiar GitHub aesthetic"],"slug":"primer","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/researcher","collection":"themes","next":{"path":"_themes/reverie.md","relative_path":"_themes/reverie.md","id":"/themes/reverie","collection":"themes","url":"/themes/reverie/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Reverie Jekyll Theme","description":"A ridiculously elegant, fully responsive Jekyll blog theme based on Poole. Supports categories, tags, Disqus comments, and Google Analytics.","key_features":["Category Pages","Tag Support","GitHub Pages","Disqus Comments"],"card_description":"Elegantly responsive blog based on Poole with categories and tags.","category":"Blog","card_image":"/assets/images/themes/reverie-card.webp","theme_screenshots":["/assets/images/themes/reverie-screenshot.webp","/assets/images/themes/reverie-screenshot-2.webp","/assets/images/themes/reverie-screenshot-3.webp"],"demo_url":"https://reverie.amitmerchant.com/","github_url":"https://github.com/amitmerchant1990/reverie","author":"GitHub Community","github_author_name":"amitmerchant1990","github_author_url":"https://github.com/amitmerchant1990","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-03-23","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":842,"forks":418,"features":["Elegant minimal layout","Category and tag pages","Disqus comments","Google Analytics","GitHub Pages compatible","Paginated archive","Social sharing buttons","SEO optimised","RSS feed","Mobile friendly"],"slug":"reverie","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Researcher is the no-nonsense option for academics who want a clean, single-page CV on the web. Where Academic Pages gives you an entire multi-page website, Researcher keeps everything on one page β€” education, experience, publications, skills, and contact β€” in a clean, minimal layout that loads instantly and looks professional everywhere.\n\nThe monospace typography gives it a subtle technical identity without being gimmicky, and the straightforward YAML configuration means you can have it set up and deployed in under an hour.\n\n**Who is it for?** Academics, researchers, and PhD students who want a simple, fast, single-page CV site without the complexity of a full academic website.\n","url":"/themes/researcher/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Researcher Jekyll Theme","description":"A minimal, clean Jekyll theme for a single-page academic CV. Presents your education, experience, publications, and skills in a clear, professional layout that loads instantly.","key_features":["Single-Page CV","Academic Layout","GitHub Pages","Fast Loading"],"card_description":"Minimal single-page academic CV with a clean, professional layout.","category":"Resume / CV","card_image":"/assets/images/themes/researcher-card.webp","theme_screenshots":["/assets/images/themes/researcher-screenshot.webp","/assets/images/themes/researcher-screenshot-2.webp","/assets/images/themes/researcher-screenshot-3.webp"],"demo_url":"https://ankitsultana.com/researcher/","github_url":"https://github.com/ankitsultana/researcher","author":"GitHub Community","github_author_name":"ankitsultana","github_author_url":"https://github.com/ankitsultana","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":500,"forks":400,"features":["Single-page CV layout","Education and experience sections","Publications listing","Skills and interests display","Clean monospace typography","Social and contact links","Minimal CSS footprint","Fast page load","GitHub Pages compatible","Easy YAML configuration"],"slug":"researcher","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/reverie","collection":"themes","next":{"path":"_themes/sandbox.md","relative_path":"_themes/sandbox.md","excerpt":"<p>Sandbox is the most comprehensive Jekyll theme in this collection. With 27 home pages, 130+ UI blocks, and 250+ individual elements, it is less a theme and more a complete design system β€” one that can produce any type of website from the same codebase.</p>\n\n","previous":{"path":"_themes/reverie.md","relative_path":"_themes/reverie.md","id":"/themes/reverie","collection":"themes","url":"/themes/reverie/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Reverie Jekyll Theme","description":"A ridiculously elegant, fully responsive Jekyll blog theme based on Poole. Supports categories, tags, Disqus comments, and Google Analytics.","key_features":["Category Pages","Tag Support","GitHub Pages","Disqus Comments"],"card_description":"Elegantly responsive blog based on Poole with categories and tags.","category":"Blog","card_image":"/assets/images/themes/reverie-card.webp","theme_screenshots":["/assets/images/themes/reverie-screenshot.webp","/assets/images/themes/reverie-screenshot-2.webp","/assets/images/themes/reverie-screenshot-3.webp"],"demo_url":"https://reverie.amitmerchant.com/","github_url":"https://github.com/amitmerchant1990/reverie","author":"GitHub Community","github_author_name":"amitmerchant1990","github_author_url":"https://github.com/amitmerchant1990","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-03-23","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":842,"forks":418,"features":["Elegant minimal layout","Category and tag pages","Disqus comments","Google Analytics","GitHub Pages compatible","Paginated archive","Social sharing buttons","SEO optimised","RSS feed","Mobile friendly"],"slug":"reverie","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/sandbox","collection":"themes","next":{"path":"_themes/scriptor.md","relative_path":"_themes/scriptor.md","id":"/themes/scriptor","collection":"themes","url":"/themes/scriptor/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Scriptor Jekyll Theme","description":"A minimal, clean, and modern Jekyll theme for writers and bloggers. Elegant typography, featured images, and a distraction-free reading layout built for long-form content.","key_features":["Writer Focused","Featured Images","Minimal Design","GitHub Pages"],"card_description":"Minimal, modern theme for writers with elegant typography.","category":"Blog","card_image":"/assets/images/themes/scriptor-card.webp","theme_screenshots":["/assets/images/themes/scriptor-screenshot.webp","/assets/images/themes/scriptor-screenshot-2.webp","/assets/images/themes/scriptor-screenshot-3.webp"],"demo_url":"https://scriptor-jekyll.netlify.app/","github_url":"https://github.com/JustGoodThemes/Scriptor-Jekyll-Theme","author":"GitHub Community","github_author_name":"JustGoodThemes","github_author_url":"https://github.com/JustGoodThemes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":183,"forks":120,"features":["Clean minimal blog layout","Featured images per post","Elegant typographic scale","Paginated post listing","Category and tag support","Disqus comments","Google Analytics","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"scriptor","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Sandbox is the most comprehensive Jekyll theme in this collection. With 27 home pages, 130+ UI blocks, and 250+ individual elements, it is less a theme and more a complete design system β€” one that can produce any type of website from the same codebase.\n\n### Built for Every Use Case\n\nThe 27 pre-built home pages cover the full spectrum of modern website types: SaaS platforms, startup landing pages, creative agency sites, personal portfolios, photography showcases, eCommerce storefronts, blog/journal sites, wedding pages, and travel sites. Each is production-ready and fully customisable through SCSS variables and config files.\n\n### Block-Based Building\n\nThe 130+ block library is where Sandbox earns its \"Sandbox\" name. Every block β€” hero, features, pricing, testimonials, portfolio grid, CTA, contact β€” is a standalone, droppable section. Combine them to create custom page layouts without writing HTML. The 250+ UI elements include buttons, cards, badges, tabs, accordions, progress bars, and more.\n\n### Modern Technical Foundation\n\nBuilt on Bootstrap 5 with Gulp and SASS, and containing zero jQuery, Sandbox loads fast and scores well on Core Web Vitals. Interactive features come from purpose-built libraries: Swiper.js for sliders, Isotope.js for filterable galleries, scrollCue.js for scroll animations, and Plyr for video backgrounds and embedded media (YouTube and Vimeo supported).\n\n**Who is it for?** Agencies or developers who need one theme that can build anything β€” and who want to stop buying a new theme for every new client project.\n","url":"/themes/sandbox/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Sandbox Jekyll Theme","rating":4.8,"rating_count":56,"description":"A massive multipurpose Jekyll theme with 27 home pages, 130+ ready-to-use blocks, and 250+ UI elements. Built with Bootstrap 5 and zero jQuery β€” perfect for startups, SaaS, agencies, portfolios, and eCommerce sites.","card_description":"Multipurpose theme β€” 27 homepages, 130+ blocks, 250+ UI elements, Bootstrap 5.","price":99,"category":"Business","card_image":"/assets/images/themes/sandbox-card.webp","theme_screenshots":["/assets/images/themes/sandbox-screenshot.webp","/assets/images/themes/sandbox-screenshot-2.webp","/assets/images/themes/sandbox-screenshot-3.webp"],"key_features":["27 Home Pages","130+ Blocks","No jQuery","Video Backgrounds"],"demo_url":"https://sandbox.tortoizthemes.com/demo28/","buy_url":"https://tortoizthemes.com/theme/sandbox/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-06-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"2.0.0","license":"Commercial","features":["27 unique home pages and landing pages for every use case","130+ pre-made ready-to-use blocks β€” mix and match freely","250+ beautiful UI elements included","100+ neatly coded pages","Gulp, Bootstrap 5, and SASS β€” zero jQuery dependency","Valid HTML5 and CSS3 with thorough documentation","Fully responsive and retina-ready","Modern and eye-catching portfolio layouts with Isotope.js filtering","One-page layout option with smooth scroll","Various header and menu options including mega menu (light and dark)","Offcanvas mobile menu and info panel","Sticky header and footer","Notification bar and modal popup","Scroll animations with scrollCue.js","Swiper.js sliders with animated captions","Image and video background options (HTML5, YouTube, Vimeo via Plyr)","Lightbox for images and videos","Contact form without page refresh","Mailchimp newsletter integration","Duotone and font icon options with high-quality retina icon sets","Color and font options for brand customisation"],"slug":"sandbox","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Reverie is a fork of the classic Poole theme, polished into an elegant blogging experience by Amit Merchant. It retains Poole's clean, spacious feel while adding practical features like category/tag pages, Disqus integration, and pagination.\n\nThe setup is deliberately simple β€” fork the repo, update `_config.yml`, and you're live on GitHub Pages in minutes.\n\n**Who is it for?** Writers who want an elegant, low-maintenance blog that deploys straight to GitHub Pages.\n","url":"/themes/reverie/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Reverie Jekyll Theme","description":"A ridiculously elegant, fully responsive Jekyll blog theme based on Poole. Supports categories, tags, Disqus comments, and Google Analytics.","key_features":["Category Pages","Tag Support","GitHub Pages","Disqus Comments"],"card_description":"Elegantly responsive blog based on Poole with categories and tags.","category":"Blog","card_image":"/assets/images/themes/reverie-card.webp","theme_screenshots":["/assets/images/themes/reverie-screenshot.webp","/assets/images/themes/reverie-screenshot-2.webp","/assets/images/themes/reverie-screenshot-3.webp"],"demo_url":"https://reverie.amitmerchant.com/","github_url":"https://github.com/amitmerchant1990/reverie","author":"GitHub Community","github_author_name":"amitmerchant1990","github_author_url":"https://github.com/amitmerchant1990","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-03-23","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":842,"forks":418,"features":["Elegant minimal layout","Category and tag pages","Disqus comments","Google Analytics","GitHub Pages compatible","Paginated archive","Social sharing buttons","SEO optimised","RSS feed","Mobile friendly"],"slug":"reverie","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/sandbox.md","relative_path":"_themes/sandbox.md","excerpt":"<p>Sandbox is the most comprehensive Jekyll theme in this collection. With 27 home pages, 130+ UI blocks, and 250+ individual elements, it is less a theme and more a complete design system β€” one that can produce any type of website from the same codebase.</p>\n\n","previous":{"path":"_themes/reverie.md","relative_path":"_themes/reverie.md","excerpt":"<p>Reverie is a fork of the classic Poole theme, polished into an elegant blogging experience by Amit Merchant. It retains Poole’s clean, spacious feel while adding practical features like category/tag pages, Disqus integration, and pagination.</p>\n\n","previous":{"path":"_themes/researcher.md","relative_path":"_themes/researcher.md","id":"/themes/researcher","collection":"themes","url":"/themes/researcher/","draft":false,"categories":["Resume / CV"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Researcher Jekyll Theme","description":"A minimal, clean Jekyll theme for a single-page academic CV. Presents your education, experience, publications, and skills in a clear, professional layout that loads instantly.","key_features":["Single-Page CV","Academic Layout","GitHub Pages","Fast Loading"],"card_description":"Minimal single-page academic CV with a clean, professional layout.","category":"Resume / CV","card_image":"/assets/images/themes/researcher-card.webp","theme_screenshots":["/assets/images/themes/researcher-screenshot.webp","/assets/images/themes/researcher-screenshot-2.webp","/assets/images/themes/researcher-screenshot-3.webp"],"demo_url":"https://ankitsultana.com/researcher/","github_url":"https://github.com/ankitsultana/researcher","author":"GitHub Community","github_author_name":"ankitsultana","github_author_url":"https://github.com/ankitsultana","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":500,"forks":400,"features":["Single-page CV layout","Education and experience sections","Publications listing","Skills and interests display","Clean monospace typography","Social and contact links","Minimal CSS footprint","Fast page load","GitHub Pages compatible","Easy YAML configuration"],"slug":"researcher","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/reverie","collection":"themes","next":{"path":"_themes/sandbox.md","relative_path":"_themes/sandbox.md","id":"/themes/sandbox","collection":"themes","url":"/themes/sandbox/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Sandbox Jekyll Theme","rating":4.8,"rating_count":56,"description":"A massive multipurpose Jekyll theme with 27 home pages, 130+ ready-to-use blocks, and 250+ UI elements. Built with Bootstrap 5 and zero jQuery β€” perfect for startups, SaaS, agencies, portfolios, and eCommerce sites.","card_description":"Multipurpose theme β€” 27 homepages, 130+ blocks, 250+ UI elements, Bootstrap 5.","price":99,"category":"Business","card_image":"/assets/images/themes/sandbox-card.webp","theme_screenshots":["/assets/images/themes/sandbox-screenshot.webp","/assets/images/themes/sandbox-screenshot-2.webp","/assets/images/themes/sandbox-screenshot-3.webp"],"key_features":["27 Home Pages","130+ Blocks","No jQuery","Video Backgrounds"],"demo_url":"https://sandbox.tortoizthemes.com/demo28/","buy_url":"https://tortoizthemes.com/theme/sandbox/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-06-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"2.0.0","license":"Commercial","features":["27 unique home pages and landing pages for every use case","130+ pre-made ready-to-use blocks β€” mix and match freely","250+ beautiful UI elements included","100+ neatly coded pages","Gulp, Bootstrap 5, and SASS β€” zero jQuery dependency","Valid HTML5 and CSS3 with thorough documentation","Fully responsive and retina-ready","Modern and eye-catching portfolio layouts with Isotope.js filtering","One-page layout option with smooth scroll","Various header and menu options including mega menu (light and dark)","Offcanvas mobile menu and info panel","Sticky header and footer","Notification bar and modal popup","Scroll animations with scrollCue.js","Swiper.js sliders with animated captions","Image and video background options (HTML5, YouTube, Vimeo via Plyr)","Lightbox for images and videos","Contact form without page refresh","Mailchimp newsletter integration","Duotone and font icon options with high-quality retina icon sets","Color and font options for brand customisation"],"slug":"sandbox","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Reverie is a fork of the classic Poole theme, polished into an elegant blogging experience by Amit Merchant. It retains Poole's clean, spacious feel while adding practical features like category/tag pages, Disqus integration, and pagination.\n\nThe setup is deliberately simple β€” fork the repo, update `_config.yml`, and you're live on GitHub Pages in minutes.\n\n**Who is it for?** Writers who want an elegant, low-maintenance blog that deploys straight to GitHub Pages.\n","url":"/themes/reverie/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Reverie Jekyll Theme","description":"A ridiculously elegant, fully responsive Jekyll blog theme based on Poole. Supports categories, tags, Disqus comments, and Google Analytics.","key_features":["Category Pages","Tag Support","GitHub Pages","Disqus Comments"],"card_description":"Elegantly responsive blog based on Poole with categories and tags.","category":"Blog","card_image":"/assets/images/themes/reverie-card.webp","theme_screenshots":["/assets/images/themes/reverie-screenshot.webp","/assets/images/themes/reverie-screenshot-2.webp","/assets/images/themes/reverie-screenshot-3.webp"],"demo_url":"https://reverie.amitmerchant.com/","github_url":"https://github.com/amitmerchant1990/reverie","author":"GitHub Community","github_author_name":"amitmerchant1990","github_author_url":"https://github.com/amitmerchant1990","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-03-23","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":842,"forks":418,"features":["Elegant minimal layout","Category and tag pages","Disqus comments","Google Analytics","GitHub Pages compatible","Paginated archive","Social sharing buttons","SEO optimised","RSS feed","Mobile friendly"],"slug":"reverie","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/sandbox","collection":"themes","next":{"path":"_themes/scriptor.md","relative_path":"_themes/scriptor.md","excerpt":"<p>Scriptor is a minimal Jekyll theme from JustGoodThemes built around clean typography and distraction-free reading. Its simple single-column layout keeps the focus entirely on the writing, while featured images give each post a visual anchor without overwhelming the content.</p>\n\n","previous":{"path":"_themes/sandbox.md","relative_path":"_themes/sandbox.md","id":"/themes/sandbox","collection":"themes","url":"/themes/sandbox/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Sandbox Jekyll Theme","rating":4.8,"rating_count":56,"description":"A massive multipurpose Jekyll theme with 27 home pages, 130+ ready-to-use blocks, and 250+ UI elements. Built with Bootstrap 5 and zero jQuery β€” perfect for startups, SaaS, agencies, portfolios, and eCommerce sites.","card_description":"Multipurpose theme β€” 27 homepages, 130+ blocks, 250+ UI elements, Bootstrap 5.","price":99,"category":"Business","card_image":"/assets/images/themes/sandbox-card.webp","theme_screenshots":["/assets/images/themes/sandbox-screenshot.webp","/assets/images/themes/sandbox-screenshot-2.webp","/assets/images/themes/sandbox-screenshot-3.webp"],"key_features":["27 Home Pages","130+ Blocks","No jQuery","Video Backgrounds"],"demo_url":"https://sandbox.tortoizthemes.com/demo28/","buy_url":"https://tortoizthemes.com/theme/sandbox/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-06-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"2.0.0","license":"Commercial","features":["27 unique home pages and landing pages for every use case","130+ pre-made ready-to-use blocks β€” mix and match freely","250+ beautiful UI elements included","100+ neatly coded pages","Gulp, Bootstrap 5, and SASS β€” zero jQuery dependency","Valid HTML5 and CSS3 with thorough documentation","Fully responsive and retina-ready","Modern and eye-catching portfolio layouts with Isotope.js filtering","One-page layout option with smooth scroll","Various header and menu options including mega menu (light and dark)","Offcanvas mobile menu and info panel","Sticky header and footer","Notification bar and modal popup","Scroll animations with scrollCue.js","Swiper.js sliders with animated captions","Image and video background options (HTML5, YouTube, Vimeo via Plyr)","Lightbox for images and videos","Contact form without page refresh","Mailchimp newsletter integration","Duotone and font icon options with high-quality retina icon sets","Color and font options for brand customisation"],"slug":"sandbox","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/scriptor","collection":"themes","next":{"path":"_themes/serif.md","relative_path":"_themes/serif.md","id":"/themes/serif","collection":"themes","url":"/themes/serif/","draft":false,"categories":["Business"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Serif Jekyll Theme","description":"A beautiful small business Jekyll theme by CloudCannon. Elegant serif typography, warm tones, and sections for services, team members, and contact.","key_features":["Services Section","Team Pages","Contact Form","GitHub Pages"],"card_description":"Beautiful small business theme with serif typography and service sections.","category":"Business","card_image":"/assets/images/themes/serif-card.webp","theme_screenshots":["/assets/images/themes/serif-screenshot.webp","/assets/images/themes/serif-screenshot-2.webp","/assets/images/themes/serif-screenshot-3.webp"],"demo_url":"https://serif.cloudcannon.com/","github_url":"https://github.com/CloudCannon/serif-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-01-01","added_at":"2026-02-08","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":520,"forks":360,"features":["Services section","Team member pages","Contact page with form","Warm serif typography","Blog included","CloudCannon CMS compatible"],"slug":"serif","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Scriptor is a minimal Jekyll theme from JustGoodThemes built around clean typography and distraction-free reading. Its simple single-column layout keeps the focus entirely on the writing, while featured images give each post a visual anchor without overwhelming the content.\n\nThe theme is lightweight, fast, and easy to customise β€” a solid starting point for writers who want something polished without the complexity of heavier themes.\n\n**Who is it for?** Writers, bloggers, and journalists who want a clean, typographically focused blog that's easy to set up and fast to load.\n","url":"/themes/scriptor/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Scriptor Jekyll Theme","description":"A minimal, clean, and modern Jekyll theme for writers and bloggers. Elegant typography, featured images, and a distraction-free reading layout built for long-form content.","key_features":["Writer Focused","Featured Images","Minimal Design","GitHub Pages"],"card_description":"Minimal, modern theme for writers with elegant typography.","category":"Blog","card_image":"/assets/images/themes/scriptor-card.webp","theme_screenshots":["/assets/images/themes/scriptor-screenshot.webp","/assets/images/themes/scriptor-screenshot-2.webp","/assets/images/themes/scriptor-screenshot-3.webp"],"demo_url":"https://scriptor-jekyll.netlify.app/","github_url":"https://github.com/JustGoodThemes/Scriptor-Jekyll-Theme","author":"GitHub Community","github_author_name":"JustGoodThemes","github_author_url":"https://github.com/JustGoodThemes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":183,"forks":120,"features":["Clean minimal blog layout","Featured images per post","Elegant typographic scale","Paginated post listing","Category and tag support","Disqus comments","Google Analytics","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"scriptor","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Sandbox is the most comprehensive Jekyll theme in this collection. With 27 home pages, 130+ UI blocks, and 250+ individual elements, it is less a theme and more a complete design system β€” one that can produce any type of website from the same codebase.\n\n### Built for Every Use Case\n\nThe 27 pre-built home pages cover the full spectrum of modern website types: SaaS platforms, startup landing pages, creative agency sites, personal portfolios, photography showcases, eCommerce storefronts, blog/journal sites, wedding pages, and travel sites. Each is production-ready and fully customisable through SCSS variables and config files.\n\n### Block-Based Building\n\nThe 130+ block library is where Sandbox earns its \"Sandbox\" name. Every block β€” hero, features, pricing, testimonials, portfolio grid, CTA, contact β€” is a standalone, droppable section. Combine them to create custom page layouts without writing HTML. The 250+ UI elements include buttons, cards, badges, tabs, accordions, progress bars, and more.\n\n### Modern Technical Foundation\n\nBuilt on Bootstrap 5 with Gulp and SASS, and containing zero jQuery, Sandbox loads fast and scores well on Core Web Vitals. Interactive features come from purpose-built libraries: Swiper.js for sliders, Isotope.js for filterable galleries, scrollCue.js for scroll animations, and Plyr for video backgrounds and embedded media (YouTube and Vimeo supported).\n\n**Who is it for?** Agencies or developers who need one theme that can build anything β€” and who want to stop buying a new theme for every new client project.\n","url":"/themes/sandbox/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Sandbox Jekyll Theme","rating":4.8,"rating_count":56,"description":"A massive multipurpose Jekyll theme with 27 home pages, 130+ ready-to-use blocks, and 250+ UI elements. Built with Bootstrap 5 and zero jQuery β€” perfect for startups, SaaS, agencies, portfolios, and eCommerce sites.","card_description":"Multipurpose theme β€” 27 homepages, 130+ blocks, 250+ UI elements, Bootstrap 5.","price":99,"category":"Business","card_image":"/assets/images/themes/sandbox-card.webp","theme_screenshots":["/assets/images/themes/sandbox-screenshot.webp","/assets/images/themes/sandbox-screenshot-2.webp","/assets/images/themes/sandbox-screenshot-3.webp"],"key_features":["27 Home Pages","130+ Blocks","No jQuery","Video Backgrounds"],"demo_url":"https://sandbox.tortoizthemes.com/demo28/","buy_url":"https://tortoizthemes.com/theme/sandbox/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-06-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"2.0.0","license":"Commercial","features":["27 unique home pages and landing pages for every use case","130+ pre-made ready-to-use blocks β€” mix and match freely","250+ beautiful UI elements included","100+ neatly coded pages","Gulp, Bootstrap 5, and SASS β€” zero jQuery dependency","Valid HTML5 and CSS3 with thorough documentation","Fully responsive and retina-ready","Modern and eye-catching portfolio layouts with Isotope.js filtering","One-page layout option with smooth scroll","Various header and menu options including mega menu (light and dark)","Offcanvas mobile menu and info panel","Sticky header and footer","Notification bar and modal popup","Scroll animations with scrollCue.js","Swiper.js sliders with animated captions","Image and video background options (HTML5, YouTube, Vimeo via Plyr)","Lightbox for images and videos","Contact form without page refresh","Mailchimp newsletter integration","Duotone and font icon options with high-quality retina icon sets","Color and font options for brand customisation"],"slug":"sandbox","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/scriptor.md","relative_path":"_themes/scriptor.md","excerpt":"<p>Scriptor is a minimal Jekyll theme from JustGoodThemes built around clean typography and distraction-free reading. Its simple single-column layout keeps the focus entirely on the writing, while featured images give each post a visual anchor without overwhelming the content.</p>\n\n","previous":{"path":"_themes/sandbox.md","relative_path":"_themes/sandbox.md","excerpt":"<p>Sandbox is the most comprehensive Jekyll theme in this collection. With 27 home pages, 130+ UI blocks, and 250+ individual elements, it is less a theme and more a complete design system β€” one that can produce any type of website from the same codebase.</p>\n\n","previous":{"path":"_themes/reverie.md","relative_path":"_themes/reverie.md","id":"/themes/reverie","collection":"themes","url":"/themes/reverie/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Reverie Jekyll Theme","description":"A ridiculously elegant, fully responsive Jekyll blog theme based on Poole. Supports categories, tags, Disqus comments, and Google Analytics.","key_features":["Category Pages","Tag Support","GitHub Pages","Disqus Comments"],"card_description":"Elegantly responsive blog based on Poole with categories and tags.","category":"Blog","card_image":"/assets/images/themes/reverie-card.webp","theme_screenshots":["/assets/images/themes/reverie-screenshot.webp","/assets/images/themes/reverie-screenshot-2.webp","/assets/images/themes/reverie-screenshot-3.webp"],"demo_url":"https://reverie.amitmerchant.com/","github_url":"https://github.com/amitmerchant1990/reverie","author":"GitHub Community","github_author_name":"amitmerchant1990","github_author_url":"https://github.com/amitmerchant1990","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2025-03-23","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":842,"forks":418,"features":["Elegant minimal layout","Category and tag pages","Disqus comments","Google Analytics","GitHub Pages compatible","Paginated archive","Social sharing buttons","SEO optimised","RSS feed","Mobile friendly"],"slug":"reverie","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/sandbox","collection":"themes","next":{"path":"_themes/scriptor.md","relative_path":"_themes/scriptor.md","id":"/themes/scriptor","collection":"themes","url":"/themes/scriptor/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Scriptor Jekyll Theme","description":"A minimal, clean, and modern Jekyll theme for writers and bloggers. Elegant typography, featured images, and a distraction-free reading layout built for long-form content.","key_features":["Writer Focused","Featured Images","Minimal Design","GitHub Pages"],"card_description":"Minimal, modern theme for writers with elegant typography.","category":"Blog","card_image":"/assets/images/themes/scriptor-card.webp","theme_screenshots":["/assets/images/themes/scriptor-screenshot.webp","/assets/images/themes/scriptor-screenshot-2.webp","/assets/images/themes/scriptor-screenshot-3.webp"],"demo_url":"https://scriptor-jekyll.netlify.app/","github_url":"https://github.com/JustGoodThemes/Scriptor-Jekyll-Theme","author":"GitHub Community","github_author_name":"JustGoodThemes","github_author_url":"https://github.com/JustGoodThemes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":183,"forks":120,"features":["Clean minimal blog layout","Featured images per post","Elegant typographic scale","Paginated post listing","Category and tag support","Disqus comments","Google Analytics","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"scriptor","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Sandbox is the most comprehensive Jekyll theme in this collection. With 27 home pages, 130+ UI blocks, and 250+ individual elements, it is less a theme and more a complete design system β€” one that can produce any type of website from the same codebase.\n\n### Built for Every Use Case\n\nThe 27 pre-built home pages cover the full spectrum of modern website types: SaaS platforms, startup landing pages, creative agency sites, personal portfolios, photography showcases, eCommerce storefronts, blog/journal sites, wedding pages, and travel sites. Each is production-ready and fully customisable through SCSS variables and config files.\n\n### Block-Based Building\n\nThe 130+ block library is where Sandbox earns its \"Sandbox\" name. Every block β€” hero, features, pricing, testimonials, portfolio grid, CTA, contact β€” is a standalone, droppable section. Combine them to create custom page layouts without writing HTML. The 250+ UI elements include buttons, cards, badges, tabs, accordions, progress bars, and more.\n\n### Modern Technical Foundation\n\nBuilt on Bootstrap 5 with Gulp and SASS, and containing zero jQuery, Sandbox loads fast and scores well on Core Web Vitals. Interactive features come from purpose-built libraries: Swiper.js for sliders, Isotope.js for filterable galleries, scrollCue.js for scroll animations, and Plyr for video backgrounds and embedded media (YouTube and Vimeo supported).\n\n**Who is it for?** Agencies or developers who need one theme that can build anything β€” and who want to stop buying a new theme for every new client project.\n","url":"/themes/sandbox/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Sandbox Jekyll Theme","rating":4.8,"rating_count":56,"description":"A massive multipurpose Jekyll theme with 27 home pages, 130+ ready-to-use blocks, and 250+ UI elements. Built with Bootstrap 5 and zero jQuery β€” perfect for startups, SaaS, agencies, portfolios, and eCommerce sites.","card_description":"Multipurpose theme β€” 27 homepages, 130+ blocks, 250+ UI elements, Bootstrap 5.","price":99,"category":"Business","card_image":"/assets/images/themes/sandbox-card.webp","theme_screenshots":["/assets/images/themes/sandbox-screenshot.webp","/assets/images/themes/sandbox-screenshot-2.webp","/assets/images/themes/sandbox-screenshot-3.webp"],"key_features":["27 Home Pages","130+ Blocks","No jQuery","Video Backgrounds"],"demo_url":"https://sandbox.tortoizthemes.com/demo28/","buy_url":"https://tortoizthemes.com/theme/sandbox/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-06-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"2.0.0","license":"Commercial","features":["27 unique home pages and landing pages for every use case","130+ pre-made ready-to-use blocks β€” mix and match freely","250+ beautiful UI elements included","100+ neatly coded pages","Gulp, Bootstrap 5, and SASS β€” zero jQuery dependency","Valid HTML5 and CSS3 with thorough documentation","Fully responsive and retina-ready","Modern and eye-catching portfolio layouts with Isotope.js filtering","One-page layout option with smooth scroll","Various header and menu options including mega menu (light and dark)","Offcanvas mobile menu and info panel","Sticky header and footer","Notification bar and modal popup","Scroll animations with scrollCue.js","Swiper.js sliders with animated captions","Image and video background options (HTML5, YouTube, Vimeo via Plyr)","Lightbox for images and videos","Contact form without page refresh","Mailchimp newsletter integration","Duotone and font icon options with high-quality retina icon sets","Color and font options for brand customisation"],"slug":"sandbox","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/scriptor","collection":"themes","next":{"path":"_themes/serif.md","relative_path":"_themes/serif.md","excerpt":"<p>Serif is a polished small business theme from CloudCannon that pairs warm tones with elegant serif typography to create a trustworthy, professional presence. It ships with everything a small business site needs β€” services pages, team bios, a blog, and a contact form.</p>\n\n","previous":{"path":"_themes/scriptor.md","relative_path":"_themes/scriptor.md","id":"/themes/scriptor","collection":"themes","url":"/themes/scriptor/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Scriptor Jekyll Theme","description":"A minimal, clean, and modern Jekyll theme for writers and bloggers. Elegant typography, featured images, and a distraction-free reading layout built for long-form content.","key_features":["Writer Focused","Featured Images","Minimal Design","GitHub Pages"],"card_description":"Minimal, modern theme for writers with elegant typography.","category":"Blog","card_image":"/assets/images/themes/scriptor-card.webp","theme_screenshots":["/assets/images/themes/scriptor-screenshot.webp","/assets/images/themes/scriptor-screenshot-2.webp","/assets/images/themes/scriptor-screenshot-3.webp"],"demo_url":"https://scriptor-jekyll.netlify.app/","github_url":"https://github.com/JustGoodThemes/Scriptor-Jekyll-Theme","author":"GitHub Community","github_author_name":"JustGoodThemes","github_author_url":"https://github.com/JustGoodThemes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":183,"forks":120,"features":["Clean minimal blog layout","Featured images per post","Elegant typographic scale","Paginated post listing","Category and tag support","Disqus comments","Google Analytics","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"scriptor","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/serif","collection":"themes","next":{"path":"_themes/slate.md","relative_path":"_themes/slate.md","id":"/themes/slate","collection":"themes","url":"/themes/slate/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Slate Jekyll Theme","description":"A bold, dark GitHub Pages Jekyll theme with prominent sidebar navigation and strong code styling. Official GitHub Pages theme for developer docs.","key_features":["GitHub Pages","Dark Sidebar","Code Styling","Developer Docs"],"card_description":"Bold, dark GitHub Pages theme for developer docs with sidebar nav.","category":"Documentation","card_image":"/assets/images/themes/slate-card.webp","theme_screenshots":["/assets/images/themes/slate-screenshot.webp","/assets/images/themes/slate-screenshot-2.webp","/assets/images/themes/slate-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/slate/","github_url":"https://github.com/pages-themes/slate","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":700,"features":["Official GitHub Pages supported theme","Dark sidebar navigation","Code-optimised typography","Responsive layout","Single-click enable via _config.yml","No local Jekyll install required","Google Analytics ready","Clean, professional aesthetic"],"slug":"slate","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Serif is a polished small business theme from CloudCannon that pairs warm tones with elegant serif typography to create a trustworthy, professional presence. It ships with everything a small business site needs β€” services pages, team bios, a blog, and a contact form.\n\nThe CloudCannon compatibility means non-technical users can edit content through a visual CMS without touching any code.\n\n**Who is it for?** Small businesses, consultants, agencies, and professional services firms who want a warm, professional web presence.\n","url":"/themes/serif/","draft":false,"categories":["Business"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Serif Jekyll Theme","description":"A beautiful small business Jekyll theme by CloudCannon. Elegant serif typography, warm tones, and sections for services, team members, and contact.","key_features":["Services Section","Team Pages","Contact Form","GitHub Pages"],"card_description":"Beautiful small business theme with serif typography and service sections.","category":"Business","card_image":"/assets/images/themes/serif-card.webp","theme_screenshots":["/assets/images/themes/serif-screenshot.webp","/assets/images/themes/serif-screenshot-2.webp","/assets/images/themes/serif-screenshot-3.webp"],"demo_url":"https://serif.cloudcannon.com/","github_url":"https://github.com/CloudCannon/serif-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-01-01","added_at":"2026-02-08","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":520,"forks":360,"features":["Services section","Team member pages","Contact page with form","Warm serif typography","Blog included","CloudCannon CMS compatible"],"slug":"serif","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Scriptor is a minimal Jekyll theme from JustGoodThemes built around clean typography and distraction-free reading. Its simple single-column layout keeps the focus entirely on the writing, while featured images give each post a visual anchor without overwhelming the content.\n\nThe theme is lightweight, fast, and easy to customise β€” a solid starting point for writers who want something polished without the complexity of heavier themes.\n\n**Who is it for?** Writers, bloggers, and journalists who want a clean, typographically focused blog that's easy to set up and fast to load.\n","url":"/themes/scriptor/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Scriptor Jekyll Theme","description":"A minimal, clean, and modern Jekyll theme for writers and bloggers. Elegant typography, featured images, and a distraction-free reading layout built for long-form content.","key_features":["Writer Focused","Featured Images","Minimal Design","GitHub Pages"],"card_description":"Minimal, modern theme for writers with elegant typography.","category":"Blog","card_image":"/assets/images/themes/scriptor-card.webp","theme_screenshots":["/assets/images/themes/scriptor-screenshot.webp","/assets/images/themes/scriptor-screenshot-2.webp","/assets/images/themes/scriptor-screenshot-3.webp"],"demo_url":"https://scriptor-jekyll.netlify.app/","github_url":"https://github.com/JustGoodThemes/Scriptor-Jekyll-Theme","author":"GitHub Community","github_author_name":"JustGoodThemes","github_author_url":"https://github.com/JustGoodThemes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":183,"forks":120,"features":["Clean minimal blog layout","Featured images per post","Elegant typographic scale","Paginated post listing","Category and tag support","Disqus comments","Google Analytics","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"scriptor","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/serif.md","relative_path":"_themes/serif.md","excerpt":"<p>Serif is a polished small business theme from CloudCannon that pairs warm tones with elegant serif typography to create a trustworthy, professional presence. It ships with everything a small business site needs β€” services pages, team bios, a blog, and a contact form.</p>\n\n","previous":{"path":"_themes/scriptor.md","relative_path":"_themes/scriptor.md","excerpt":"<p>Scriptor is a minimal Jekyll theme from JustGoodThemes built around clean typography and distraction-free reading. Its simple single-column layout keeps the focus entirely on the writing, while featured images give each post a visual anchor without overwhelming the content.</p>\n\n","previous":{"path":"_themes/sandbox.md","relative_path":"_themes/sandbox.md","id":"/themes/sandbox","collection":"themes","url":"/themes/sandbox/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Sandbox Jekyll Theme","rating":4.8,"rating_count":56,"description":"A massive multipurpose Jekyll theme with 27 home pages, 130+ ready-to-use blocks, and 250+ UI elements. Built with Bootstrap 5 and zero jQuery β€” perfect for startups, SaaS, agencies, portfolios, and eCommerce sites.","card_description":"Multipurpose theme β€” 27 homepages, 130+ blocks, 250+ UI elements, Bootstrap 5.","price":99,"category":"Business","card_image":"/assets/images/themes/sandbox-card.webp","theme_screenshots":["/assets/images/themes/sandbox-screenshot.webp","/assets/images/themes/sandbox-screenshot-2.webp","/assets/images/themes/sandbox-screenshot-3.webp"],"key_features":["27 Home Pages","130+ Blocks","No jQuery","Video Backgrounds"],"demo_url":"https://sandbox.tortoizthemes.com/demo28/","buy_url":"https://tortoizthemes.com/theme/sandbox/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.0","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-06-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":true,"version":"2.0.0","license":"Commercial","features":["27 unique home pages and landing pages for every use case","130+ pre-made ready-to-use blocks β€” mix and match freely","250+ beautiful UI elements included","100+ neatly coded pages","Gulp, Bootstrap 5, and SASS β€” zero jQuery dependency","Valid HTML5 and CSS3 with thorough documentation","Fully responsive and retina-ready","Modern and eye-catching portfolio layouts with Isotope.js filtering","One-page layout option with smooth scroll","Various header and menu options including mega menu (light and dark)","Offcanvas mobile menu and info panel","Sticky header and footer","Notification bar and modal popup","Scroll animations with scrollCue.js","Swiper.js sliders with animated captions","Image and video background options (HTML5, YouTube, Vimeo via Plyr)","Lightbox for images and videos","Contact form without page refresh","Mailchimp newsletter integration","Duotone and font icon options with high-quality retina icon sets","Color and font options for brand customisation"],"slug":"sandbox","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/scriptor","collection":"themes","next":{"path":"_themes/serif.md","relative_path":"_themes/serif.md","id":"/themes/serif","collection":"themes","url":"/themes/serif/","draft":false,"categories":["Business"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Serif Jekyll Theme","description":"A beautiful small business Jekyll theme by CloudCannon. Elegant serif typography, warm tones, and sections for services, team members, and contact.","key_features":["Services Section","Team Pages","Contact Form","GitHub Pages"],"card_description":"Beautiful small business theme with serif typography and service sections.","category":"Business","card_image":"/assets/images/themes/serif-card.webp","theme_screenshots":["/assets/images/themes/serif-screenshot.webp","/assets/images/themes/serif-screenshot-2.webp","/assets/images/themes/serif-screenshot-3.webp"],"demo_url":"https://serif.cloudcannon.com/","github_url":"https://github.com/CloudCannon/serif-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-01-01","added_at":"2026-02-08","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":520,"forks":360,"features":["Services section","Team member pages","Contact page with form","Warm serif typography","Blog included","CloudCannon CMS compatible"],"slug":"serif","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Scriptor is a minimal Jekyll theme from JustGoodThemes built around clean typography and distraction-free reading. Its simple single-column layout keeps the focus entirely on the writing, while featured images give each post a visual anchor without overwhelming the content.\n\nThe theme is lightweight, fast, and easy to customise β€” a solid starting point for writers who want something polished without the complexity of heavier themes.\n\n**Who is it for?** Writers, bloggers, and journalists who want a clean, typographically focused blog that's easy to set up and fast to load.\n","url":"/themes/scriptor/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Scriptor Jekyll Theme","description":"A minimal, clean, and modern Jekyll theme for writers and bloggers. Elegant typography, featured images, and a distraction-free reading layout built for long-form content.","key_features":["Writer Focused","Featured Images","Minimal Design","GitHub Pages"],"card_description":"Minimal, modern theme for writers with elegant typography.","category":"Blog","card_image":"/assets/images/themes/scriptor-card.webp","theme_screenshots":["/assets/images/themes/scriptor-screenshot.webp","/assets/images/themes/scriptor-screenshot-2.webp","/assets/images/themes/scriptor-screenshot-3.webp"],"demo_url":"https://scriptor-jekyll.netlify.app/","github_url":"https://github.com/JustGoodThemes/Scriptor-Jekyll-Theme","author":"GitHub Community","github_author_name":"JustGoodThemes","github_author_url":"https://github.com/JustGoodThemes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":183,"forks":120,"features":["Clean minimal blog layout","Featured images per post","Elegant typographic scale","Paginated post listing","Category and tag support","Disqus comments","Google Analytics","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"scriptor","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/serif","collection":"themes","next":{"path":"_themes/slate.md","relative_path":"_themes/slate.md","excerpt":"<p>Slate is one of the twelve official themes supported natively by GitHub Pages, meaning you can enable it with a single line in your <code class=\"language-plaintext highlighter-rouge\">_config.yml</code> β€” no gem installs, no local setup. Its dark slate sidebar paired with a white content area creates an immediately recognisable, professional look suited to open-source project documentation.</p>\n\n","previous":{"path":"_themes/serif.md","relative_path":"_themes/serif.md","id":"/themes/serif","collection":"themes","url":"/themes/serif/","draft":false,"categories":["Business"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Serif Jekyll Theme","description":"A beautiful small business Jekyll theme by CloudCannon. Elegant serif typography, warm tones, and sections for services, team members, and contact.","key_features":["Services Section","Team Pages","Contact Form","GitHub Pages"],"card_description":"Beautiful small business theme with serif typography and service sections.","category":"Business","card_image":"/assets/images/themes/serif-card.webp","theme_screenshots":["/assets/images/themes/serif-screenshot.webp","/assets/images/themes/serif-screenshot-2.webp","/assets/images/themes/serif-screenshot-3.webp"],"demo_url":"https://serif.cloudcannon.com/","github_url":"https://github.com/CloudCannon/serif-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-01-01","added_at":"2026-02-08","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":520,"forks":360,"features":["Services section","Team member pages","Contact page with form","Warm serif typography","Blog included","CloudCannon CMS compatible"],"slug":"serif","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/slate","collection":"themes","next":{"path":"_themes/snowlake.md","relative_path":"_themes/snowlake.md","id":"/themes/snowlake","collection":"themes","url":"/themes/snowlake/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Snowlake Jekyll Theme","rating":4.8,"rating_count":47,"description":"A versatile multipurpose Jekyll theme with 27 unique demos, 17 color schemes, 5 font options, Slider Revolution, and 4 icon sets with 2300+ icons. Built on Jekyll 4.3+ and Bootstrap 5 β€” ideal for businesses, agencies, SaaS, and creatives.","card_description":"Multipurpose theme β€” 27 demos, 17 color schemes, Slider Revolution, Bootstrap 5.","price":79,"category":"Business","card_image":"/assets/images/themes/snowlake-card.webp","theme_screenshots":["/assets/images/themes/snowlake-screenshot.webp","/assets/images/themes/snowlake-screenshot-2.webp","/assets/images/themes/snowlake-screenshot-3.webp"],"key_features":["27 Demos","17 Color Schemes","Slider Revolution","2300+ Icons"],"demo_url":"https://snowlake.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/snowlake-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.3","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-05-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":false,"version":"2.0.0","license":"Commercial","features":["27 unique demo layouts for business, agency, SaaS, portfolio, blog, and more","17 color schemes β€” choose your brand palette or create your own","5 font options chosen to match the template's design style","Slider Revolution included free (normally $16) β€” animated banners and sliders","4 icon sets with 2300+ high-quality retina-ready icons","Jekyll 4.3+ and Bootstrap 5 β€” modern, fast, standards-compliant","Parallax sections with image and video background support","Multiple and single-page layout options with smooth scroll","Various header, menu, and slider configurations","Well-written, SEO-optimised HTML5 with commented code","Responsive design compatible with all devices and screen sizes","Various blog and portfolio layout options to mix and match","Clean and professional design suitable for any industry","Retina-ready graphics β€” crisp on all high-density displays","Free updates and top-notch support within 24 hours on weekdays"],"slug":"snowlake","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Slate is one of the twelve official themes supported natively by GitHub Pages, meaning you can enable it with a single line in your `_config.yml` β€” no gem installs, no local setup. Its dark slate sidebar paired with a white content area creates an immediately recognisable, professional look suited to open-source project documentation.\n\nThe code-friendly typography and syntax highlighting make it a natural fit for developer tools and API documentation pages.\n\n**Who is it for?** Developers who want a fast, reliable documentation theme they can enable on any GitHub Pages project in seconds.\n","url":"/themes/slate/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Slate Jekyll Theme","description":"A bold, dark GitHub Pages Jekyll theme with prominent sidebar navigation and strong code styling. Official GitHub Pages theme for developer docs.","key_features":["GitHub Pages","Dark Sidebar","Code Styling","Developer Docs"],"card_description":"Bold, dark GitHub Pages theme for developer docs with sidebar nav.","category":"Documentation","card_image":"/assets/images/themes/slate-card.webp","theme_screenshots":["/assets/images/themes/slate-screenshot.webp","/assets/images/themes/slate-screenshot-2.webp","/assets/images/themes/slate-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/slate/","github_url":"https://github.com/pages-themes/slate","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":700,"features":["Official GitHub Pages supported theme","Dark sidebar navigation","Code-optimised typography","Responsive layout","Single-click enable via _config.yml","No local Jekyll install required","Google Analytics ready","Clean, professional aesthetic"],"slug":"slate","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Serif is a polished small business theme from CloudCannon that pairs warm tones with elegant serif typography to create a trustworthy, professional presence. It ships with everything a small business site needs β€” services pages, team bios, a blog, and a contact form.\n\nThe CloudCannon compatibility means non-technical users can edit content through a visual CMS without touching any code.\n\n**Who is it for?** Small businesses, consultants, agencies, and professional services firms who want a warm, professional web presence.\n","url":"/themes/serif/","draft":false,"categories":["Business"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Serif Jekyll Theme","description":"A beautiful small business Jekyll theme by CloudCannon. Elegant serif typography, warm tones, and sections for services, team members, and contact.","key_features":["Services Section","Team Pages","Contact Form","GitHub Pages"],"card_description":"Beautiful small business theme with serif typography and service sections.","category":"Business","card_image":"/assets/images/themes/serif-card.webp","theme_screenshots":["/assets/images/themes/serif-screenshot.webp","/assets/images/themes/serif-screenshot-2.webp","/assets/images/themes/serif-screenshot-3.webp"],"demo_url":"https://serif.cloudcannon.com/","github_url":"https://github.com/CloudCannon/serif-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-01-01","added_at":"2026-02-08","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":520,"forks":360,"features":["Services section","Team member pages","Contact page with form","Warm serif typography","Blog included","CloudCannon CMS compatible"],"slug":"serif","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/slate.md","relative_path":"_themes/slate.md","excerpt":"<p>Slate is one of the twelve official themes supported natively by GitHub Pages, meaning you can enable it with a single line in your <code class=\"language-plaintext highlighter-rouge\">_config.yml</code> β€” no gem installs, no local setup. Its dark slate sidebar paired with a white content area creates an immediately recognisable, professional look suited to open-source project documentation.</p>\n\n","previous":{"path":"_themes/serif.md","relative_path":"_themes/serif.md","excerpt":"<p>Serif is a polished small business theme from CloudCannon that pairs warm tones with elegant serif typography to create a trustworthy, professional presence. It ships with everything a small business site needs β€” services pages, team bios, a blog, and a contact form.</p>\n\n","previous":{"path":"_themes/scriptor.md","relative_path":"_themes/scriptor.md","id":"/themes/scriptor","collection":"themes","url":"/themes/scriptor/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Scriptor Jekyll Theme","description":"A minimal, clean, and modern Jekyll theme for writers and bloggers. Elegant typography, featured images, and a distraction-free reading layout built for long-form content.","key_features":["Writer Focused","Featured Images","Minimal Design","GitHub Pages"],"card_description":"Minimal, modern theme for writers with elegant typography.","category":"Blog","card_image":"/assets/images/themes/scriptor-card.webp","theme_screenshots":["/assets/images/themes/scriptor-screenshot.webp","/assets/images/themes/scriptor-screenshot-2.webp","/assets/images/themes/scriptor-screenshot-3.webp"],"demo_url":"https://scriptor-jekyll.netlify.app/","github_url":"https://github.com/JustGoodThemes/Scriptor-Jekyll-Theme","author":"GitHub Community","github_author_name":"JustGoodThemes","github_author_url":"https://github.com/JustGoodThemes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":183,"forks":120,"features":["Clean minimal blog layout","Featured images per post","Elegant typographic scale","Paginated post listing","Category and tag support","Disqus comments","Google Analytics","Social sharing links","RSS feed","GitHub Pages compatible"],"slug":"scriptor","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/serif","collection":"themes","next":{"path":"_themes/slate.md","relative_path":"_themes/slate.md","id":"/themes/slate","collection":"themes","url":"/themes/slate/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Slate Jekyll Theme","description":"A bold, dark GitHub Pages Jekyll theme with prominent sidebar navigation and strong code styling. Official GitHub Pages theme for developer docs.","key_features":["GitHub Pages","Dark Sidebar","Code Styling","Developer Docs"],"card_description":"Bold, dark GitHub Pages theme for developer docs with sidebar nav.","category":"Documentation","card_image":"/assets/images/themes/slate-card.webp","theme_screenshots":["/assets/images/themes/slate-screenshot.webp","/assets/images/themes/slate-screenshot-2.webp","/assets/images/themes/slate-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/slate/","github_url":"https://github.com/pages-themes/slate","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":700,"features":["Official GitHub Pages supported theme","Dark sidebar navigation","Code-optimised typography","Responsive layout","Single-click enable via _config.yml","No local Jekyll install required","Google Analytics ready","Clean, professional aesthetic"],"slug":"slate","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Serif is a polished small business theme from CloudCannon that pairs warm tones with elegant serif typography to create a trustworthy, professional presence. It ships with everything a small business site needs β€” services pages, team bios, a blog, and a contact form.\n\nThe CloudCannon compatibility means non-technical users can edit content through a visual CMS without touching any code.\n\n**Who is it for?** Small businesses, consultants, agencies, and professional services firms who want a warm, professional web presence.\n","url":"/themes/serif/","draft":false,"categories":["Business"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Serif Jekyll Theme","description":"A beautiful small business Jekyll theme by CloudCannon. Elegant serif typography, warm tones, and sections for services, team members, and contact.","key_features":["Services Section","Team Pages","Contact Form","GitHub Pages"],"card_description":"Beautiful small business theme with serif typography and service sections.","category":"Business","card_image":"/assets/images/themes/serif-card.webp","theme_screenshots":["/assets/images/themes/serif-screenshot.webp","/assets/images/themes/serif-screenshot-2.webp","/assets/images/themes/serif-screenshot-3.webp"],"demo_url":"https://serif.cloudcannon.com/","github_url":"https://github.com/CloudCannon/serif-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-01-01","added_at":"2026-02-08","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":520,"forks":360,"features":["Services section","Team member pages","Contact page with form","Warm serif typography","Blog included","CloudCannon CMS compatible"],"slug":"serif","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/slate","collection":"themes","next":{"path":"_themes/snowlake.md","relative_path":"_themes/snowlake.md","excerpt":"<p>Snowlake is a fully-featured Jekyll multipurpose theme that covers the full range of modern website types in a single purchase. The headline numbers β€” 27 demos, 17 color schemes, 4 icon sets β€” give you the raw material to build a polished, differentiated site for almost any brief.</p>\n\n","previous":{"path":"_themes/slate.md","relative_path":"_themes/slate.md","id":"/themes/slate","collection":"themes","url":"/themes/slate/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Slate Jekyll Theme","description":"A bold, dark GitHub Pages Jekyll theme with prominent sidebar navigation and strong code styling. Official GitHub Pages theme for developer docs.","key_features":["GitHub Pages","Dark Sidebar","Code Styling","Developer Docs"],"card_description":"Bold, dark GitHub Pages theme for developer docs with sidebar nav.","category":"Documentation","card_image":"/assets/images/themes/slate-card.webp","theme_screenshots":["/assets/images/themes/slate-screenshot.webp","/assets/images/themes/slate-screenshot-2.webp","/assets/images/themes/slate-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/slate/","github_url":"https://github.com/pages-themes/slate","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":700,"features":["Official GitHub Pages supported theme","Dark sidebar navigation","Code-optimised typography","Responsive layout","Single-click enable via _config.yml","No local Jekyll install required","Google Analytics ready","Clean, professional aesthetic"],"slug":"slate","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/snowlake","collection":"themes","next":{"path":"_themes/so-simple.md","relative_path":"_themes/so-simple.md","id":"/themes/so-simple","collection":"themes","url":"/themes/so-simple/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"So Simple Jekyll Theme","description":"A simple Jekyll theme for words and pictures. Clean reading layout with support for author profiles, social links, and Google Analytics.","key_features":["Author Profiles","Social Links","GitHub Pages","Clean Reading"],"card_description":"Simple theme for words and pictures with author profile support.","category":"Blog","card_image":"/assets/images/themes/so-simple-card.webp","theme_screenshots":["/assets/images/themes/so-simple-screenshot.webp","/assets/images/themes/so-simple-screenshot-2.webp","/assets/images/themes/so-simple-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/so-simple-theme/","github_url":"https://github.com/mmistakes/so-simple-theme","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-13","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"3.2.0","license":"MIT","stars":2109,"forks":612,"features":["Clean minimal layout","Author profile with avatar","Social media links","Post categories and tags","Google Analytics support","Disqus comments","GitHub Pages compatible","Responsive images","Related posts section","Customisable colour palette"],"slug":"so-simple","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Snowlake is a fully-featured Jekyll multipurpose theme that covers the full range of modern website types in a single purchase. The headline numbers β€” 27 demos, 17 color schemes, 4 icon sets β€” give you the raw material to build a polished, differentiated site for almost any brief.\n\n### The Slider Revolution Advantage\n\nOne of Snowlake's standout inclusions is Slider Revolution, a premium animated slider plugin that normally costs $16 separately. With it you get animated hero banners, parallax scrolling effects, and full video background support (HTML5, image, and video backgrounds) without any extra purchase or setup. Combined with the parallax sections and smooth-scroll single-page option, the theme handles the kind of rich visual storytelling that premium agency and SaaS landing pages need.\n\n### Branding Flexibility at Scale\n\nSeventeen color schemes means you are not locked into the theme's out-of-the-box appearance. Swap the palette to match your brand in minutes via CSS variables, then choose one of five font options to tune the typography. The result is a site that looks custom-designed rather than theme-purchased. Each of the 27 demos is fully production-ready, covering business, startup, agency, portfolio, photographer, SaaS, digital studio, and creative industry use cases.\n\n### Technical Foundation\n\nBuilt on Jekyll 4.3+ with Bootstrap 5, the codebase is modern and maintainable. The four icon sets totalling 2300+ icons cover every UI need without reaching for external libraries. Retina-ready throughout, with responsive layouts that adapt across mobile, tablet, and desktop.\n\n**Who is it for?** Business owners, creative agencies, digital studios, SaaS founders, and freelancers who need a complete, high-quality website with visual flexibility β€” and who want it running quickly rather than designed from scratch.\n","url":"/themes/snowlake/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Snowlake Jekyll Theme","rating":4.8,"rating_count":47,"description":"A versatile multipurpose Jekyll theme with 27 unique demos, 17 color schemes, 5 font options, Slider Revolution, and 4 icon sets with 2300+ icons. Built on Jekyll 4.3+ and Bootstrap 5 β€” ideal for businesses, agencies, SaaS, and creatives.","card_description":"Multipurpose theme β€” 27 demos, 17 color schemes, Slider Revolution, Bootstrap 5.","price":79,"category":"Business","card_image":"/assets/images/themes/snowlake-card.webp","theme_screenshots":["/assets/images/themes/snowlake-screenshot.webp","/assets/images/themes/snowlake-screenshot-2.webp","/assets/images/themes/snowlake-screenshot-3.webp"],"key_features":["27 Demos","17 Color Schemes","Slider Revolution","2300+ Icons"],"demo_url":"https://snowlake.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/snowlake-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.3","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-05-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":false,"version":"2.0.0","license":"Commercial","features":["27 unique demo layouts for business, agency, SaaS, portfolio, blog, and more","17 color schemes β€” choose your brand palette or create your own","5 font options chosen to match the template's design style","Slider Revolution included free (normally $16) β€” animated banners and sliders","4 icon sets with 2300+ high-quality retina-ready icons","Jekyll 4.3+ and Bootstrap 5 β€” modern, fast, standards-compliant","Parallax sections with image and video background support","Multiple and single-page layout options with smooth scroll","Various header, menu, and slider configurations","Well-written, SEO-optimised HTML5 with commented code","Responsive design compatible with all devices and screen sizes","Various blog and portfolio layout options to mix and match","Clean and professional design suitable for any industry","Retina-ready graphics β€” crisp on all high-density displays","Free updates and top-notch support within 24 hours on weekdays"],"slug":"snowlake","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Slate is one of the twelve official themes supported natively by GitHub Pages, meaning you can enable it with a single line in your `_config.yml` β€” no gem installs, no local setup. Its dark slate sidebar paired with a white content area creates an immediately recognisable, professional look suited to open-source project documentation.\n\nThe code-friendly typography and syntax highlighting make it a natural fit for developer tools and API documentation pages.\n\n**Who is it for?** Developers who want a fast, reliable documentation theme they can enable on any GitHub Pages project in seconds.\n","url":"/themes/slate/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Slate Jekyll Theme","description":"A bold, dark GitHub Pages Jekyll theme with prominent sidebar navigation and strong code styling. Official GitHub Pages theme for developer docs.","key_features":["GitHub Pages","Dark Sidebar","Code Styling","Developer Docs"],"card_description":"Bold, dark GitHub Pages theme for developer docs with sidebar nav.","category":"Documentation","card_image":"/assets/images/themes/slate-card.webp","theme_screenshots":["/assets/images/themes/slate-screenshot.webp","/assets/images/themes/slate-screenshot-2.webp","/assets/images/themes/slate-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/slate/","github_url":"https://github.com/pages-themes/slate","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":700,"features":["Official GitHub Pages supported theme","Dark sidebar navigation","Code-optimised typography","Responsive layout","Single-click enable via _config.yml","No local Jekyll install required","Google Analytics ready","Clean, professional aesthetic"],"slug":"slate","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/snowlake.md","relative_path":"_themes/snowlake.md","excerpt":"<p>Snowlake is a fully-featured Jekyll multipurpose theme that covers the full range of modern website types in a single purchase. The headline numbers β€” 27 demos, 17 color schemes, 4 icon sets β€” give you the raw material to build a polished, differentiated site for almost any brief.</p>\n\n","previous":{"path":"_themes/slate.md","relative_path":"_themes/slate.md","excerpt":"<p>Slate is one of the twelve official themes supported natively by GitHub Pages, meaning you can enable it with a single line in your <code class=\"language-plaintext highlighter-rouge\">_config.yml</code> β€” no gem installs, no local setup. Its dark slate sidebar paired with a white content area creates an immediately recognisable, professional look suited to open-source project documentation.</p>\n\n","previous":{"path":"_themes/serif.md","relative_path":"_themes/serif.md","id":"/themes/serif","collection":"themes","url":"/themes/serif/","draft":false,"categories":["Business"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Serif Jekyll Theme","description":"A beautiful small business Jekyll theme by CloudCannon. Elegant serif typography, warm tones, and sections for services, team members, and contact.","key_features":["Services Section","Team Pages","Contact Form","GitHub Pages"],"card_description":"Beautiful small business theme with serif typography and service sections.","category":"Business","card_image":"/assets/images/themes/serif-card.webp","theme_screenshots":["/assets/images/themes/serif-screenshot.webp","/assets/images/themes/serif-screenshot-2.webp","/assets/images/themes/serif-screenshot-3.webp"],"demo_url":"https://serif.cloudcannon.com/","github_url":"https://github.com/CloudCannon/serif-theme","author":"GitHub Community","github_author_name":"CloudCannon","github_author_url":"https://github.com/CloudCannon","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.6","plugins":["jekyll-feed","jekyll-seo-tag","jekyll-sitemap"],"updated_at":"2024-01-01","added_at":"2026-02-08","popular":false,"trending":false,"bestseller":false,"version":"2.0.0","license":"MIT","stars":520,"forks":360,"features":["Services section","Team member pages","Contact page with form","Warm serif typography","Blog included","CloudCannon CMS compatible"],"slug":"serif","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/slate","collection":"themes","next":{"path":"_themes/snowlake.md","relative_path":"_themes/snowlake.md","id":"/themes/snowlake","collection":"themes","url":"/themes/snowlake/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Snowlake Jekyll Theme","rating":4.8,"rating_count":47,"description":"A versatile multipurpose Jekyll theme with 27 unique demos, 17 color schemes, 5 font options, Slider Revolution, and 4 icon sets with 2300+ icons. Built on Jekyll 4.3+ and Bootstrap 5 β€” ideal for businesses, agencies, SaaS, and creatives.","card_description":"Multipurpose theme β€” 27 demos, 17 color schemes, Slider Revolution, Bootstrap 5.","price":79,"category":"Business","card_image":"/assets/images/themes/snowlake-card.webp","theme_screenshots":["/assets/images/themes/snowlake-screenshot.webp","/assets/images/themes/snowlake-screenshot-2.webp","/assets/images/themes/snowlake-screenshot-3.webp"],"key_features":["27 Demos","17 Color Schemes","Slider Revolution","2300+ Icons"],"demo_url":"https://snowlake.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/snowlake-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.3","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-05-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":false,"version":"2.0.0","license":"Commercial","features":["27 unique demo layouts for business, agency, SaaS, portfolio, blog, and more","17 color schemes β€” choose your brand palette or create your own","5 font options chosen to match the template's design style","Slider Revolution included free (normally $16) β€” animated banners and sliders","4 icon sets with 2300+ high-quality retina-ready icons","Jekyll 4.3+ and Bootstrap 5 β€” modern, fast, standards-compliant","Parallax sections with image and video background support","Multiple and single-page layout options with smooth scroll","Various header, menu, and slider configurations","Well-written, SEO-optimised HTML5 with commented code","Responsive design compatible with all devices and screen sizes","Various blog and portfolio layout options to mix and match","Clean and professional design suitable for any industry","Retina-ready graphics β€” crisp on all high-density displays","Free updates and top-notch support within 24 hours on weekdays"],"slug":"snowlake","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Slate is one of the twelve official themes supported natively by GitHub Pages, meaning you can enable it with a single line in your `_config.yml` β€” no gem installs, no local setup. Its dark slate sidebar paired with a white content area creates an immediately recognisable, professional look suited to open-source project documentation.\n\nThe code-friendly typography and syntax highlighting make it a natural fit for developer tools and API documentation pages.\n\n**Who is it for?** Developers who want a fast, reliable documentation theme they can enable on any GitHub Pages project in seconds.\n","url":"/themes/slate/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Slate Jekyll Theme","description":"A bold, dark GitHub Pages Jekyll theme with prominent sidebar navigation and strong code styling. Official GitHub Pages theme for developer docs.","key_features":["GitHub Pages","Dark Sidebar","Code Styling","Developer Docs"],"card_description":"Bold, dark GitHub Pages theme for developer docs with sidebar nav.","category":"Documentation","card_image":"/assets/images/themes/slate-card.webp","theme_screenshots":["/assets/images/themes/slate-screenshot.webp","/assets/images/themes/slate-screenshot-2.webp","/assets/images/themes/slate-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/slate/","github_url":"https://github.com/pages-themes/slate","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":700,"features":["Official GitHub Pages supported theme","Dark sidebar navigation","Code-optimised typography","Responsive layout","Single-click enable via _config.yml","No local Jekyll install required","Google Analytics ready","Clean, professional aesthetic"],"slug":"slate","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/snowlake","collection":"themes","next":{"path":"_themes/so-simple.md","relative_path":"_themes/so-simple.md","excerpt":"<p>So Simple is a clean, minimal Jekyll theme from Michael Rose β€” the same creator behind Minimal Mistakes. True to its name, it strips away everything non-essential and focuses on typography and readability.</p>\n\n","previous":{"path":"_themes/snowlake.md","relative_path":"_themes/snowlake.md","id":"/themes/snowlake","collection":"themes","url":"/themes/snowlake/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Snowlake Jekyll Theme","rating":4.8,"rating_count":47,"description":"A versatile multipurpose Jekyll theme with 27 unique demos, 17 color schemes, 5 font options, Slider Revolution, and 4 icon sets with 2300+ icons. Built on Jekyll 4.3+ and Bootstrap 5 β€” ideal for businesses, agencies, SaaS, and creatives.","card_description":"Multipurpose theme β€” 27 demos, 17 color schemes, Slider Revolution, Bootstrap 5.","price":79,"category":"Business","card_image":"/assets/images/themes/snowlake-card.webp","theme_screenshots":["/assets/images/themes/snowlake-screenshot.webp","/assets/images/themes/snowlake-screenshot-2.webp","/assets/images/themes/snowlake-screenshot-3.webp"],"key_features":["27 Demos","17 Color Schemes","Slider Revolution","2300+ Icons"],"demo_url":"https://snowlake.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/snowlake-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.3","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-05-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":false,"version":"2.0.0","license":"Commercial","features":["27 unique demo layouts for business, agency, SaaS, portfolio, blog, and more","17 color schemes β€” choose your brand palette or create your own","5 font options chosen to match the template's design style","Slider Revolution included free (normally $16) β€” animated banners and sliders","4 icon sets with 2300+ high-quality retina-ready icons","Jekyll 4.3+ and Bootstrap 5 β€” modern, fast, standards-compliant","Parallax sections with image and video background support","Multiple and single-page layout options with smooth scroll","Various header, menu, and slider configurations","Well-written, SEO-optimised HTML5 with commented code","Responsive design compatible with all devices and screen sizes","Various blog and portfolio layout options to mix and match","Clean and professional design suitable for any industry","Retina-ready graphics β€” crisp on all high-density displays","Free updates and top-notch support within 24 hours on weekdays"],"slug":"snowlake","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/so-simple","collection":"themes","next":{"path":"_themes/swiss.md","relative_path":"_themes/swiss.md","id":"/themes/swiss","collection":"themes","url":"/themes/swiss/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Swiss Jekyll Theme","description":"A bold, typographic Jekyll theme inspired by International Swiss Style design. Strong grid, oversized headings, and a clean black-and-white palette that puts typography first.","key_features":["Swiss Design","Bold Typography","Grid Layout","GitHub Pages"],"card_description":"Bold, typographic theme inspired by Swiss International Style design.","category":"Blog","card_image":"/assets/images/themes/swiss-card.webp","theme_screenshots":["/assets/images/themes/swiss-screenshot.webp","/assets/images/themes/swiss-screenshot-2.webp","/assets/images/themes/swiss-screenshot-3.webp"],"demo_url":"https://broccolini.net/swiss/","github_url":"https://github.com/broccolini/swiss","author":"GitHub Community","github_author_name":"broccolini","github_author_url":"https://github.com/broccolini","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag","jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":400,"forks":200,"features":["Swiss International Style design aesthetic","Bold typographic headings","Clean grid layout","Black and white colour palette","Responsive design","GitHub Pages compatible","Fast and lightweight","Focus on editorial typography"],"slug":"swiss","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"So Simple is a clean, minimal Jekyll theme from Michael Rose β€” the same creator behind Minimal Mistakes. True to its name, it strips away everything non-essential and focuses on typography and readability.\n\nThe theme supports author profiles with avatars and social links, making it ideal for personal blogs where the writer's identity is front and centre.\n\n**Who is it for?** Writers and bloggers who want a clean, no-fuss reading experience without sacrificing flexibility.\n","url":"/themes/so-simple/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"So Simple Jekyll Theme","description":"A simple Jekyll theme for words and pictures. Clean reading layout with support for author profiles, social links, and Google Analytics.","key_features":["Author Profiles","Social Links","GitHub Pages","Clean Reading"],"card_description":"Simple theme for words and pictures with author profile support.","category":"Blog","card_image":"/assets/images/themes/so-simple-card.webp","theme_screenshots":["/assets/images/themes/so-simple-screenshot.webp","/assets/images/themes/so-simple-screenshot-2.webp","/assets/images/themes/so-simple-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/so-simple-theme/","github_url":"https://github.com/mmistakes/so-simple-theme","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-13","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"3.2.0","license":"MIT","stars":2109,"forks":612,"features":["Clean minimal layout","Author profile with avatar","Social media links","Post categories and tags","Google Analytics support","Disqus comments","GitHub Pages compatible","Responsive images","Related posts section","Customisable colour palette"],"slug":"so-simple","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Snowlake is a fully-featured Jekyll multipurpose theme that covers the full range of modern website types in a single purchase. The headline numbers β€” 27 demos, 17 color schemes, 4 icon sets β€” give you the raw material to build a polished, differentiated site for almost any brief.\n\n### The Slider Revolution Advantage\n\nOne of Snowlake's standout inclusions is Slider Revolution, a premium animated slider plugin that normally costs $16 separately. With it you get animated hero banners, parallax scrolling effects, and full video background support (HTML5, image, and video backgrounds) without any extra purchase or setup. Combined with the parallax sections and smooth-scroll single-page option, the theme handles the kind of rich visual storytelling that premium agency and SaaS landing pages need.\n\n### Branding Flexibility at Scale\n\nSeventeen color schemes means you are not locked into the theme's out-of-the-box appearance. Swap the palette to match your brand in minutes via CSS variables, then choose one of five font options to tune the typography. The result is a site that looks custom-designed rather than theme-purchased. Each of the 27 demos is fully production-ready, covering business, startup, agency, portfolio, photographer, SaaS, digital studio, and creative industry use cases.\n\n### Technical Foundation\n\nBuilt on Jekyll 4.3+ with Bootstrap 5, the codebase is modern and maintainable. The four icon sets totalling 2300+ icons cover every UI need without reaching for external libraries. Retina-ready throughout, with responsive layouts that adapt across mobile, tablet, and desktop.\n\n**Who is it for?** Business owners, creative agencies, digital studios, SaaS founders, and freelancers who need a complete, high-quality website with visual flexibility β€” and who want it running quickly rather than designed from scratch.\n","url":"/themes/snowlake/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Snowlake Jekyll Theme","rating":4.8,"rating_count":47,"description":"A versatile multipurpose Jekyll theme with 27 unique demos, 17 color schemes, 5 font options, Slider Revolution, and 4 icon sets with 2300+ icons. Built on Jekyll 4.3+ and Bootstrap 5 β€” ideal for businesses, agencies, SaaS, and creatives.","card_description":"Multipurpose theme β€” 27 demos, 17 color schemes, Slider Revolution, Bootstrap 5.","price":79,"category":"Business","card_image":"/assets/images/themes/snowlake-card.webp","theme_screenshots":["/assets/images/themes/snowlake-screenshot.webp","/assets/images/themes/snowlake-screenshot-2.webp","/assets/images/themes/snowlake-screenshot-3.webp"],"key_features":["27 Demos","17 Color Schemes","Slider Revolution","2300+ Icons"],"demo_url":"https://snowlake.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/snowlake-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.3","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-05-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":false,"version":"2.0.0","license":"Commercial","features":["27 unique demo layouts for business, agency, SaaS, portfolio, blog, and more","17 color schemes β€” choose your brand palette or create your own","5 font options chosen to match the template's design style","Slider Revolution included free (normally $16) β€” animated banners and sliders","4 icon sets with 2300+ high-quality retina-ready icons","Jekyll 4.3+ and Bootstrap 5 β€” modern, fast, standards-compliant","Parallax sections with image and video background support","Multiple and single-page layout options with smooth scroll","Various header, menu, and slider configurations","Well-written, SEO-optimised HTML5 with commented code","Responsive design compatible with all devices and screen sizes","Various blog and portfolio layout options to mix and match","Clean and professional design suitable for any industry","Retina-ready graphics β€” crisp on all high-density displays","Free updates and top-notch support within 24 hours on weekdays"],"slug":"snowlake","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/so-simple.md","relative_path":"_themes/so-simple.md","excerpt":"<p>So Simple is a clean, minimal Jekyll theme from Michael Rose β€” the same creator behind Minimal Mistakes. True to its name, it strips away everything non-essential and focuses on typography and readability.</p>\n\n","previous":{"path":"_themes/snowlake.md","relative_path":"_themes/snowlake.md","excerpt":"<p>Snowlake is a fully-featured Jekyll multipurpose theme that covers the full range of modern website types in a single purchase. The headline numbers β€” 27 demos, 17 color schemes, 4 icon sets β€” give you the raw material to build a polished, differentiated site for almost any brief.</p>\n\n","previous":{"path":"_themes/slate.md","relative_path":"_themes/slate.md","id":"/themes/slate","collection":"themes","url":"/themes/slate/","draft":false,"categories":["Documentation"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Slate Jekyll Theme","description":"A bold, dark GitHub Pages Jekyll theme with prominent sidebar navigation and strong code styling. Official GitHub Pages theme for developer docs.","key_features":["GitHub Pages","Dark Sidebar","Code Styling","Developer Docs"],"card_description":"Bold, dark GitHub Pages theme for developer docs with sidebar nav.","category":"Documentation","card_image":"/assets/images/themes/slate-card.webp","theme_screenshots":["/assets/images/themes/slate-screenshot.webp","/assets/images/themes/slate-screenshot-2.webp","/assets/images/themes/slate-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/slate/","github_url":"https://github.com/pages-themes/slate","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":700,"forks":700,"features":["Official GitHub Pages supported theme","Dark sidebar navigation","Code-optimised typography","Responsive layout","Single-click enable via _config.yml","No local Jekyll install required","Google Analytics ready","Clean, professional aesthetic"],"slug":"slate","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/snowlake","collection":"themes","next":{"path":"_themes/so-simple.md","relative_path":"_themes/so-simple.md","id":"/themes/so-simple","collection":"themes","url":"/themes/so-simple/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"So Simple Jekyll Theme","description":"A simple Jekyll theme for words and pictures. Clean reading layout with support for author profiles, social links, and Google Analytics.","key_features":["Author Profiles","Social Links","GitHub Pages","Clean Reading"],"card_description":"Simple theme for words and pictures with author profile support.","category":"Blog","card_image":"/assets/images/themes/so-simple-card.webp","theme_screenshots":["/assets/images/themes/so-simple-screenshot.webp","/assets/images/themes/so-simple-screenshot-2.webp","/assets/images/themes/so-simple-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/so-simple-theme/","github_url":"https://github.com/mmistakes/so-simple-theme","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-13","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"3.2.0","license":"MIT","stars":2109,"forks":612,"features":["Clean minimal layout","Author profile with avatar","Social media links","Post categories and tags","Google Analytics support","Disqus comments","GitHub Pages compatible","Responsive images","Related posts section","Customisable colour palette"],"slug":"so-simple","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Snowlake is a fully-featured Jekyll multipurpose theme that covers the full range of modern website types in a single purchase. The headline numbers β€” 27 demos, 17 color schemes, 4 icon sets β€” give you the raw material to build a polished, differentiated site for almost any brief.\n\n### The Slider Revolution Advantage\n\nOne of Snowlake's standout inclusions is Slider Revolution, a premium animated slider plugin that normally costs $16 separately. With it you get animated hero banners, parallax scrolling effects, and full video background support (HTML5, image, and video backgrounds) without any extra purchase or setup. Combined with the parallax sections and smooth-scroll single-page option, the theme handles the kind of rich visual storytelling that premium agency and SaaS landing pages need.\n\n### Branding Flexibility at Scale\n\nSeventeen color schemes means you are not locked into the theme's out-of-the-box appearance. Swap the palette to match your brand in minutes via CSS variables, then choose one of five font options to tune the typography. The result is a site that looks custom-designed rather than theme-purchased. Each of the 27 demos is fully production-ready, covering business, startup, agency, portfolio, photographer, SaaS, digital studio, and creative industry use cases.\n\n### Technical Foundation\n\nBuilt on Jekyll 4.3+ with Bootstrap 5, the codebase is modern and maintainable. The four icon sets totalling 2300+ icons cover every UI need without reaching for external libraries. Retina-ready throughout, with responsive layouts that adapt across mobile, tablet, and desktop.\n\n**Who is it for?** Business owners, creative agencies, digital studios, SaaS founders, and freelancers who need a complete, high-quality website with visual flexibility β€” and who want it running quickly rather than designed from scratch.\n","url":"/themes/snowlake/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Snowlake Jekyll Theme","rating":4.8,"rating_count":47,"description":"A versatile multipurpose Jekyll theme with 27 unique demos, 17 color schemes, 5 font options, Slider Revolution, and 4 icon sets with 2300+ icons. Built on Jekyll 4.3+ and Bootstrap 5 β€” ideal for businesses, agencies, SaaS, and creatives.","card_description":"Multipurpose theme β€” 27 demos, 17 color schemes, Slider Revolution, Bootstrap 5.","price":79,"category":"Business","card_image":"/assets/images/themes/snowlake-card.webp","theme_screenshots":["/assets/images/themes/snowlake-screenshot.webp","/assets/images/themes/snowlake-screenshot-2.webp","/assets/images/themes/snowlake-screenshot-3.webp"],"key_features":["27 Demos","17 Color Schemes","Slider Revolution","2300+ Icons"],"demo_url":"https://snowlake.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/snowlake-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.3","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-05-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":false,"version":"2.0.0","license":"Commercial","features":["27 unique demo layouts for business, agency, SaaS, portfolio, blog, and more","17 color schemes β€” choose your brand palette or create your own","5 font options chosen to match the template's design style","Slider Revolution included free (normally $16) β€” animated banners and sliders","4 icon sets with 2300+ high-quality retina-ready icons","Jekyll 4.3+ and Bootstrap 5 β€” modern, fast, standards-compliant","Parallax sections with image and video background support","Multiple and single-page layout options with smooth scroll","Various header, menu, and slider configurations","Well-written, SEO-optimised HTML5 with commented code","Responsive design compatible with all devices and screen sizes","Various blog and portfolio layout options to mix and match","Clean and professional design suitable for any industry","Retina-ready graphics β€” crisp on all high-density displays","Free updates and top-notch support within 24 hours on weekdays"],"slug":"snowlake","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/so-simple","collection":"themes","next":{"path":"_themes/swiss.md","relative_path":"_themes/swiss.md","excerpt":"<p>Swiss is a love letter to the International Typographic Style β€” the design movement behind some of the most influential graphic design of the 20th century. Diana Mounter (GitHub’s Head of Design at the time) brought that aesthetic to Jekyll: strong grid, oversized Helvetica-inspired headings, and a restrained black-and-white palette that lets typography do all the work.</p>\n\n","previous":{"path":"_themes/so-simple.md","relative_path":"_themes/so-simple.md","id":"/themes/so-simple","collection":"themes","url":"/themes/so-simple/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"So Simple Jekyll Theme","description":"A simple Jekyll theme for words and pictures. Clean reading layout with support for author profiles, social links, and Google Analytics.","key_features":["Author Profiles","Social Links","GitHub Pages","Clean Reading"],"card_description":"Simple theme for words and pictures with author profile support.","category":"Blog","card_image":"/assets/images/themes/so-simple-card.webp","theme_screenshots":["/assets/images/themes/so-simple-screenshot.webp","/assets/images/themes/so-simple-screenshot-2.webp","/assets/images/themes/so-simple-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/so-simple-theme/","github_url":"https://github.com/mmistakes/so-simple-theme","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-13","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"3.2.0","license":"MIT","stars":2109,"forks":612,"features":["Clean minimal layout","Author profile with avatar","Social media links","Post categories and tags","Google Analytics support","Disqus comments","GitHub Pages compatible","Responsive images","Related posts section","Customisable colour palette"],"slug":"so-simple","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/swiss","collection":"themes","next":{"path":"_themes/tactile.md","relative_path":"_themes/tactile.md","id":"/themes/tactile","collection":"themes","url":"/themes/tactile/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tactile Jekyll Theme","description":"A textured, warm GitHub Pages Jekyll theme with a hand-crafted sidebar style. Official GitHub Pages theme with classic personality and charm.","key_features":["GitHub Pages","Hand-Crafted Style","Warm Palette","Official GH Theme"],"card_description":"Textured, warm GitHub Pages theme with hand-crafted sidebar style.","category":"Personal","card_image":"/assets/images/themes/tactile-card.webp","theme_screenshots":["/assets/images/themes/tactile-screenshot.webp","/assets/images/themes/tactile-screenshot-2.webp","/assets/images/themes/tactile-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/tactile/","github_url":"https://github.com/pages-themes/tactile","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Textured sidebar with handcrafted aesthetic","Green accent colour scheme","Responsive sidebar layout","Single-line enable via _config.yml","No local setup required","Distinctive, warm personality"],"slug":"tactile","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Swiss is a love letter to the International Typographic Style β€” the design movement behind some of the most influential graphic design of the 20th century. Diana Mounter (GitHub's Head of Design at the time) brought that aesthetic to Jekyll: strong grid, oversized Helvetica-inspired headings, and a restrained black-and-white palette that lets typography do all the work.\n\nThe result is a theme that feels confidently editorial. Nothing is decorative; everything is intentional.\n\n**Who is it for?** Designers, writers, and developers who appreciate typographic rigour and want a site that looks like it was designed, not just assembled.\n","url":"/themes/swiss/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Swiss Jekyll Theme","description":"A bold, typographic Jekyll theme inspired by International Swiss Style design. Strong grid, oversized headings, and a clean black-and-white palette that puts typography first.","key_features":["Swiss Design","Bold Typography","Grid Layout","GitHub Pages"],"card_description":"Bold, typographic theme inspired by Swiss International Style design.","category":"Blog","card_image":"/assets/images/themes/swiss-card.webp","theme_screenshots":["/assets/images/themes/swiss-screenshot.webp","/assets/images/themes/swiss-screenshot-2.webp","/assets/images/themes/swiss-screenshot-3.webp"],"demo_url":"https://broccolini.net/swiss/","github_url":"https://github.com/broccolini/swiss","author":"GitHub Community","github_author_name":"broccolini","github_author_url":"https://github.com/broccolini","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag","jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":400,"forks":200,"features":["Swiss International Style design aesthetic","Bold typographic headings","Clean grid layout","Black and white colour palette","Responsive design","GitHub Pages compatible","Fast and lightweight","Focus on editorial typography"],"slug":"swiss","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"So Simple is a clean, minimal Jekyll theme from Michael Rose β€” the same creator behind Minimal Mistakes. True to its name, it strips away everything non-essential and focuses on typography and readability.\n\nThe theme supports author profiles with avatars and social links, making it ideal for personal blogs where the writer's identity is front and centre.\n\n**Who is it for?** Writers and bloggers who want a clean, no-fuss reading experience without sacrificing flexibility.\n","url":"/themes/so-simple/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"So Simple Jekyll Theme","description":"A simple Jekyll theme for words and pictures. Clean reading layout with support for author profiles, social links, and Google Analytics.","key_features":["Author Profiles","Social Links","GitHub Pages","Clean Reading"],"card_description":"Simple theme for words and pictures with author profile support.","category":"Blog","card_image":"/assets/images/themes/so-simple-card.webp","theme_screenshots":["/assets/images/themes/so-simple-screenshot.webp","/assets/images/themes/so-simple-screenshot-2.webp","/assets/images/themes/so-simple-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/so-simple-theme/","github_url":"https://github.com/mmistakes/so-simple-theme","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-13","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"3.2.0","license":"MIT","stars":2109,"forks":612,"features":["Clean minimal layout","Author profile with avatar","Social media links","Post categories and tags","Google Analytics support","Disqus comments","GitHub Pages compatible","Responsive images","Related posts section","Customisable colour palette"],"slug":"so-simple","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/swiss.md","relative_path":"_themes/swiss.md","excerpt":"<p>Swiss is a love letter to the International Typographic Style β€” the design movement behind some of the most influential graphic design of the 20th century. Diana Mounter (GitHub’s Head of Design at the time) brought that aesthetic to Jekyll: strong grid, oversized Helvetica-inspired headings, and a restrained black-and-white palette that lets typography do all the work.</p>\n\n","previous":{"path":"_themes/so-simple.md","relative_path":"_themes/so-simple.md","excerpt":"<p>So Simple is a clean, minimal Jekyll theme from Michael Rose β€” the same creator behind Minimal Mistakes. True to its name, it strips away everything non-essential and focuses on typography and readability.</p>\n\n","previous":{"path":"_themes/snowlake.md","relative_path":"_themes/snowlake.md","id":"/themes/snowlake","collection":"themes","url":"/themes/snowlake/","draft":false,"categories":["Business"],"layout":"theme","price_type":"premium","featured":true,"dark_mode":true,"responsive":true,"title":"Snowlake Jekyll Theme","rating":4.8,"rating_count":47,"description":"A versatile multipurpose Jekyll theme with 27 unique demos, 17 color schemes, 5 font options, Slider Revolution, and 4 icon sets with 2300+ icons. Built on Jekyll 4.3+ and Bootstrap 5 β€” ideal for businesses, agencies, SaaS, and creatives.","card_description":"Multipurpose theme β€” 27 demos, 17 color schemes, Slider Revolution, Bootstrap 5.","price":79,"category":"Business","card_image":"/assets/images/themes/snowlake-card.webp","theme_screenshots":["/assets/images/themes/snowlake-screenshot.webp","/assets/images/themes/snowlake-screenshot-2.webp","/assets/images/themes/snowlake-screenshot-3.webp"],"key_features":["27 Demos","17 Color Schemes","Slider Revolution","2300+ Icons"],"demo_url":"https://snowlake.tortoizthemes.com/","buy_url":"https://tortoizthemes.com/theme/snowlake-jekyll-theme/","author":"Tortoiz Themes","author_url":"https://tortoizthemes.com/","github_author_name":"tortoizthemes","support":"6 months","github_pages_compatible":true,"min_jekyll_version":"4.3","plugins":["jekyll-feed","jekyll-seo-tag"],"updated_at":"2025-05-01","added_at":"2026-06-27","popular":true,"trending":true,"bestseller":false,"version":"2.0.0","license":"Commercial","features":["27 unique demo layouts for business, agency, SaaS, portfolio, blog, and more","17 color schemes β€” choose your brand palette or create your own","5 font options chosen to match the template's design style","Slider Revolution included free (normally $16) β€” animated banners and sliders","4 icon sets with 2300+ high-quality retina-ready icons","Jekyll 4.3+ and Bootstrap 5 β€” modern, fast, standards-compliant","Parallax sections with image and video background support","Multiple and single-page layout options with smooth scroll","Various header, menu, and slider configurations","Well-written, SEO-optimised HTML5 with commented code","Responsive design compatible with all devices and screen sizes","Various blog and portfolio layout options to mix and match","Clean and professional design suitable for any industry","Retina-ready graphics β€” crisp on all high-density displays","Free updates and top-notch support within 24 hours on weekdays"],"slug":"snowlake","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/so-simple","collection":"themes","next":{"path":"_themes/swiss.md","relative_path":"_themes/swiss.md","id":"/themes/swiss","collection":"themes","url":"/themes/swiss/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Swiss Jekyll Theme","description":"A bold, typographic Jekyll theme inspired by International Swiss Style design. Strong grid, oversized headings, and a clean black-and-white palette that puts typography first.","key_features":["Swiss Design","Bold Typography","Grid Layout","GitHub Pages"],"card_description":"Bold, typographic theme inspired by Swiss International Style design.","category":"Blog","card_image":"/assets/images/themes/swiss-card.webp","theme_screenshots":["/assets/images/themes/swiss-screenshot.webp","/assets/images/themes/swiss-screenshot-2.webp","/assets/images/themes/swiss-screenshot-3.webp"],"demo_url":"https://broccolini.net/swiss/","github_url":"https://github.com/broccolini/swiss","author":"GitHub Community","github_author_name":"broccolini","github_author_url":"https://github.com/broccolini","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag","jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":400,"forks":200,"features":["Swiss International Style design aesthetic","Bold typographic headings","Clean grid layout","Black and white colour palette","Responsive design","GitHub Pages compatible","Fast and lightweight","Focus on editorial typography"],"slug":"swiss","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"So Simple is a clean, minimal Jekyll theme from Michael Rose β€” the same creator behind Minimal Mistakes. True to its name, it strips away everything non-essential and focuses on typography and readability.\n\nThe theme supports author profiles with avatars and social links, making it ideal for personal blogs where the writer's identity is front and centre.\n\n**Who is it for?** Writers and bloggers who want a clean, no-fuss reading experience without sacrificing flexibility.\n","url":"/themes/so-simple/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"So Simple Jekyll Theme","description":"A simple Jekyll theme for words and pictures. Clean reading layout with support for author profiles, social links, and Google Analytics.","key_features":["Author Profiles","Social Links","GitHub Pages","Clean Reading"],"card_description":"Simple theme for words and pictures with author profile support.","category":"Blog","card_image":"/assets/images/themes/so-simple-card.webp","theme_screenshots":["/assets/images/themes/so-simple-screenshot.webp","/assets/images/themes/so-simple-screenshot-2.webp","/assets/images/themes/so-simple-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/so-simple-theme/","github_url":"https://github.com/mmistakes/so-simple-theme","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-13","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"3.2.0","license":"MIT","stars":2109,"forks":612,"features":["Clean minimal layout","Author profile with avatar","Social media links","Post categories and tags","Google Analytics support","Disqus comments","GitHub Pages compatible","Responsive images","Related posts section","Customisable colour palette"],"slug":"so-simple","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/swiss","collection":"themes","next":{"path":"_themes/tactile.md","relative_path":"_themes/tactile.md","excerpt":"<p>Tactile is the most characterful of GitHub’s official themes. Its wood-grain-textured sidebar and green accent colour palette give it a warm, handcrafted feel that’s quite unlike the clean minimalism of the other official themes. The result is a site that feels personal and approachable β€” like something built with care.</p>\n\n","previous":{"path":"_themes/swiss.md","relative_path":"_themes/swiss.md","id":"/themes/swiss","collection":"themes","url":"/themes/swiss/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Swiss Jekyll Theme","description":"A bold, typographic Jekyll theme inspired by International Swiss Style design. Strong grid, oversized headings, and a clean black-and-white palette that puts typography first.","key_features":["Swiss Design","Bold Typography","Grid Layout","GitHub Pages"],"card_description":"Bold, typographic theme inspired by Swiss International Style design.","category":"Blog","card_image":"/assets/images/themes/swiss-card.webp","theme_screenshots":["/assets/images/themes/swiss-screenshot.webp","/assets/images/themes/swiss-screenshot-2.webp","/assets/images/themes/swiss-screenshot-3.webp"],"demo_url":"https://broccolini.net/swiss/","github_url":"https://github.com/broccolini/swiss","author":"GitHub Community","github_author_name":"broccolini","github_author_url":"https://github.com/broccolini","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag","jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":400,"forks":200,"features":["Swiss International Style design aesthetic","Bold typographic headings","Clean grid layout","Black and white colour palette","Responsive design","GitHub Pages compatible","Fast and lightweight","Focus on editorial typography"],"slug":"swiss","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/tactile","collection":"themes","next":{"path":"_themes/tale.md","relative_path":"_themes/tale.md","id":"/themes/tale","collection":"themes","url":"/themes/tale/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tale Jekyll Theme","description":"An minimal Jekyll theme focused on content. Elegant single-column layout with beautiful typography, clean post listings, and zero visual noise β€” perfect for long-form writing.","key_features":["Single Column","Clean Typography","Minimal Design","GitHub Pages"],"card_description":"Minimal, elegant single-column blog for long-form writing.","category":"Blog","card_image":"/assets/images/themes/tale-card.webp","theme_screenshots":["/assets/images/themes/tale-screenshot.webp","/assets/images/themes/tale-screenshot-2.webp","/assets/images/themes/tale-screenshot-3.webp"],"demo_url":"https://chesterhow.github.io/tale/","github_url":"https://github.com/chesterhow/tale","author":"GitHub Community","github_author_name":"chesterhow","github_author_url":"https://github.com/chesterhow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.1","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2022-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1400,"forks":500,"features":["Minimal single-column layout","Paginated post listing","Tag-based post organisation","Post estimated reading time","Syntax highlighting","Disqus comments support","Google Analytics","RSS feed","Responsive design","GitHub Pages compatible"],"slug":"tale","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Tactile is the most characterful of GitHub's official themes. Its wood-grain-textured sidebar and green accent colour palette give it a warm, handcrafted feel that's quite unlike the clean minimalism of the other official themes. The result is a site that feels personal and approachable β€” like something built with care.\n\nIt's particularly effective for open-source projects that want to stand out, personal portfolios with a creative bent, or any project that wants its page to have a real identity.\n\n**Who is it for?** Developers and creators who want a GitHub Pages site with distinct visual personality and warmth, as an alternative to the more minimal official themes.\n","url":"/themes/tactile/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tactile Jekyll Theme","description":"A textured, warm GitHub Pages Jekyll theme with a hand-crafted sidebar style. Official GitHub Pages theme with classic personality and charm.","key_features":["GitHub Pages","Hand-Crafted Style","Warm Palette","Official GH Theme"],"card_description":"Textured, warm GitHub Pages theme with hand-crafted sidebar style.","category":"Personal","card_image":"/assets/images/themes/tactile-card.webp","theme_screenshots":["/assets/images/themes/tactile-screenshot.webp","/assets/images/themes/tactile-screenshot-2.webp","/assets/images/themes/tactile-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/tactile/","github_url":"https://github.com/pages-themes/tactile","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Textured sidebar with handcrafted aesthetic","Green accent colour scheme","Responsive sidebar layout","Single-line enable via _config.yml","No local setup required","Distinctive, warm personality"],"slug":"tactile","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Swiss is a love letter to the International Typographic Style β€” the design movement behind some of the most influential graphic design of the 20th century. Diana Mounter (GitHub's Head of Design at the time) brought that aesthetic to Jekyll: strong grid, oversized Helvetica-inspired headings, and a restrained black-and-white palette that lets typography do all the work.\n\nThe result is a theme that feels confidently editorial. Nothing is decorative; everything is intentional.\n\n**Who is it for?** Designers, writers, and developers who appreciate typographic rigour and want a site that looks like it was designed, not just assembled.\n","url":"/themes/swiss/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Swiss Jekyll Theme","description":"A bold, typographic Jekyll theme inspired by International Swiss Style design. Strong grid, oversized headings, and a clean black-and-white palette that puts typography first.","key_features":["Swiss Design","Bold Typography","Grid Layout","GitHub Pages"],"card_description":"Bold, typographic theme inspired by Swiss International Style design.","category":"Blog","card_image":"/assets/images/themes/swiss-card.webp","theme_screenshots":["/assets/images/themes/swiss-screenshot.webp","/assets/images/themes/swiss-screenshot-2.webp","/assets/images/themes/swiss-screenshot-3.webp"],"demo_url":"https://broccolini.net/swiss/","github_url":"https://github.com/broccolini/swiss","author":"GitHub Community","github_author_name":"broccolini","github_author_url":"https://github.com/broccolini","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag","jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":400,"forks":200,"features":["Swiss International Style design aesthetic","Bold typographic headings","Clean grid layout","Black and white colour palette","Responsive design","GitHub Pages compatible","Fast and lightweight","Focus on editorial typography"],"slug":"swiss","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/tactile.md","relative_path":"_themes/tactile.md","excerpt":"<p>Tactile is the most characterful of GitHub’s official themes. Its wood-grain-textured sidebar and green accent colour palette give it a warm, handcrafted feel that’s quite unlike the clean minimalism of the other official themes. The result is a site that feels personal and approachable β€” like something built with care.</p>\n\n","previous":{"path":"_themes/swiss.md","relative_path":"_themes/swiss.md","excerpt":"<p>Swiss is a love letter to the International Typographic Style β€” the design movement behind some of the most influential graphic design of the 20th century. Diana Mounter (GitHub’s Head of Design at the time) brought that aesthetic to Jekyll: strong grid, oversized Helvetica-inspired headings, and a restrained black-and-white palette that lets typography do all the work.</p>\n\n","previous":{"path":"_themes/so-simple.md","relative_path":"_themes/so-simple.md","id":"/themes/so-simple","collection":"themes","url":"/themes/so-simple/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"So Simple Jekyll Theme","description":"A simple Jekyll theme for words and pictures. Clean reading layout with support for author profiles, social links, and Google Analytics.","key_features":["Author Profiles","Social Links","GitHub Pages","Clean Reading"],"card_description":"Simple theme for words and pictures with author profile support.","category":"Blog","card_image":"/assets/images/themes/so-simple-card.webp","theme_screenshots":["/assets/images/themes/so-simple-screenshot.webp","/assets/images/themes/so-simple-screenshot-2.webp","/assets/images/themes/so-simple-screenshot-3.webp"],"demo_url":"https://mmistakes.github.io/so-simple-theme/","github_url":"https://github.com/mmistakes/so-simple-theme","author":"GitHub Community","github_author_name":"Michael Rose","github_author_url":"https://github.com/mmistakes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.7","plugins":["jekyll-feed","jekyll-sitemap","jekyll-paginate"],"updated_at":"2024-08-13","added_at":"2026-04-01","popular":true,"trending":false,"bestseller":false,"version":"3.2.0","license":"MIT","stars":2109,"forks":612,"features":["Clean minimal layout","Author profile with avatar","Social media links","Post categories and tags","Google Analytics support","Disqus comments","GitHub Pages compatible","Responsive images","Related posts section","Customisable colour palette"],"slug":"so-simple","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/swiss","collection":"themes","next":{"path":"_themes/tactile.md","relative_path":"_themes/tactile.md","id":"/themes/tactile","collection":"themes","url":"/themes/tactile/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tactile Jekyll Theme","description":"A textured, warm GitHub Pages Jekyll theme with a hand-crafted sidebar style. Official GitHub Pages theme with classic personality and charm.","key_features":["GitHub Pages","Hand-Crafted Style","Warm Palette","Official GH Theme"],"card_description":"Textured, warm GitHub Pages theme with hand-crafted sidebar style.","category":"Personal","card_image":"/assets/images/themes/tactile-card.webp","theme_screenshots":["/assets/images/themes/tactile-screenshot.webp","/assets/images/themes/tactile-screenshot-2.webp","/assets/images/themes/tactile-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/tactile/","github_url":"https://github.com/pages-themes/tactile","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Textured sidebar with handcrafted aesthetic","Green accent colour scheme","Responsive sidebar layout","Single-line enable via _config.yml","No local setup required","Distinctive, warm personality"],"slug":"tactile","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Swiss is a love letter to the International Typographic Style β€” the design movement behind some of the most influential graphic design of the 20th century. Diana Mounter (GitHub's Head of Design at the time) brought that aesthetic to Jekyll: strong grid, oversized Helvetica-inspired headings, and a restrained black-and-white palette that lets typography do all the work.\n\nThe result is a theme that feels confidently editorial. Nothing is decorative; everything is intentional.\n\n**Who is it for?** Designers, writers, and developers who appreciate typographic rigour and want a site that looks like it was designed, not just assembled.\n","url":"/themes/swiss/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Swiss Jekyll Theme","description":"A bold, typographic Jekyll theme inspired by International Swiss Style design. Strong grid, oversized headings, and a clean black-and-white palette that puts typography first.","key_features":["Swiss Design","Bold Typography","Grid Layout","GitHub Pages"],"card_description":"Bold, typographic theme inspired by Swiss International Style design.","category":"Blog","card_image":"/assets/images/themes/swiss-card.webp","theme_screenshots":["/assets/images/themes/swiss-screenshot.webp","/assets/images/themes/swiss-screenshot-2.webp","/assets/images/themes/swiss-screenshot-3.webp"],"demo_url":"https://broccolini.net/swiss/","github_url":"https://github.com/broccolini/swiss","author":"GitHub Community","github_author_name":"broccolini","github_author_url":"https://github.com/broccolini","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag","jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":400,"forks":200,"features":["Swiss International Style design aesthetic","Bold typographic headings","Clean grid layout","Black and white colour palette","Responsive design","GitHub Pages compatible","Fast and lightweight","Focus on editorial typography"],"slug":"swiss","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/tactile","collection":"themes","next":{"path":"_themes/tale.md","relative_path":"_themes/tale.md","excerpt":"<p>Tale is a minimal Jekyll theme built around the idea that nothing should compete with your writing. Its single-column layout, careful typographic choices, and complete absence of visual clutter create a reading experience that feels calm and focused.</p>\n\n","previous":{"path":"_themes/tactile.md","relative_path":"_themes/tactile.md","id":"/themes/tactile","collection":"themes","url":"/themes/tactile/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tactile Jekyll Theme","description":"A textured, warm GitHub Pages Jekyll theme with a hand-crafted sidebar style. Official GitHub Pages theme with classic personality and charm.","key_features":["GitHub Pages","Hand-Crafted Style","Warm Palette","Official GH Theme"],"card_description":"Textured, warm GitHub Pages theme with hand-crafted sidebar style.","category":"Personal","card_image":"/assets/images/themes/tactile-card.webp","theme_screenshots":["/assets/images/themes/tactile-screenshot.webp","/assets/images/themes/tactile-screenshot-2.webp","/assets/images/themes/tactile-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/tactile/","github_url":"https://github.com/pages-themes/tactile","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Textured sidebar with handcrafted aesthetic","Green accent colour scheme","Responsive sidebar layout","Single-line enable via _config.yml","No local setup required","Distinctive, warm personality"],"slug":"tactile","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/tale","collection":"themes","next":{"path":"_themes/type-theme.md","relative_path":"_themes/type-theme.md","id":"/themes/type-theme","collection":"themes","url":"/themes/type-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Type Theme Jekyll Theme","description":"A free, open-source theme for Jekyll focused purely on typography and reading. Minimal design, fast load times, and a beautifully simple blog layout for writers who mean business.","key_features":["Typography Focus","Minimal Design","GitHub Pages","Fast Loading"],"card_description":"Typography-focused minimal theme for writers who value clean reading.","category":"Blog","card_image":"/assets/images/themes/type-theme-card.webp","theme_screenshots":["/assets/images/themes/type-theme-screenshot.webp","/assets/images/themes/type-theme-screenshot-2.webp","/assets/images/themes/type-theme-screenshot-3.webp"],"demo_url":"https://rohanchandra.github.io/type-theme/","github_url":"https://github.com/rohanchandra/type-theme","author":"GitHub Community","github_author_name":"rohanchandra","github_author_url":"https://github.com/rohanchandra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2021-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1000,"forks":600,"features":["Typography-first design","Google Fonts integration","Paginated post listing","Category and tag pages","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","Social links in header","GitHub Pages compatible"],"slug":"type-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Tale is a minimal Jekyll theme built around the idea that nothing should compete with your writing. Its single-column layout, careful typographic choices, and complete absence of visual clutter create a reading experience that feels calm and focused.\n\nThe theme handles the basics well β€” pagination, tags, syntax highlighting, comments β€” without adding anything unnecessary. If you've ever felt that most blog themes have too much going on, Tale is the answer.\n\n**Who is it for?** Writers, journalists, and developers who want their words to be the centrepiece of every page with no distracting chrome around them.\n","url":"/themes/tale/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tale Jekyll Theme","description":"An minimal Jekyll theme focused on content. Elegant single-column layout with beautiful typography, clean post listings, and zero visual noise β€” perfect for long-form writing.","key_features":["Single Column","Clean Typography","Minimal Design","GitHub Pages"],"card_description":"Minimal, elegant single-column blog for long-form writing.","category":"Blog","card_image":"/assets/images/themes/tale-card.webp","theme_screenshots":["/assets/images/themes/tale-screenshot.webp","/assets/images/themes/tale-screenshot-2.webp","/assets/images/themes/tale-screenshot-3.webp"],"demo_url":"https://chesterhow.github.io/tale/","github_url":"https://github.com/chesterhow/tale","author":"GitHub Community","github_author_name":"chesterhow","github_author_url":"https://github.com/chesterhow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.1","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2022-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1400,"forks":500,"features":["Minimal single-column layout","Paginated post listing","Tag-based post organisation","Post estimated reading time","Syntax highlighting","Disqus comments support","Google Analytics","RSS feed","Responsive design","GitHub Pages compatible"],"slug":"tale","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Tactile is the most characterful of GitHub's official themes. Its wood-grain-textured sidebar and green accent colour palette give it a warm, handcrafted feel that's quite unlike the clean minimalism of the other official themes. The result is a site that feels personal and approachable β€” like something built with care.\n\nIt's particularly effective for open-source projects that want to stand out, personal portfolios with a creative bent, or any project that wants its page to have a real identity.\n\n**Who is it for?** Developers and creators who want a GitHub Pages site with distinct visual personality and warmth, as an alternative to the more minimal official themes.\n","url":"/themes/tactile/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tactile Jekyll Theme","description":"A textured, warm GitHub Pages Jekyll theme with a hand-crafted sidebar style. Official GitHub Pages theme with classic personality and charm.","key_features":["GitHub Pages","Hand-Crafted Style","Warm Palette","Official GH Theme"],"card_description":"Textured, warm GitHub Pages theme with hand-crafted sidebar style.","category":"Personal","card_image":"/assets/images/themes/tactile-card.webp","theme_screenshots":["/assets/images/themes/tactile-screenshot.webp","/assets/images/themes/tactile-screenshot-2.webp","/assets/images/themes/tactile-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/tactile/","github_url":"https://github.com/pages-themes/tactile","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Textured sidebar with handcrafted aesthetic","Green accent colour scheme","Responsive sidebar layout","Single-line enable via _config.yml","No local setup required","Distinctive, warm personality"],"slug":"tactile","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/tale.md","relative_path":"_themes/tale.md","excerpt":"<p>Tale is a minimal Jekyll theme built around the idea that nothing should compete with your writing. Its single-column layout, careful typographic choices, and complete absence of visual clutter create a reading experience that feels calm and focused.</p>\n\n","previous":{"path":"_themes/tactile.md","relative_path":"_themes/tactile.md","excerpt":"<p>Tactile is the most characterful of GitHub’s official themes. Its wood-grain-textured sidebar and green accent colour palette give it a warm, handcrafted feel that’s quite unlike the clean minimalism of the other official themes. The result is a site that feels personal and approachable β€” like something built with care.</p>\n\n","previous":{"path":"_themes/swiss.md","relative_path":"_themes/swiss.md","id":"/themes/swiss","collection":"themes","url":"/themes/swiss/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Swiss Jekyll Theme","description":"A bold, typographic Jekyll theme inspired by International Swiss Style design. Strong grid, oversized headings, and a clean black-and-white palette that puts typography first.","key_features":["Swiss Design","Bold Typography","Grid Layout","GitHub Pages"],"card_description":"Bold, typographic theme inspired by Swiss International Style design.","category":"Blog","card_image":"/assets/images/themes/swiss-card.webp","theme_screenshots":["/assets/images/themes/swiss-screenshot.webp","/assets/images/themes/swiss-screenshot-2.webp","/assets/images/themes/swiss-screenshot-3.webp"],"demo_url":"https://broccolini.net/swiss/","github_url":"https://github.com/broccolini/swiss","author":"GitHub Community","github_author_name":"broccolini","github_author_url":"https://github.com/broccolini","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag","jekyll-feed"],"updated_at":"2022-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":400,"forks":200,"features":["Swiss International Style design aesthetic","Bold typographic headings","Clean grid layout","Black and white colour palette","Responsive design","GitHub Pages compatible","Fast and lightweight","Focus on editorial typography"],"slug":"swiss","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/tactile","collection":"themes","next":{"path":"_themes/tale.md","relative_path":"_themes/tale.md","id":"/themes/tale","collection":"themes","url":"/themes/tale/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tale Jekyll Theme","description":"An minimal Jekyll theme focused on content. Elegant single-column layout with beautiful typography, clean post listings, and zero visual noise β€” perfect for long-form writing.","key_features":["Single Column","Clean Typography","Minimal Design","GitHub Pages"],"card_description":"Minimal, elegant single-column blog for long-form writing.","category":"Blog","card_image":"/assets/images/themes/tale-card.webp","theme_screenshots":["/assets/images/themes/tale-screenshot.webp","/assets/images/themes/tale-screenshot-2.webp","/assets/images/themes/tale-screenshot-3.webp"],"demo_url":"https://chesterhow.github.io/tale/","github_url":"https://github.com/chesterhow/tale","author":"GitHub Community","github_author_name":"chesterhow","github_author_url":"https://github.com/chesterhow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.1","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2022-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1400,"forks":500,"features":["Minimal single-column layout","Paginated post listing","Tag-based post organisation","Post estimated reading time","Syntax highlighting","Disqus comments support","Google Analytics","RSS feed","Responsive design","GitHub Pages compatible"],"slug":"tale","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Tactile is the most characterful of GitHub's official themes. Its wood-grain-textured sidebar and green accent colour palette give it a warm, handcrafted feel that's quite unlike the clean minimalism of the other official themes. The result is a site that feels personal and approachable β€” like something built with care.\n\nIt's particularly effective for open-source projects that want to stand out, personal portfolios with a creative bent, or any project that wants its page to have a real identity.\n\n**Who is it for?** Developers and creators who want a GitHub Pages site with distinct visual personality and warmth, as an alternative to the more minimal official themes.\n","url":"/themes/tactile/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tactile Jekyll Theme","description":"A textured, warm GitHub Pages Jekyll theme with a hand-crafted sidebar style. Official GitHub Pages theme with classic personality and charm.","key_features":["GitHub Pages","Hand-Crafted Style","Warm Palette","Official GH Theme"],"card_description":"Textured, warm GitHub Pages theme with hand-crafted sidebar style.","category":"Personal","card_image":"/assets/images/themes/tactile-card.webp","theme_screenshots":["/assets/images/themes/tactile-screenshot.webp","/assets/images/themes/tactile-screenshot-2.webp","/assets/images/themes/tactile-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/tactile/","github_url":"https://github.com/pages-themes/tactile","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Textured sidebar with handcrafted aesthetic","Green accent colour scheme","Responsive sidebar layout","Single-line enable via _config.yml","No local setup required","Distinctive, warm personality"],"slug":"tactile","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/tale","collection":"themes","next":{"path":"_themes/type-theme.md","relative_path":"_themes/type-theme.md","excerpt":"<p>Type Theme is built on a single conviction: typography is everything. Rohan Chandra stripped away everything that wasn’t essential to reading and writing, leaving a theme that loads fast, renders beautifully, and gets out of the author’s way.</p>\n\n","previous":{"path":"_themes/tale.md","relative_path":"_themes/tale.md","id":"/themes/tale","collection":"themes","url":"/themes/tale/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tale Jekyll Theme","description":"An minimal Jekyll theme focused on content. Elegant single-column layout with beautiful typography, clean post listings, and zero visual noise β€” perfect for long-form writing.","key_features":["Single Column","Clean Typography","Minimal Design","GitHub Pages"],"card_description":"Minimal, elegant single-column blog for long-form writing.","category":"Blog","card_image":"/assets/images/themes/tale-card.webp","theme_screenshots":["/assets/images/themes/tale-screenshot.webp","/assets/images/themes/tale-screenshot-2.webp","/assets/images/themes/tale-screenshot-3.webp"],"demo_url":"https://chesterhow.github.io/tale/","github_url":"https://github.com/chesterhow/tale","author":"GitHub Community","github_author_name":"chesterhow","github_author_url":"https://github.com/chesterhow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.1","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2022-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1400,"forks":500,"features":["Minimal single-column layout","Paginated post listing","Tag-based post organisation","Post estimated reading time","Syntax highlighting","Disqus comments support","Google Analytics","RSS feed","Responsive design","GitHub Pages compatible"],"slug":"tale","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/type-theme","collection":"themes","next":{"path":"_themes/yat.md","relative_path":"_themes/yat.md","id":"/themes/yat","collection":"themes","url":"/themes/yat/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"YAT Jekyll Theme","description":"Yet Another Theme β€” a modern, flat-design Jekyll blog theme with night mode, multi-language support, and beautiful typography. Clean, fast, and elegant for writers and developers alike.","key_features":["Night Mode","Multi-Language","Flat Design","GitHub Pages"],"card_description":"Modern flat-design blog with night mode and multi-language support.","category":"Blog","card_image":"/assets/images/themes/yat-card.webp","theme_screenshots":["/assets/images/themes/yat-screenshot.webp","/assets/images/themes/yat-screenshot-2.webp","/assets/images/themes/yat-screenshot-3.webp"],"demo_url":"https://jeffreytse.github.io/jekyll-theme-yat/","github_url":"https://github.com/jeffreytse/jekyll-theme-yat","author":"GitHub Community","github_author_name":"jeffreytse","github_author_url":"https://github.com/jeffreytse","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-03-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"1.9.0","license":"MIT","stars":1200,"forks":300,"features":["Night mode with smooth toggle","Multi-language (i18n) support","Post categories and tags","Full-width banner images per post","Disqus and Utterances comments","Google Analytics integration","Beautiful code syntax highlighting","Responsive image support","Reading time estimate","GitHub Pages compatible"],"slug":"yat","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Type Theme is built on a single conviction: typography is everything. Rohan Chandra stripped away everything that wasn't essential to reading and writing, leaving a theme that loads fast, renders beautifully, and gets out of the author's way.\n\nThe Google Fonts integration gives it more typographic flexibility than most minimal themes, and the clean header with social links strikes a good balance between personality and restraint. It's also the base for the popular Type on Strap fork, which extends it with additional features.\n\n**Who is it for?** Writers and bloggers who want a typography-focused, distraction-free reading experience and a theme that's fast, simple, and easy to customise.\n","url":"/themes/type-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Type Theme Jekyll Theme","description":"A free, open-source theme for Jekyll focused purely on typography and reading. Minimal design, fast load times, and a beautifully simple blog layout for writers who mean business.","key_features":["Typography Focus","Minimal Design","GitHub Pages","Fast Loading"],"card_description":"Typography-focused minimal theme for writers who value clean reading.","category":"Blog","card_image":"/assets/images/themes/type-theme-card.webp","theme_screenshots":["/assets/images/themes/type-theme-screenshot.webp","/assets/images/themes/type-theme-screenshot-2.webp","/assets/images/themes/type-theme-screenshot-3.webp"],"demo_url":"https://rohanchandra.github.io/type-theme/","github_url":"https://github.com/rohanchandra/type-theme","author":"GitHub Community","github_author_name":"rohanchandra","github_author_url":"https://github.com/rohanchandra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2021-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1000,"forks":600,"features":["Typography-first design","Google Fonts integration","Paginated post listing","Category and tag pages","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","Social links in header","GitHub Pages compatible"],"slug":"type-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Tale is a minimal Jekyll theme built around the idea that nothing should compete with your writing. Its single-column layout, careful typographic choices, and complete absence of visual clutter create a reading experience that feels calm and focused.\n\nThe theme handles the basics well β€” pagination, tags, syntax highlighting, comments β€” without adding anything unnecessary. If you've ever felt that most blog themes have too much going on, Tale is the answer.\n\n**Who is it for?** Writers, journalists, and developers who want their words to be the centrepiece of every page with no distracting chrome around them.\n","url":"/themes/tale/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tale Jekyll Theme","description":"An minimal Jekyll theme focused on content. Elegant single-column layout with beautiful typography, clean post listings, and zero visual noise β€” perfect for long-form writing.","key_features":["Single Column","Clean Typography","Minimal Design","GitHub Pages"],"card_description":"Minimal, elegant single-column blog for long-form writing.","category":"Blog","card_image":"/assets/images/themes/tale-card.webp","theme_screenshots":["/assets/images/themes/tale-screenshot.webp","/assets/images/themes/tale-screenshot-2.webp","/assets/images/themes/tale-screenshot-3.webp"],"demo_url":"https://chesterhow.github.io/tale/","github_url":"https://github.com/chesterhow/tale","author":"GitHub Community","github_author_name":"chesterhow","github_author_url":"https://github.com/chesterhow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.1","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2022-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1400,"forks":500,"features":["Minimal single-column layout","Paginated post listing","Tag-based post organisation","Post estimated reading time","Syntax highlighting","Disqus comments support","Google Analytics","RSS feed","Responsive design","GitHub Pages compatible"],"slug":"tale","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/type-theme.md","relative_path":"_themes/type-theme.md","excerpt":"<p>Type Theme is built on a single conviction: typography is everything. Rohan Chandra stripped away everything that wasn’t essential to reading and writing, leaving a theme that loads fast, renders beautifully, and gets out of the author’s way.</p>\n\n","previous":{"path":"_themes/tale.md","relative_path":"_themes/tale.md","excerpt":"<p>Tale is a minimal Jekyll theme built around the idea that nothing should compete with your writing. Its single-column layout, careful typographic choices, and complete absence of visual clutter create a reading experience that feels calm and focused.</p>\n\n","previous":{"path":"_themes/tactile.md","relative_path":"_themes/tactile.md","id":"/themes/tactile","collection":"themes","url":"/themes/tactile/","draft":false,"categories":["Personal"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tactile Jekyll Theme","description":"A textured, warm GitHub Pages Jekyll theme with a hand-crafted sidebar style. Official GitHub Pages theme with classic personality and charm.","key_features":["GitHub Pages","Hand-Crafted Style","Warm Palette","Official GH Theme"],"card_description":"Textured, warm GitHub Pages theme with hand-crafted sidebar style.","category":"Personal","card_image":"/assets/images/themes/tactile-card.webp","theme_screenshots":["/assets/images/themes/tactile-screenshot.webp","/assets/images/themes/tactile-screenshot-2.webp","/assets/images/themes/tactile-screenshot-3.webp"],"demo_url":"https://pages-themes.github.io/tactile/","github_url":"https://github.com/pages-themes/tactile","author":"GitHub Community","github_author_name":"GitHub","github_author_url":"https://github.com/pages-themes","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-seo-tag"],"updated_at":"2023-01-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"0.2.0","license":"CC0-1.0","stars":500,"forks":450,"features":["Official GitHub Pages supported theme","Textured sidebar with handcrafted aesthetic","Green accent colour scheme","Responsive sidebar layout","Single-line enable via _config.yml","No local setup required","Distinctive, warm personality"],"slug":"tactile","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/tale","collection":"themes","next":{"path":"_themes/type-theme.md","relative_path":"_themes/type-theme.md","id":"/themes/type-theme","collection":"themes","url":"/themes/type-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Type Theme Jekyll Theme","description":"A free, open-source theme for Jekyll focused purely on typography and reading. Minimal design, fast load times, and a beautifully simple blog layout for writers who mean business.","key_features":["Typography Focus","Minimal Design","GitHub Pages","Fast Loading"],"card_description":"Typography-focused minimal theme for writers who value clean reading.","category":"Blog","card_image":"/assets/images/themes/type-theme-card.webp","theme_screenshots":["/assets/images/themes/type-theme-screenshot.webp","/assets/images/themes/type-theme-screenshot-2.webp","/assets/images/themes/type-theme-screenshot-3.webp"],"demo_url":"https://rohanchandra.github.io/type-theme/","github_url":"https://github.com/rohanchandra/type-theme","author":"GitHub Community","github_author_name":"rohanchandra","github_author_url":"https://github.com/rohanchandra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2021-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1000,"forks":600,"features":["Typography-first design","Google Fonts integration","Paginated post listing","Category and tag pages","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","Social links in header","GitHub Pages compatible"],"slug":"type-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Tale is a minimal Jekyll theme built around the idea that nothing should compete with your writing. Its single-column layout, careful typographic choices, and complete absence of visual clutter create a reading experience that feels calm and focused.\n\nThe theme handles the basics well β€” pagination, tags, syntax highlighting, comments β€” without adding anything unnecessary. If you've ever felt that most blog themes have too much going on, Tale is the answer.\n\n**Who is it for?** Writers, journalists, and developers who want their words to be the centrepiece of every page with no distracting chrome around them.\n","url":"/themes/tale/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tale Jekyll Theme","description":"An minimal Jekyll theme focused on content. Elegant single-column layout with beautiful typography, clean post listings, and zero visual noise β€” perfect for long-form writing.","key_features":["Single Column","Clean Typography","Minimal Design","GitHub Pages"],"card_description":"Minimal, elegant single-column blog for long-form writing.","category":"Blog","card_image":"/assets/images/themes/tale-card.webp","theme_screenshots":["/assets/images/themes/tale-screenshot.webp","/assets/images/themes/tale-screenshot-2.webp","/assets/images/themes/tale-screenshot-3.webp"],"demo_url":"https://chesterhow.github.io/tale/","github_url":"https://github.com/chesterhow/tale","author":"GitHub Community","github_author_name":"chesterhow","github_author_url":"https://github.com/chesterhow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.1","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2022-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1400,"forks":500,"features":["Minimal single-column layout","Paginated post listing","Tag-based post organisation","Post estimated reading time","Syntax highlighting","Disqus comments support","Google Analytics","RSS feed","Responsive design","GitHub Pages compatible"],"slug":"tale","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/type-theme","collection":"themes","next":{"path":"_themes/yat.md","relative_path":"_themes/yat.md","excerpt":"<p>YAT (Yet Another Theme) lives up to its understated name by quietly being one of the best-looking modern Jekyll blog themes available. Its flat design aesthetic feels fresh without being trendy, and the night mode implementation β€” with a smooth toggle that remembers your preference β€” is genuinely pleasant to use.</p>\n\n","previous":{"path":"_themes/type-theme.md","relative_path":"_themes/type-theme.md","id":"/themes/type-theme","collection":"themes","url":"/themes/type-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Type Theme Jekyll Theme","description":"A free, open-source theme for Jekyll focused purely on typography and reading. Minimal design, fast load times, and a beautifully simple blog layout for writers who mean business.","key_features":["Typography Focus","Minimal Design","GitHub Pages","Fast Loading"],"card_description":"Typography-focused minimal theme for writers who value clean reading.","category":"Blog","card_image":"/assets/images/themes/type-theme-card.webp","theme_screenshots":["/assets/images/themes/type-theme-screenshot.webp","/assets/images/themes/type-theme-screenshot-2.webp","/assets/images/themes/type-theme-screenshot-3.webp"],"demo_url":"https://rohanchandra.github.io/type-theme/","github_url":"https://github.com/rohanchandra/type-theme","author":"GitHub Community","github_author_name":"rohanchandra","github_author_url":"https://github.com/rohanchandra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2021-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1000,"forks":600,"features":["Typography-first design","Google Fonts integration","Paginated post listing","Category and tag pages","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","Social links in header","GitHub Pages compatible"],"slug":"type-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/yat","collection":"themes","next":null,"output":null,"content":"YAT (Yet Another Theme) lives up to its understated name by quietly being one of the best-looking modern Jekyll blog themes available. Its flat design aesthetic feels fresh without being trendy, and the night mode implementation β€” with a smooth toggle that remembers your preference β€” is genuinely pleasant to use.\n\nWhat sets YAT apart is the attention to detail: per-post full-width banner images, careful typographic spacing, and a colour palette that works equally well in light and dark modes. The multi-language support makes it a strong choice for bloggers writing in more than one language.\n\n**Who is it for?** Writers and developers who want a modern-feeling blog with dark mode and polished visual design, without the complexity of heavier themes.\n","url":"/themes/yat/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"YAT Jekyll Theme","description":"Yet Another Theme β€” a modern, flat-design Jekyll blog theme with night mode, multi-language support, and beautiful typography. Clean, fast, and elegant for writers and developers alike.","key_features":["Night Mode","Multi-Language","Flat Design","GitHub Pages"],"card_description":"Modern flat-design blog with night mode and multi-language support.","category":"Blog","card_image":"/assets/images/themes/yat-card.webp","theme_screenshots":["/assets/images/themes/yat-screenshot.webp","/assets/images/themes/yat-screenshot-2.webp","/assets/images/themes/yat-screenshot-3.webp"],"demo_url":"https://jeffreytse.github.io/jekyll-theme-yat/","github_url":"https://github.com/jeffreytse/jekyll-theme-yat","author":"GitHub Community","github_author_name":"jeffreytse","github_author_url":"https://github.com/jeffreytse","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-03-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"1.9.0","license":"MIT","stars":1200,"forks":300,"features":["Night mode with smooth toggle","Multi-language (i18n) support","Post categories and tags","Full-width banner images per post","Disqus and Utterances comments","Google Analytics integration","Beautiful code syntax highlighting","Responsive image support","Reading time estimate","GitHub Pages compatible"],"slug":"yat","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Type Theme is built on a single conviction: typography is everything. Rohan Chandra stripped away everything that wasn't essential to reading and writing, leaving a theme that loads fast, renders beautifully, and gets out of the author's way.\n\nThe Google Fonts integration gives it more typographic flexibility than most minimal themes, and the clean header with social links strikes a good balance between personality and restraint. It's also the base for the popular Type on Strap fork, which extends it with additional features.\n\n**Who is it for?** Writers and bloggers who want a typography-focused, distraction-free reading experience and a theme that's fast, simple, and easy to customise.\n","url":"/themes/type-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Type Theme Jekyll Theme","description":"A free, open-source theme for Jekyll focused purely on typography and reading. Minimal design, fast load times, and a beautifully simple blog layout for writers who mean business.","key_features":["Typography Focus","Minimal Design","GitHub Pages","Fast Loading"],"card_description":"Typography-focused minimal theme for writers who value clean reading.","category":"Blog","card_image":"/assets/images/themes/type-theme-card.webp","theme_screenshots":["/assets/images/themes/type-theme-screenshot.webp","/assets/images/themes/type-theme-screenshot-2.webp","/assets/images/themes/type-theme-screenshot-3.webp"],"demo_url":"https://rohanchandra.github.io/type-theme/","github_url":"https://github.com/rohanchandra/type-theme","author":"GitHub Community","github_author_name":"rohanchandra","github_author_url":"https://github.com/rohanchandra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2021-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1000,"forks":600,"features":["Typography-first design","Google Fonts integration","Paginated post listing","Category and tag pages","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","Social links in header","GitHub Pages compatible"],"slug":"type-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},{"path":"_themes/yat.md","relative_path":"_themes/yat.md","excerpt":"<p>YAT (Yet Another Theme) lives up to its understated name by quietly being one of the best-looking modern Jekyll blog themes available. Its flat design aesthetic feels fresh without being trendy, and the night mode implementation β€” with a smooth toggle that remembers your preference β€” is genuinely pleasant to use.</p>\n\n","previous":{"path":"_themes/type-theme.md","relative_path":"_themes/type-theme.md","excerpt":"<p>Type Theme is built on a single conviction: typography is everything. Rohan Chandra stripped away everything that wasn’t essential to reading and writing, leaving a theme that loads fast, renders beautifully, and gets out of the author’s way.</p>\n\n","previous":{"path":"_themes/tale.md","relative_path":"_themes/tale.md","id":"/themes/tale","collection":"themes","url":"/themes/tale/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Tale Jekyll Theme","description":"An minimal Jekyll theme focused on content. Elegant single-column layout with beautiful typography, clean post listings, and zero visual noise β€” perfect for long-form writing.","key_features":["Single Column","Clean Typography","Minimal Design","GitHub Pages"],"card_description":"Minimal, elegant single-column blog for long-form writing.","category":"Blog","card_image":"/assets/images/themes/tale-card.webp","theme_screenshots":["/assets/images/themes/tale-screenshot.webp","/assets/images/themes/tale-screenshot-2.webp","/assets/images/themes/tale-screenshot-3.webp"],"demo_url":"https://chesterhow.github.io/tale/","github_url":"https://github.com/chesterhow/tale","author":"GitHub Community","github_author_name":"chesterhow","github_author_url":"https://github.com/chesterhow","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.1","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2022-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1400,"forks":500,"features":["Minimal single-column layout","Paginated post listing","Tag-based post organisation","Post estimated reading time","Syntax highlighting","Disqus comments support","Google Analytics","RSS feed","Responsive design","GitHub Pages compatible"],"slug":"tale","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/type-theme","collection":"themes","next":{"path":"_themes/yat.md","relative_path":"_themes/yat.md","id":"/themes/yat","collection":"themes","url":"/themes/yat/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"YAT Jekyll Theme","description":"Yet Another Theme β€” a modern, flat-design Jekyll blog theme with night mode, multi-language support, and beautiful typography. Clean, fast, and elegant for writers and developers alike.","key_features":["Night Mode","Multi-Language","Flat Design","GitHub Pages"],"card_description":"Modern flat-design blog with night mode and multi-language support.","category":"Blog","card_image":"/assets/images/themes/yat-card.webp","theme_screenshots":["/assets/images/themes/yat-screenshot.webp","/assets/images/themes/yat-screenshot-2.webp","/assets/images/themes/yat-screenshot-3.webp"],"demo_url":"https://jeffreytse.github.io/jekyll-theme-yat/","github_url":"https://github.com/jeffreytse/jekyll-theme-yat","author":"GitHub Community","github_author_name":"jeffreytse","github_author_url":"https://github.com/jeffreytse","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-03-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"1.9.0","license":"MIT","stars":1200,"forks":300,"features":["Night mode with smooth toggle","Multi-language (i18n) support","Post categories and tags","Full-width banner images per post","Disqus and Utterances comments","Google Analytics integration","Beautiful code syntax highlighting","Responsive image support","Reading time estimate","GitHub Pages compatible"],"slug":"yat","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"output":null,"content":"Type Theme is built on a single conviction: typography is everything. Rohan Chandra stripped away everything that wasn't essential to reading and writing, leaving a theme that loads fast, renders beautifully, and gets out of the author's way.\n\nThe Google Fonts integration gives it more typographic flexibility than most minimal themes, and the clean header with social links strikes a good balance between personality and restraint. It's also the base for the popular Type on Strap fork, which extends it with additional features.\n\n**Who is it for?** Writers and bloggers who want a typography-focused, distraction-free reading experience and a theme that's fast, simple, and easy to customise.\n","url":"/themes/type-theme/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":false,"responsive":true,"title":"Type Theme Jekyll Theme","description":"A free, open-source theme for Jekyll focused purely on typography and reading. Minimal design, fast load times, and a beautifully simple blog layout for writers who mean business.","key_features":["Typography Focus","Minimal Design","GitHub Pages","Fast Loading"],"card_description":"Typography-focused minimal theme for writers who value clean reading.","category":"Blog","card_image":"/assets/images/themes/type-theme-card.webp","theme_screenshots":["/assets/images/themes/type-theme-screenshot.webp","/assets/images/themes/type-theme-screenshot-2.webp","/assets/images/themes/type-theme-screenshot-3.webp"],"demo_url":"https://rohanchandra.github.io/type-theme/","github_url":"https://github.com/rohanchandra/type-theme","author":"GitHub Community","github_author_name":"rohanchandra","github_author_url":"https://github.com/rohanchandra","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.0","plugins":["jekyll-feed","jekyll-paginate","jekyll-sitemap","jekyll-seo-tag"],"updated_at":"2021-06-01","added_at":"2026-06-07","popular":false,"trending":false,"bestseller":false,"version":"1.0.0","license":"MIT","stars":1000,"forks":600,"features":["Typography-first design","Google Fonts integration","Paginated post listing","Category and tag pages","Syntax highlighting","Disqus comments","Google Analytics","RSS feed","Social links in header","GitHub Pages compatible"],"slug":"type-theme","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"},"id":"/themes/yat","collection":"themes","next":null,"output":null,"content":"YAT (Yet Another Theme) lives up to its understated name by quietly being one of the best-looking modern Jekyll blog themes available. Its flat design aesthetic feels fresh without being trendy, and the night mode implementation β€” with a smooth toggle that remembers your preference β€” is genuinely pleasant to use.\n\nWhat sets YAT apart is the attention to detail: per-post full-width banner images, careful typographic spacing, and a colour palette that works equally well in light and dark modes. The multi-language support makes it a strong choice for bloggers writing in more than one language.\n\n**Who is it for?** Writers and developers who want a modern-feeling blog with dark mode and polished visual design, without the complexity of heavier themes.\n","url":"/themes/yat/","draft":false,"categories":["Blog"],"layout":"theme","price_type":"free","featured":false,"dark_mode":true,"responsive":true,"title":"YAT Jekyll Theme","description":"Yet Another Theme β€” a modern, flat-design Jekyll blog theme with night mode, multi-language support, and beautiful typography. Clean, fast, and elegant for writers and developers alike.","key_features":["Night Mode","Multi-Language","Flat Design","GitHub Pages"],"card_description":"Modern flat-design blog with night mode and multi-language support.","category":"Blog","card_image":"/assets/images/themes/yat-card.webp","theme_screenshots":["/assets/images/themes/yat-screenshot.webp","/assets/images/themes/yat-screenshot-2.webp","/assets/images/themes/yat-screenshot-3.webp"],"demo_url":"https://jeffreytse.github.io/jekyll-theme-yat/","github_url":"https://github.com/jeffreytse/jekyll-theme-yat","author":"GitHub Community","github_author_name":"jeffreytse","github_author_url":"https://github.com/jeffreytse","author_url":"https://jekyllhub.com/authors/github-community/","github_pages_compatible":true,"min_jekyll_version":"3.9","plugins":["jekyll-feed","jekyll-sitemap","jekyll-seo-tag","jekyll-paginate"],"updated_at":"2024-03-01","added_at":"2026-06-07","popular":false,"trending":true,"bestseller":false,"version":"1.9.0","license":"MIT","stars":1200,"forks":300,"features":["Night mode with smooth toggle","Multi-language (i18n) support","Post categories and tags","Full-width banner images per post","Disqus and Utterances comments","Google Analytics integration","Beautiful code syntax highlighting","Responsive image support","Reading time estimate","GitHub Pages compatible"],"slug":"yat","ext":".md","tags":[],"date":"2026-07-04 00:10:24 +0000"}];
</script>

Number filters

plus, minus, times, divided_by, modulo

15       <!-- 15 -->
7      <!-- 7 -->
12       <!-- 12 -->
3 <!-- 3 (integer division) -->
1     <!-- 1 -->

ceil, floor, round, abs

5   <!-- 5 -->
4  <!-- 4 -->
4.57 <!-- 4.57 -->
5     <!-- 5 -->

Array filters

size

Works on strings and arrays.

74
6 <!-- 6 -->

first and last

Academic Pages is the most widely used academic personal website template on GitHub, with over 12,000 stars and hundreds of thousands of researchers using it worldwide. It's a fork of Minimal Mistakes, extended specifically for academic use cases: publications with BibTeX citations, conference talks with slides and video links, course teaching pages, a project portfolio, and a CV that generates itself from structured YAML files.

The fork-to-publish model is particularly popular in academia β€” researchers can have a live personal website on GitHub Pages within minutes, with no server, no CMS, and no ongoing cost.

**Who is it for?** Researchers, academics, PhD students, and scientists who want a professional web presence that highlights publications, talks, and research without complex web development.

YAT (Yet Another Theme) lives up to its understated name by quietly being one of the best-looking modern Jekyll blog themes available. Its flat design aesthetic feels fresh without being trendy, and the night mode implementation β€” with a smooth toggle that remembers your preference β€” is genuinely pleasant to use.

What sets YAT apart is the attention to detail: per-post full-width banner images, careful typographic spacing, and a colour palette that works equally well in light and dark modes. The multi-language support makes it a strong choice for bloggers writing in more than one language.

**Who is it for?** Writers and developers who want a modern-feeling blog with dark mode and polished visual design, without the complexity of heavier themes.

push and pop, shift and unshift

Add or remove items from an array.


{% assign updated = site.themes | push: new_theme %}

concat

Merges two arrays.


{% assign all_posts = site.posts | concat: site.pages %}

map

Extracts a single property from an array of objects.


{% assign titles = site.themes | map: "title" %}
{{ titles | join: ", " }}

where and where_exp

Filter an array by a property value.


{% assign premium = site.themes | where: "price_type", "premium" %}

{% assign recent = site.posts | where_exp: "post", "post.date > '2026-01-01'" %}

sort and sort_natural


{% assign sorted = site.themes | sort: "title" %}
{% assign sorted = site.themes | sort_natural: "title" %}

reverse


{% assign reversed = site.posts | reverse %}

uniq

Removes duplicate values from an array.


{% assign unique_cats = site.themes | map: "category" | uniq %}

group_by and group_by_exp

Groups an array of objects by a property.


{% assign by_category = site.themes | group_by: "category" %}
{% for group in by_category %}
  <h2>{{ group.name }}</h2>
  {% for theme in group.items %}
    <p>{{ theme.title }}</p>
  {% endfor %}
{% endfor %}

find and find_exp

Returns the first item matching a condition (Jekyll 4+).


{% assign featured = site.themes | find: "featured", true %}

sum

Adds up a numeric property across an array.

120008201120026003375000800620040721004441300980028004465454504001194945782110014881200700381110054009700900045058784003300780030057001400697300810190040060047431001330060044001500784220035320006005008421835207002109400500140010001200

compact

Removes nil values from an array.


{% assign clean = array | compact %}

flatten

Flattens a nested array.


{% assign flat = nested_array | flatten %}

Date filters

date

Formats a date using strftime syntax.

May 21, 2026
<!-- output: July 3, 2026 -->

2026-05-21
<!-- output: 2026-07-03 -->

21 May 2026
<!-- output: 03 Jul 2026 -->

Common format codes:

  • %Y β€” four-digit year
  • %m β€” zero-padded month (01–12)
  • %-m β€” month without padding (1–12)
  • %B β€” full month name
  • %b β€” abbreviated month name
  • %d β€” zero-padded day
  • %-d β€” day without padding
  • %A β€” full weekday name
  • %H:%M β€” 24-hour time

date_to_long_string and date_to_string

Jekyll shortcuts for common date formats.

21 May 2026
<!-- output: 03 July 2026 -->

21 May 2026
<!-- output: 03 Jul 2026 -->

date_to_xmlschema and date_to_rfc822

Used in feeds and structured data.

2026-05-21T00:00:00+00:00
<!-- output: 2026-07-03T00:00:00+00:00 -->

URL and path filters

relative_url and absolute_url

Essential β€” always use these instead of hardcoded paths.

<a href="/themes/">Browse themes</a>
<meta property="og:url" content="https://jekyllhub.com/tutorial/2026/05/21/jekyll-liquid-filters-cheatsheet/">

slugify

Converts a string to a URL-safe slug.

hello-world-how-are-you
<!-- output: hello-world-how-are-you -->

uri_escape

Percent-encodes a URI.

search%20query
<!-- output: search%20query -->

cgi_escape

CGI-escapes a string (spaces become +).

hello+world
<!-- output: hello+world -->

Miscellaneous

default

Returns a default value when the variable is nil, false, or empty.

Marcus Webb
/assets/images/blog/jekyll-liquid-filters-cheatsheet.webp

inspect

Outputs a Ruby representation of the object β€” invaluable for debugging.

{
  &quot;path&quot;: &quot;_posts/2026-05-21-jekyll-liquid-filters-cheatsheet.md&quot;,
  &quot;relative_path&quot;: &quot;_posts/2026-05-21-jekyll-liquid-filters-cheatsheet.md&quot;,
  &quot;excerpt&quot;: &quot;&lt;p&gt;Liquid filters transform output in Jekyll templates. They are chained with the pipe character &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;|&lt;/code&gt; and applied to variables, strings, numbers, arrays, and dates. This cheatsheet covers every filter you will actually use, with real examples.&lt;/p&gt;\n\n&quot;,
  &quot;previous&quot;: {
    &quot;path&quot;: &quot;_posts/2026-05-20-jekyll-minimal-themes.md&quot;,
    &quot;relative_path&quot;: &quot;_posts/2026-05-20-jekyll-minimal-themes.md&quot;,
    &quot;excerpt&quot;: &quot;&lt;p&gt;Minimal themes are the most popular category in the Jekyll ecosystem β€” and for good reason. A minimal design puts the focus on your content, loads in milliseconds, and never goes out of style. Here are the best minimal Jekyll themes in 2026.&lt;/p&gt;\n\n&quot;,
    &quot;previous&quot;: {
      &quot;path&quot;: &quot;_posts/2026-05-19-jekyll-vs-nextjs.md&quot;,
      &quot;relative_path&quot;: &quot;_posts/2026-05-19-jekyll-vs-nextjs.md&quot;,
      &quot;excerpt&quot;: &quot;&lt;p&gt;Jekyll and Next.js are both capable of producing fast, statically-generated websites. But comparing them is a bit like comparing a bicycle to a car β€” they are built for different journeys. This guide cuts through the noise and tells you which one fits your project.&lt;/p&gt;\n\n&quot;,
      &quot;previous&quot;: {
        &quot;path&quot;: &quot;_posts/2026-05-18-jekyll-custom-domain.md&quot;,
        &quot;relative_path&quot;: &quot;_posts/2026-05-18-jekyll-custom-domain.md&quot;,
        &quot;id&quot;: &quot;/tutorial/2026/05/18/jekyll-custom-domain&quot;,
        &quot;collection&quot;: &quot;posts&quot;,
        &quot;url&quot;: &quot;/tutorial/2026/05/18/jekyll-custom-domain/&quot;,
        &quot;draft&quot;: false,
        &quot;categories&quot;: [
          &quot;Tutorial&quot;
        ],
        &quot;layout&quot;: &quot;post&quot;,
        &quot;title&quot;: &quot;How to Set Up a Custom Domain for Your Jekyll Site&quot;,
        &quot;description&quot;: &quot;Connect a custom domain to your Jekyll site on GitHub Pages, Netlify, or Cloudflare Pages β€” with DNS setup, HTTPS configuration, and www vs apex domain guidance.&quot;,
        &quot;date&quot;: &quot;2026-05-18 00:00:00 +0000&quot;,
        &quot;last_modified_at&quot;: &quot;2026-05-18&quot;,
        &quot;image&quot;: &quot;/assets/images/blog/jekyll-custom-domain.webp&quot;,
        &quot;author&quot;: &quot;Marcus Webb&quot;,
        &quot;category&quot;: &quot;Tutorial&quot;,
        &quot;featured&quot;: false,
        &quot;related_category&quot;: &quot;Documentation&quot;,
        &quot;toc&quot;: true,
        &quot;tags&quot;: [
          &quot;jekyll custom domain&quot;,
          &quot;github pages custom domain&quot;,
          &quot;netlify custom domain&quot;,
          &quot;jekyll domain setup&quot;
        ],
        &quot;slug&quot;: &quot;jekyll-custom-domain&quot;,
        &quot;ext&quot;: &quot;.md&quot;
      },
      &quot;id&quot;: &quot;/comparison/2026/05/19/jekyll-vs-nextjs&quot;,
      &quot;collection&quot;: &quot;posts&quot;,
      &quot;next&quot;: {
        &quot;path&quot;: &quot;_posts/2026-05-20-jekyll-minimal-themes.md&quot;,
        &quot;relative_path&quot;: &quot;_posts/2026-05-20-jekyll-minimal-themes.md&quot;,
        &quot;id&quot;: &quot;/themes/2026/05/20/jekyll-minimal-themes&quot;,
        &quot;collection&quot;: &quot;posts&quot;,
        &quot;url&quot;: &quot;/themes/2026/05/20/jekyll-minimal-themes/&quot;,
        &quot;draft&quot;: false,
        &quot;categories&quot;: [
          &quot;Themes&quot;
        ],
        &quot;layout&quot;: &quot;post&quot;,
        &quot;title&quot;: &quot;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)&quot;,
        &quot;description&quot;: &quot;The best minimal Jekyll themes for blogs, portfolios, and personal sites β€” clean typography, fast load times, and zero visual clutter.&quot;,
        &quot;date&quot;: &quot;2026-05-20 00:00:00 +0000&quot;,
        &quot;last_modified_at&quot;: &quot;2026-07-05&quot;,
        &quot;image&quot;: &quot;/assets/images/blog/jekyll-minimal-themes.webp&quot;,
        &quot;author&quot;: &quot;Marcus Webb&quot;,
        &quot;category&quot;: &quot;Themes&quot;,
        &quot;featured&quot;: false,
        &quot;related_category&quot;: &quot;Blog&quot;,
        &quot;toc&quot;: true,
        &quot;slug&quot;: &quot;jekyll-minimal-themes&quot;,
        &quot;ext&quot;: &quot;.md&quot;,
        &quot;tags&quot;: [

        ]
      },
      &quot;output&quot;: &quot;&lt;!DOCTYPE html&gt;\n&lt;html lang=\&quot;en\&quot;&gt;\n&lt;head&gt;\n  &lt;meta charset=\&quot;UTF-8\&quot;&gt;\n  &lt;meta name=\&quot;viewport\&quot; content=\&quot;width=device-width, initial-scale=1.0\&quot;&gt;\n\n  &lt;!-- Begin Jekyll SEO tag v2.8.0 --&gt;\n&lt;title&gt;Jekyll vs Next.js: A Practical Comparison for 2026 | JekyllHub&lt;/title&gt;\n&lt;meta name=\&quot;generator\&quot; content=\&quot;Jekyll v3.10.0\&quot; /&gt;\n&lt;meta property=\&quot;og:title\&quot; content=\&quot;Jekyll vs Next.js: A Practical Comparison for 2026\&quot; /&gt;\n&lt;meta name=\&quot;author\&quot; content=\&quot;Marcus Webb\&quot; /&gt;\n&lt;meta property=\&quot;og:locale\&quot; content=\&quot;en_US\&quot; /&gt;\n&lt;meta name=\&quot;description\&quot; content=\&quot;Jekyll and Next.js both produce fast websites β€” but they are built for very different situations. Here is how to choose between them for your next project.\&quot; /&gt;\n&lt;meta property=\&quot;og:description\&quot; content=\&quot;Jekyll and Next.js both produce fast websites β€” but they are built for very different situations. Here is how to choose between them for your next project.\&quot; /&gt;\n&lt;link rel=\&quot;canonical\&quot; href=\&quot;https://jekyllhub.com/comparison/2026/05/19/jekyll-vs-nextjs/\&quot; /&gt;\n&lt;meta property=\&quot;og:url\&quot; content=\&quot;https://jekyllhub.com/comparison/2026/05/19/jekyll-vs-nextjs/\&quot; /&gt;\n&lt;meta property=\&quot;og:site_name\&quot; content=\&quot;JekyllHub\&quot; /&gt;\n&lt;meta property=\&quot;og:image\&quot; content=\&quot;https://jekyllhub.com/assets/images/blog/jekyll-vs-nextjs.webp\&quot; /&gt;\n&lt;meta property=\&quot;og:type\&quot; content=\&quot;article\&quot; /&gt;\n&lt;meta property=\&quot;article:published_time\&quot; content=\&quot;2026-05-19T00:00:00+00:00\&quot; /&gt;\n&lt;meta name=\&quot;twitter:card\&quot; content=\&quot;summary_large_image\&quot; /&gt;\n&lt;meta property=\&quot;twitter:image\&quot; content=\&quot;https://jekyllhub.com/assets/images/blog/jekyll-vs-nextjs.webp\&quot; /&gt;\n&lt;meta property=\&quot;twitter:title\&quot; content=\&quot;Jekyll vs Next.js: A Practical Comparison for 2026\&quot; /&gt;\n&lt;meta name=\&quot;twitter:site\&quot; content=\&quot;@jekyllhub\&quot; /&gt;\n&lt;meta name=\&quot;twitter:creator\&quot; content=\&quot;@Marcus Webb\&quot; /&gt;\n&lt;script type=\&quot;application/ld+json\&quot;&gt;\n{\&quot;@context\&quot;:\&quot;https://schema.org\&quot;,\&quot;@type\&quot;:\&quot;BlogPosting\&quot;,\&quot;author\&quot;:{\&quot;@type\&quot;:\&quot;Person\&quot;,\&quot;name\&quot;:\&quot;Marcus Webb\&quot;},\&quot;dateModified\&quot;:\&quot;2026-07-04T00:00:00+00:00\&quot;,\&quot;datePublished\&quot;:\&quot;2026-05-19T00:00:00+00:00\&quot;,\&quot;description\&quot;:\&quot;Jekyll and Next.js both produce fast websites β€” but they are built for very different situations. Here is how to choose between them for your next project.\&quot;,\&quot;headline\&quot;:\&quot;Jekyll vs Next.js: A Practical Comparison for 2026\&quot;,\&quot;image\&quot;:\&quot;https://jekyllhub.com/assets/images/blog/jekyll-vs-nextjs.webp\&quot;,\&quot;mainEntityOfPage\&quot;:{\&quot;@type\&quot;:\&quot;WebPage\&quot;,\&quot;@id\&quot;:\&quot;https://jekyllhub.com/comparison/2026/05/19/jekyll-vs-nextjs/\&quot;},\&quot;url\&quot;:\&quot;https://jekyllhub.com/comparison/2026/05/19/jekyll-vs-nextjs/\&quot;}&lt;/script&gt;\n&lt;!-- End Jekyll SEO tag --&gt;\n\n  &lt;meta name=\&quot;impact-site-verification\&quot; value=\&quot;362087e7-78c6-43e3-b39c-5ddb44047f61\&quot;&gt;\n\n  &lt;!-- og:site_name and og:image: kept here as jekyll-seo-tag does not set these reliably. --&gt;\n  &lt;!-- All other canonical/OG/Twitter tags are handled by the seo tag above. --&gt;\n  &lt;meta property=\&quot;og:site_name\&quot; content=\&quot;JekyllHub\&quot;&gt;\n\n  &lt;!-- OG / Twitter image β€” use page card_image, else fall back to social-card.png --&gt;\n  \n  \n  &lt;meta property=\&quot;og:image\&quot; content=\&quot;https://jekyllhub.com/assets/images/blog/jekyll-vs-nextjs.webp\&quot;&gt;\n  &lt;meta name=\&quot;twitter:image\&quot; content=\&quot;https://jekyllhub.com/assets/images/blog/jekyll-vs-nextjs.webp\&quot;&gt;\n  \n\n  &lt;!-- Fonts --&gt;\n  &lt;link rel=\&quot;preconnect\&quot; href=\&quot;https://fonts.googleapis.com\&quot;&gt;\n  &lt;link rel=\&quot;preconnect\&quot; href=\&quot;https://fonts.gstatic.com\&quot; crossorigin&gt;\n  &lt;link href=\&quot;https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&amp;family=DM+Mono:ital,wght@0,300;0,400;0,500;1,400&amp;family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&amp;display=swap\&quot; rel=\&quot;stylesheet\&quot;&gt;\n\n  &lt;!-- Dark mode: read stored preference before CSS loads to prevent flash --&gt;\n  &lt;script&gt;\n    (function() {\n      var stored = localStorage.getItem(&apos;tf_theme&apos;);\n      var theme = stored ? stored : (window.matchMedia &amp;&amp; window.matchMedia(&apos;(prefers-color-scheme: dark)&apos;).matches ? &apos;dark&apos; : &apos;light&apos;);\n      document.documentElement.setAttribute(&apos;data-theme&apos;, theme);\n    })();\n  &lt;/script&gt;\n\n  &lt;!-- Stylesheet --&gt;\n  &lt;link rel=\&quot;stylesheet\&quot; href=\&quot;/assets/css/main.css\&quot;&gt;\n\n  &lt;!-- Favicon --&gt;\n  &lt;link rel=\&quot;icon\&quot; type=\&quot;image/svg+xml\&quot; href=\&quot;/assets/images/favicon.svg\&quot;&gt;\n\n  &lt;!-- Structured Data --&gt;\n  \n  &lt;script type=\&quot;application/ld+json\&quot;&gt;\n  {\n    \&quot;@context\&quot;: \&quot;https://schema.org\&quot;,\n    \&quot;@type\&quot;: \&quot;WebSite\&quot;,\n    \&quot;name\&quot;: \&quot;JekyllHub\&quot;,\n    \&quot;description\&quot;: \&quot;The premier marketplace for Jekyll themes. Browse, preview, and download stunning themes for your next project.\&quot;,\n    \&quot;url\&quot;: \&quot;https://jekyllhub.com\&quot;\n  }\n  &lt;/script&gt;\n  \n\n  &lt;!-- Analytics --&gt;\n  \n\n  \n  \n  &lt;!-- Google tag (gtag.js) --&gt;\n  &lt;script async src=\&quot;https://www.googletagmanager.com/gtag/js?id=G-W5Z2Z9GNPG\&quot;&gt;&lt;/script&gt;\n  &lt;script&gt;\n    window.dataLayer = window.dataLayer || [];\n    function gtag(){dataLayer.push(arguments);}\n    gtag(&apos;js&apos;, new Date());\n    gtag(&apos;config&apos;, &apos;G-W5Z2Z9GNPG&apos;);\n  &lt;/script&gt;\n  \n\n  \n  \n\n\n\n&lt;/head&gt;\n&lt;body&gt;\n  \n\n&lt;div class=\&quot;announcement-bar announcement-bar--dark\&quot; id=\&quot;announcement-bar\&quot; data-ann-id=\&quot;v1\&quot; role=\&quot;banner\&quot; aria-label=\&quot;Site announcement\&quot;&gt;\n  &lt;div class=\&quot;announcement-bar__inner\&quot;&gt;\n    &lt;p class=\&quot;announcement-bar__text\&quot;&gt;\n      πŸš€ New premium themes dropping soon β€” join the waitlist and get 20% off launch price\n      \n        &lt;a href=\&quot;/waitlist/\&quot; class=\&quot;announcement-bar__link\&quot;&gt;Join Waitlist β†’&lt;/a&gt;\n      \n    &lt;/p&gt;\n    &lt;button class=\&quot;announcement-bar__close\&quot; aria-label=\&quot;Dismiss announcement\&quot; onclick=\&quot;dismissAnnouncement(&apos;v1&apos;)\&quot;&gt;\n      &lt;svg width=\&quot;14\&quot; height=\&quot;14\&quot; viewBox=\&quot;0 0 24 24\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; stroke-width=\&quot;2.5\&quot; stroke-linecap=\&quot;round\&quot;&gt;&lt;line x1=\&quot;18\&quot; y1=\&quot;6\&quot; x2=\&quot;6\&quot; y2=\&quot;18\&quot;/&gt;&lt;line x1=\&quot;6\&quot; y1=\&quot;6\&quot; x2=\&quot;18\&quot; y2=\&quot;18\&quot;/&gt;&lt;/svg&gt;\n    &lt;/button&gt;\n  &lt;/div&gt;\n&lt;/div&gt;\n\n\n  &lt;nav class=\&quot;navbar\&quot; id=\&quot;navbar\&quot; x-data=\&quot;{ mobileOpen: false }\&quot;&gt;\n  &lt;div class=\&quot;container navbar__inner\&quot;&gt;\n    &lt;!-- Logo --&gt;\n    &lt;a href=\&quot;/\&quot; class=\&quot;navbar__logo\&quot; aria-label=\&quot;JekyllHub home\&quot;&gt;\n      &lt;span class=\&quot;navbar__logo-icon\&quot;&gt;\n        &lt;svg width=\&quot;32\&quot; height=\&quot;32\&quot; viewBox=\&quot;0 0 32 32\&quot; fill=\&quot;none\&quot; xmlns=\&quot;http://www.w3.org/2000/svg\&quot;&gt;\n          &lt;rect width=\&quot;32\&quot; height=\&quot;32\&quot; rx=\&quot;9\&quot; fill=\&quot;#2563EB\&quot;/&gt;\n          &lt;!-- J letterform --&gt;\n          &lt;path d=\&quot;M19 8h-6v1h5v10c0 2.2-1.8 4-4 4s-4-1.8-4-4v-1H9v1c0 2.76 2.24 5 5 5s5-2.24 5-5V8z\&quot; fill=\&quot;white\&quot;/&gt;\n          &lt;!-- Hub dots --&gt;\n          &lt;circle cx=\&quot;23\&quot; cy=\&quot;9\&quot; r=\&quot;2.5\&quot; fill=\&quot;#F0C94B\&quot;/&gt;\n        &lt;/svg&gt;\n      &lt;/span&gt;\n      &lt;span class=\&quot;navbar__logo-text\&quot;&gt;Jekyll&lt;span class=\&quot;navbar__logo-accent\&quot;&gt;Hub&lt;/span&gt;&lt;/span&gt;\n    &lt;/a&gt;\n\n    &lt;!-- Desktop nav --&gt;\n    &lt;ul class=\&quot;navbar__links\&quot; role=\&quot;list\&quot;&gt;\n      &lt;li&gt;&lt;a href=\&quot;/themes/\&quot; class=\&quot;navbar__link \&quot;&gt;Browse&lt;/a&gt;&lt;/li&gt;\n      &lt;li&gt;&lt;a href=\&quot;/categories/\&quot; class=\&quot;navbar__link navbar__link--active\&quot;&gt;Categories&lt;/a&gt;&lt;/li&gt;\n      &lt;li&gt;&lt;a href=\&quot;/blog/\&quot; class=\&quot;navbar__link \&quot;&gt;Blog&lt;/a&gt;&lt;/li&gt;\n      &lt;li&gt;&lt;a href=\&quot;/showcase/\&quot; class=\&quot;navbar__link \&quot;&gt;Showcase&lt;/a&gt;&lt;/li&gt;\n    &lt;/ul&gt;\n\n    &lt;!-- Right controls --&gt;\n    &lt;div class=\&quot;navbar__actions\&quot;&gt;\n      &lt;!-- Search trigger --&gt;\n      &lt;button class=\&quot;navbar__icon-btn\&quot; id=\&quot;search-trigger\&quot; onclick=\&quot;JekyllHub.openSearch()\&quot; aria-label=\&quot;Search themes\&quot;&gt;\n        &lt;svg width=\&quot;20\&quot; height=\&quot;20\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n          &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z\&quot;/&gt;\n        &lt;/svg&gt;\n      &lt;/button&gt;\n\n      &lt;!-- Bookmarks --&gt;\n      &lt;a href=\&quot;/bookmarks/\&quot; class=\&quot;navbar__icon-btn\&quot; aria-label=\&quot;Saved themes\&quot;&gt;\n        &lt;svg width=\&quot;20\&quot; height=\&quot;20\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n          &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z\&quot;/&gt;\n        &lt;/svg&gt;\n        &lt;span class=\&quot;navbar__badge\&quot; id=\&quot;bookmark-count\&quot; style=\&quot;display:none\&quot;&gt;0&lt;/span&gt;\n      &lt;/a&gt;\n\n      &lt;!-- Theme toggle --&gt;\n      &lt;button class=\&quot;navbar__icon-btn theme-toggle\&quot; id=\&quot;theme-toggle\&quot; onclick=\&quot;JekyllHub.toggleTheme()\&quot; aria-label=\&quot;Toggle dark mode\&quot;&gt;\n        &lt;svg class=\&quot;theme-toggle__sun\&quot; width=\&quot;20\&quot; height=\&quot;20\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n          &lt;circle cx=\&quot;12\&quot; cy=\&quot;12\&quot; r=\&quot;5\&quot; stroke-width=\&quot;2\&quot;/&gt;\n          &lt;path stroke-linecap=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42\&quot;/&gt;\n        &lt;/svg&gt;\n        &lt;svg class=\&quot;theme-toggle__moon\&quot; width=\&quot;20\&quot; height=\&quot;20\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n          &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z\&quot;/&gt;\n        &lt;/svg&gt;\n      &lt;/button&gt;\n\n      &lt;!-- Mobile menu toggle --&gt;\n      &lt;button class=\&quot;navbar__mobile-toggle\&quot; @click=\&quot;mobileOpen = !mobileOpen\&quot; :aria-expanded=\&quot;mobileOpen\&quot; aria-label=\&quot;Toggle menu\&quot;&gt;\n        &lt;svg x-show=\&quot;!mobileOpen\&quot; width=\&quot;22\&quot; height=\&quot;22\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n          &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M4 6h16M4 12h16M4 18h16\&quot;/&gt;\n        &lt;/svg&gt;\n        &lt;svg x-show=\&quot;mobileOpen\&quot; width=\&quot;22\&quot; height=\&quot;22\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n          &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M6 18L18 6M6 6l12 12\&quot;/&gt;\n        &lt;/svg&gt;\n      &lt;/button&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n\n  &lt;!-- Mobile menu --&gt;\n  &lt;div class=\&quot;navbar__mobile-menu\&quot; x-show=\&quot;mobileOpen\&quot; x-transition:enter=\&quot;slide-down-enter\&quot; x-transition:enter-start=\&quot;slide-down-start\&quot; x-transition:enter-end=\&quot;slide-down-end\&quot; @click.away=\&quot;mobileOpen = false\&quot;&gt;\n    &lt;div class=\&quot;container\&quot;&gt;\n      &lt;ul role=\&quot;list\&quot;&gt;\n        &lt;li&gt;&lt;a href=\&quot;/themes/\&quot; class=\&quot;navbar__mobile-link\&quot;&gt;Browse Themes&lt;/a&gt;&lt;/li&gt;\n        &lt;li&gt;&lt;a href=\&quot;/categories/\&quot; class=\&quot;navbar__mobile-link\&quot;&gt;Categories&lt;/a&gt;&lt;/li&gt;\n        &lt;li&gt;&lt;a href=\&quot;/blog/\&quot; class=\&quot;navbar__mobile-link\&quot;&gt;Blog&lt;/a&gt;&lt;/li&gt;\n        &lt;li&gt;&lt;a href=\&quot;/showcase/\&quot; class=\&quot;navbar__mobile-link\&quot;&gt;Showcase&lt;/a&gt;&lt;/li&gt;\n        &lt;li&gt;&lt;a href=\&quot;/bookmarks/\&quot; class=\&quot;navbar__mobile-link\&quot;&gt;Saved Themes&lt;/a&gt;&lt;/li&gt;\n      &lt;/ul&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n&lt;/nav&gt;\n\n&lt;!-- Search overlay --&gt;\n&lt;div id=\&quot;search-overlay\&quot; class=\&quot;search-overlay\&quot; role=\&quot;dialog\&quot; aria-modal=\&quot;true\&quot; aria-label=\&quot;Search\&quot; onclick=\&quot;JekyllHub.closeSearch()\&quot;&gt;\n  &lt;div class=\&quot;search-overlay__panel\&quot; onclick=\&quot;event.stopPropagation()\&quot;&gt;\n    &lt;div class=\&quot;search-overlay__input-wrap\&quot;&gt;\n      &lt;svg width=\&quot;20\&quot; height=\&quot;20\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot; class=\&quot;search-overlay__icon\&quot;&gt;\n        &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z\&quot;/&gt;\n      &lt;/svg&gt;\n      &lt;input type=\&quot;search\&quot; id=\&quot;search-input\&quot; class=\&quot;search-overlay__input\&quot; placeholder=\&quot;Search themes and articles…\&quot; autocomplete=\&quot;off\&quot; aria-label=\&quot;Search\&quot;&gt;\n      &lt;kbd class=\&quot;search-overlay__esc\&quot; onclick=\&quot;JekyllHub.closeSearch()\&quot;&gt;ESC&lt;/kbd&gt;\n    &lt;/div&gt;\n    &lt;div id=\&quot;search-results\&quot; class=\&quot;search-overlay__results\&quot; role=\&quot;listbox\&quot;&gt;&lt;/div&gt;\n    &lt;div class=\&quot;search-overlay__hint\&quot;&gt;\n      Press &lt;kbd&gt;↑&lt;/kbd&gt; &lt;kbd&gt;↓&lt;/kbd&gt; to navigate, &lt;kbd&gt;↡&lt;/kbd&gt; to select\n    &lt;/div&gt;\n  &lt;/div&gt;\n&lt;/div&gt;\n\n\n  &lt;!-- Inject Jekyll collection data for client-side search, filtering, and bookmarks --&gt;\n  &lt;script&gt;\n    window.SITE_DATA = {\n      baseurl: \&quot;\&quot;,\n      themeCardPlaceholder: \&quot;/assets/images/placeholder/placeholder-card.svg\&quot;,\n      newBadgeDays: 30,\n      themes: [\n        \n        {\n          title: \&quot;Academic Pages Jekyll Theme\&quot;,\n          description: \&quot;An academic portfolio Jekyll theme for researchers and scholars. Supports publications, talks, CV pages, and GitHub Pages out of the box.\&quot;,\n          card_description: \&quot;Academic portfolio for researchers with publications, talks, and CV pages.\&quot;,\n          url: \&quot;/themes/academicpages/\&quot;,\n          category: \&quot;Academic\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://academicpages.github.io/\&quot;,\n          card_image: \&quot;/assets/images/themes/academicpages-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;academicpages\&quot;,\n        },\n        \n        {\n          title: \&quot;Advance Jekyll Theme\&quot;,\n          description: \&quot;A premium multi-purpose Jekyll theme for building advanced marketing and business websites. Includes Services, Projects, and Team content types, a configurable hero section, full blog, dark mode, and Bootstrap 5.2.\&quot;,\n          card_description: \&quot;Premium multi-purpose theme β€” services, projects, team, blog, and configurable hero.\&quot;,\n          url: \&quot;/themes/advance/\&quot;,\n          category: \&quot;Business\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 79,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://jekyll-advance.netlify.app/\&quot;,\n          card_image: \&quot;/assets/images/themes/advance-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://www.zerostatic.io/theme/jekyll-advance/\&quot;,\n          author: \&quot;Zerostatic\&quot;,\n          added_at: \&quot;2026-06-27\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: true,\n          trending: true,\n          slug: \&quot;advance\&quot;,\n        },\n        \n        {\n          title: \&quot;Agency Jekyll Theme\&quot;,\n          description: \&quot;A striking single-page agency Jekyll theme with full-screen sections, portfolio grid, and team showcase. Based on Start Bootstrap Agency.\&quot;,\n          card_description: \&quot;Striking single-page agency theme with portfolio grid and team showcase.\&quot;,\n          url: \&quot;/themes/agency/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://y7kim.github.io/agency-jekyll-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/agency-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-10\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;agency\&quot;,\n        },\n        \n        {\n          title: \&quot;al-folio Jekyll Theme\&quot;,\n          description: \&quot;A clean, minimal Jekyll theme built for academics and researchers. Beautifully renders publications, projects, and CV with BibTeX support.\&quot;,\n          card_description: \&quot;Clean academic theme for researchers with BibTeX and publications support.\&quot;,\n          url: \&quot;/themes/al-folio/\&quot;,\n          category: \&quot;Academic\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://alshedivat.github.io/al-folio/\&quot;,\n          card_image: \&quot;/assets/images/themes/al-folio-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-15\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;al-folio\&quot;,\n        },\n        \n        {\n          title: \&quot;Alembic Jekyll Theme\&quot;,\n          description: \&quot;A clean, minimal Jekyll theme with great typography and flexible page layouts. Works out of the box as a gem-based theme.\&quot;,\n          card_description: \&quot;Clean, minimal gem-based theme with flexible page layouts.\&quot;,\n          url: \&quot;/themes/alembic/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://alembic.darn.es/\&quot;,\n          card_image: \&quot;/assets/images/themes/alembic-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-02-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;alembic\&quot;,\n        },\n        \n        {\n          title: \&quot;Almace Scaffolding Jekyll Theme\&quot;,\n          description: \&quot;A bold, minimal, and blazing fast Jekyll theme with a distinctive typographic style and performance-first architecture.\&quot;,\n          card_description: \&quot;Bold, minimal, blazing-fast theme with distinctive typographic style.\&quot;,\n          url: \&quot;/themes/almace-scaffolding/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://sparanoid.com/lab/amsf/\&quot;,\n          card_image: \&quot;/assets/images/themes/almace-scaffolding-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;almace-scaffolding\&quot;,\n        },\n        \n        {\n          title: \&quot;Architect Jekyll Theme\&quot;,\n          description: \&quot;A clean GitHub Pages Jekyll theme with a prominent sidebar and crisp typography. Official GitHub Pages theme, ideal for project documentation.\&quot;,\n          card_description: \&quot;Clean GitHub Pages theme with prominent sidebar for project docs.\&quot;,\n          url: \&quot;/themes/architect/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/architect/\&quot;,\n          card_image: \&quot;/assets/images/themes/architect-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;architect\&quot;,\n        },\n        \n        {\n          title: \&quot;Aura Pro Jekyll Theme\&quot;,\n          description: \&quot;The premium upgrade to the Aura Jekyll theme. Includes all Aura features plus advanced blog layouts, star-rated testimonials, Sendy newsletter support, and read-time indicators.\&quot;,\n          card_description: \&quot;Premium upgrade to Aura β€” advanced layouts, star testimonials, and read time.\&quot;,\n          url: \&quot;/themes/aura-pro/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 9,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://satishw.github.io/jekyll-theme-aura-pro/\&quot;,\n          card_image: \&quot;/assets/images/themes/aura-pro-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://satishw.github.io/jekyll-theme-aura-pro/features/\&quot;,\n          author: \&quot;Satish W\&quot;,\n          added_at: \&quot;2026-06-26\&quot;,\n          discount_label: \&quot;launch_offer\&quot;,\n          discount_original_price: 29,\n          popular: false,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;aura-pro\&quot;,\n        },\n        \n        {\n          title: \&quot;Aura Jekyll Theme\&quot;,\n          description: \&quot;Versatile Jekyll theme designed for content creators, writers, and developers. Ships with blog, projects, testimonials, and portfolio sections β€” fully compatible with GitHub Pages.\&quot;,\n          card_description: \&quot;Versatile Jekyll theme for creators and developers β€” blog, projects, and portfolio ready.\&quot;,\n          url: \&quot;/themes/aura/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://satishw.github.io/jekyll-theme-aura/\&quot;,\n          card_image: \&quot;/assets/images/themes/aura-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;Satish W\&quot;,\n          added_at: \&quot;2026-02-10\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;aura\&quot;,\n        },\n        \n        {\n          title: \&quot;Basically Basic Jekyll Theme\&quot;,\n          description: \&quot;Your new Jekyll default theme β€” a modern, polished substitute for Minima. Six customisable colour skins, resume layout, off-canvas menu, and everything Minima should have been.\&quot;,\n          card_description: \&quot;Modern Minima replacement with six colour skins and a resume layout.\&quot;,\n          url: \&quot;/themes/basically-basic/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://mmistakes.github.io/jekyll-theme-basically-basic/\&quot;,\n          card_image: \&quot;/assets/images/themes/basically-basic-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;basically-basic\&quot;,\n        },\n        \n        {\n          title: \&quot;Beautiful Jekyll\&quot;,\n          description: \&quot;One of the most popular Jekyll blog themes. Easy to set up, highly customisable, and works perfectly on GitHub Pages.\&quot;,\n          card_description: \&quot;Highly popular blog theme β€” easy setup, works on GitHub Pages.\&quot;,\n          url: \&quot;/themes/beautiful-jekyll/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://beautifuljekyll.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/beautiful-jekyll-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-20\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;beautiful-jekyll\&quot;,\n        },\n        \n        {\n          title: \&quot;Bulma Clean Theme Jekyll Theme\&quot;,\n          description: \&quot;A clean and modern Jekyll theme built with the Bulma CSS framework. Features a blog, portfolio, and docs-ready layout with extensive customisation.\&quot;,\n          card_description: \&quot;Clean, modern Bulma CSS theme for blogs, portfolios, and docs.\&quot;,\n          url: \&quot;/themes/bulma-clean-theme/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://www.csrhymes.com/bulma-clean-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/bulma-clean-theme-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;bulma-clean-theme\&quot;,\n        },\n        \n        {\n          title: \&quot;Cayman Jekyll Theme\&quot;,\n          description: \&quot;A bright, clean GitHub Pages Jekyll theme with a large hero header and fluid typography. Simple and polished for project landing pages.\&quot;,\n          card_description: \&quot;Bright GitHub Pages theme with large hero header for project sites.\&quot;,\n          url: \&quot;/themes/cayman/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/cayman/\&quot;,\n          card_image: \&quot;/assets/images/themes/cayman-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-02-20\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;cayman\&quot;,\n        },\n        \n        {\n          title: \&quot;Centrarium Jekyll Theme\&quot;,\n          description: \&quot;A simple, classy Jekyll blog theme with a large header image, featured posts, category pages, and Google Analytics integration.\&quot;,\n          card_description: \&quot;Classy blog theme with large header images and featured posts.\&quot;,\n          url: \&quot;/themes/centrarium/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://bencentra.com/centrarium/\&quot;,\n          card_image: \&quot;/assets/images/themes/centrarium-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;centrarium\&quot;,\n        },\n        \n        {\n          title: \&quot;Chalk Jekyll Theme\&quot;,\n          description: \&quot;A high quality, completely customisable Jekyll blog theme. Features an elegant two-column layout, full-text search, category filtering, and subtle animations that make the experience feel alive.\&quot;,\n          card_description: \&quot;Elegant two-column blog with full-text search and category filtering.\&quot;,\n          url: \&quot;/themes/chalk/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://chalk.nielsenramon.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/chalk-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;chalk\&quot;,\n        },\n        \n        {\n          title: \&quot;Chirpy Jekyll Theme\&quot;,\n          description: \&quot;A polished, feature-rich blog theme with dark mode, full-text search, reading time, table of contents, and PWA support. One of the fastest-growing Jekyll themes.\&quot;,\n          card_description: \&quot;Feature-rich blog with dark mode, search, TOC, and PWA support.\&quot;,\n          url: \&quot;/themes/chirpy/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://chirpy.cotes.page/\&quot;,\n          card_image: \&quot;/assets/images/themes/chirpy-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-05\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;chirpy\&quot;,\n        },\n        \n        {\n          title: \&quot;Clean Blog Jekyll Theme\&quot;,\n          description: \&quot;A clean, distraction-free blog theme with full-width header images per post. A Start Bootstrap original ported to Jekyll.\&quot;,\n          card_description: \&quot;Distraction-free blog with full-width header images per post.\&quot;,\n          url: \&quot;/themes/clean-blog/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://startbootstrap.github.io/startbootstrap-clean-blog-jekyll/\&quot;,\n          card_image: \&quot;/assets/images/themes/clean-blog-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-02-25\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;clean-blog\&quot;,\n        },\n        \n        {\n          title: \&quot;Contrast Jekyll Theme\&quot;,\n          description: \&quot;A simple, minimal Jekyll blog theme with strong typographic contrast, clean post listings, and support for tags and pagination.\&quot;,\n          card_description: \&quot;Minimal blog with strong typographic contrast and tag support.\&quot;,\n          url: \&quot;/themes/contrast/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://niklasbuschmann.github.io/contrast/\&quot;,\n          card_image: \&quot;/assets/images/themes/contrast-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;contrast\&quot;,\n        },\n        \n        {\n          title: \&quot;Creative Jekyll Theme\&quot;,\n          description: \&quot;A one-page Bootstrap landing page Jekyll theme with a fullscreen hero image, smooth scroll navigation, and portfolio sections.\&quot;,\n          card_description: \&quot;One-page Bootstrap landing page with fullscreen hero and portfolio.\&quot;,\n          url: \&quot;/themes/creative/\&quot;,\n          category: \&quot;Landing Page\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://volny.github.io/creative-theme-jekyll/\&quot;,\n          card_image: \&quot;/assets/images/themes/creative-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;creative\&quot;,\n        },\n        \n        {\n          title: \&quot;Devlopr Jekyll Theme\&quot;,\n          description: \&quot;A feature-rich developer portfolio Jekyll theme with an integrated blog, skills section, CMS support, and dark mode built in.\&quot;,\n          card_description: \&quot;Developer portfolio with blog, skills section, and dark mode built in.\&quot;,\n          url: \&quot;/themes/devlopr-jekyll/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://devlopr.netlify.app/\&quot;,\n          card_image: \&quot;/assets/images/themes/devlopr-jekyll-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;devlopr-jekyll\&quot;,\n        },\n        \n        {\n          title: \&quot;Dinky Jekyll Theme\&quot;,\n          description: \&quot;A compact GitHub Pages Jekyll theme with a fixed sidebar and clean layout. Great for small documentation pages and personal project sites.\&quot;,\n          card_description: \&quot;Compact GitHub Pages theme with fixed sidebar for small project sites.\&quot;,\n          url: \&quot;/themes/dinky/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/dinky/\&quot;,\n          card_image: \&quot;/assets/images/themes/dinky-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;dinky\&quot;,\n        },\n        \n        {\n          title: \&quot;Documentation Jekyll Theme\&quot;,\n          description: \&quot;A documentation and help system Jekyll theme with search, navigation sidebar, and clean typography for technical writing.\&quot;,\n          card_description: \&quot;Help system theme with search, sidebar navigation, and clean typography.\&quot;,\n          url: \&quot;/themes/documentation/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://docs.cloudcannon.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/documentation-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;documentation\&quot;,\n        },\n        \n        {\n          title: \&quot;Feeling Responsive Jekyll Theme\&quot;,\n          description: \&quot;A multipurpose responsive Jekyll theme built on the Foundation framework with flexible layouts, widgets, and rich customisation options.\&quot;,\n          card_description: \&quot;Multipurpose Foundation theme with flexible layouts and rich widgets.\&quot;,\n          url: \&quot;/themes/feeling-responsive/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://phlow.github.io/feeling-responsive/\&quot;,\n          card_image: \&quot;/assets/images/themes/feeling-responsive-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;feeling-responsive\&quot;,\n        },\n        \n        {\n          title: \&quot;Flexible Jekyll\&quot;,\n          description: \&quot;A simple and clean Jekyll theme with a minimal design, dark mode support, tag pages, and a flexible two-column layout.\&quot;,\n          card_description: \&quot;Simple, clean blog with dark mode and flexible two-column layout.\&quot;,\n          url: \&quot;/themes/flexible-jekyll/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://artemsheludko.github.io/flexible-jekyll/\&quot;,\n          card_image: \&quot;/assets/images/themes/flexible-jekyll-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;flexible-jekyll\&quot;,\n        },\n        \n        {\n          title: \&quot;Forty Jekyll Theme\&quot;,\n          description: \&quot;A visually striking multipurpose Jekyll theme inspired by HTML5 UP. Features tiled project sections and high-impact full-screen headers.\&quot;,\n          card_description: \&quot;Visually striking multipurpose theme with tiled sections and full-screen headers.\&quot;,\n          url: \&quot;/themes/forty/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://andrewbanchich.github.io/forty-jekyll-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/forty-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-03-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;forty\&quot;,\n        },\n        \n        {\n          title: \&quot;Freelancer Jekyll Theme\&quot;,\n          description: \&quot;A flat design landing page and portfolio Jekyll theme based on the popular Freelancer Bootstrap theme by Start Bootstrap.\&quot;,\n          card_description: \&quot;Flat design portfolio and landing page theme for freelancers.\&quot;,\n          url: \&quot;/themes/freelancer/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://jeromelachaud.com/freelancer-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/freelancer-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;freelancer\&quot;,\n        },\n        \n        {\n          title: \&quot;Hacker Blog Jekyll Theme\&quot;,\n          description: \&quot;A minimal, terminal-inspired dark Jekyll blog theme for developers. Pure CLI aesthetic β€” black background, monospace font, zero distractions.\&quot;,\n          card_description: \&quot;Terminal-inspired dark blog β€” monospace, minimal, distraction-free.\&quot;,\n          url: \&quot;/themes/hacker-blog/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://tocttou.github.io/hacker-blog/\&quot;,\n          card_image: \&quot;/assets/images/themes/hacker-blog-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-03-05\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hacker-blog\&quot;,\n        },\n        \n        {\n          title: \&quot;Hacker Jekyll Theme\&quot;,\n          description: \&quot;The official GitHub Pages hacker Jekyll theme. Dark terminal-style design with monospace typography, built for developer project pages.\&quot;,\n          card_description: \&quot;Official GitHub Pages hacker theme with dark terminal-style design.\&quot;,\n          url: \&quot;/themes/hacker/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/hacker/\&quot;,\n          card_image: \&quot;/assets/images/themes/hacker-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hacker\&quot;,\n        },\n        \n        {\n          title: \&quot;Hitchens Jekyll Theme\&quot;,\n          description: \&quot;An unfussy Jekyll theme for serious writers. Minimal design, elegant typography, and a dark mode β€” inspired by the prose of Christopher Hitchens.\&quot;,\n          card_description: \&quot;Unfussy, elegant theme for serious writers with dark mode built in.\&quot;,\n          url: \&quot;/themes/hitchens/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://hitchens.patdryburgh.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/hitchens-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hitchens\&quot;,\n        },\n        \n        {\n          title: \&quot;HPSTR Jekyll Theme\&quot;,\n          description: \&quot;A responsive, full-featured Jekyll blog theme by Michael Rose. Rich with image-forward posts, sliding panel navigation, and social sharing.\&quot;,\n          card_description: \&quot;Image-forward blog with sliding panel navigation and social sharing.\&quot;,\n          url: \&quot;/themes/hpstr/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://mmistakes.github.io/hpstr-jekyll-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/hpstr-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hpstr\&quot;,\n        },\n        \n        {\n          title: \&quot;Huxpro Jekyll Theme\&quot;,\n          description: \&quot;A beautiful, cover-image-driven Jekyll blog theme inspired by Ghost&apos;s Casper. Features full-screen hero images, smooth transitions, and a clean reading experience.\&quot;,\n          card_description: \&quot;Cover-image-driven blog inspired by Ghost&apos;s Casper theme.\&quot;,\n          url: \&quot;/themes/huxpro/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://huxpro.github.io/\&quot;,\n          card_image: \&quot;/assets/images/themes/huxpro-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-08\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;huxpro\&quot;,\n        },\n        \n        {\n          title: \&quot;Hyde Jekyll Theme\&quot;,\n          description: \&quot;A brazen two-column Jekyll theme that pairs a prominent sidebar with uncomplicated content. Based on Poole, by Mark Otto.\&quot;,\n          card_description: \&quot;Two-column theme with prominent sidebar β€” elegant and timeless.\&quot;,\n          url: \&quot;/themes/hyde/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://hyde.getpoole.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/hyde-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-25\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hyde\&quot;,\n        },\n        \n        {\n          title: \&quot;Hydejack Jekyll Theme\&quot;,\n          description: \&quot;A boutique Jekyll theme with a rich sidebar, smooth page transitions, and portfolio support. The premium evolution of Hyde.\&quot;,\n          card_description: \&quot;Boutique theme with smooth page transitions and portfolio support.\&quot;,\n          url: \&quot;/themes/hydejack/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://hydejack.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/hydejack-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-30\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hydejack\&quot;,\n        },\n        \n        {\n          title: \&quot;Hydra Jekyll Theme\&quot;,\n          description: \&quot;A product and SaaS marketing Jekyll theme with a clean hero section, feature grid, pricing table, and testimonials.\&quot;,\n          card_description: \&quot;SaaS marketing theme with hero, feature grid, and pricing table.\&quot;,\n          url: \&quot;/themes/hydra/\&quot;,\n          category: \&quot;Landing Page\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://orange-ape.cloudvent.net/\&quot;,\n          card_image: \&quot;/assets/images/themes/hydra-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hydra\&quot;,\n        },\n        \n        {\n          title: \&quot;Jasper Jekyll Theme\&quot;,\n          description: \&quot;A Jekyll port of Ghost&apos;s default Casper theme. Brings the polished, editorial feel of Ghost blogging to static Jekyll sites.\&quot;,\n          card_description: \&quot;Jekyll port of Ghost&apos;s Casper β€” polished, editorial feel.\&quot;,\n          url: \&quot;/themes/jasper/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://jekyllt.github.io/jasper/\&quot;,\n          card_image: \&quot;/assets/images/themes/jasper-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;jasper\&quot;,\n        },\n        \n        {\n          title: \&quot;Jekyll Now\&quot;,\n          description: \&quot;The quickest way to start a Jekyll blog. Fork on GitHub, enable Pages, and you have a live blog in under a minute β€” zero command line required.\&quot;,\n          card_description: \&quot;Quickest way to start a Jekyll blog β€” fork, enable Pages, done.\&quot;,\n          url: \&quot;/themes/jekyll-now/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://barryclark.github.io/jekyll-now/\&quot;,\n          card_image: \&quot;/assets/images/themes/jekyll-now-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;jekyll-now\&quot;,\n        },\n        \n        {\n          title: \&quot;TeXt Jekyll Theme\&quot;,\n          description: \&quot;A highly customisable Jekyll theme inspired by iOS 11 style. Features multiple skins, rich built-in components, full internationalisation, and support for blogs, documentation, and team sites.\&quot;,\n          card_description: \&quot;iOS-inspired theme with multiple skins and rich built-in components.\&quot;,\n          url: \&quot;/themes/jekyll-text-theme/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://kitian616.github.io/jekyll-TeXt-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/jekyll-text-theme-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;jekyll-text-theme\&quot;,\n        },\n        \n        {\n          title: \&quot;Just the Docs Jekyll Theme\&quot;,\n          description: \&quot;The most popular Jekyll documentation theme. Clean sidebar navigation, full-text search, and excellent code block support.\&quot;,\n          card_description: \&quot;Most popular Jekyll docs theme with sidebar navigation and search.\&quot;,\n          url: \&quot;/themes/just-the-docs/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://just-the-docs.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/just-the-docs-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-08\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;just-the-docs\&quot;,\n        },\n        \n        {\n          title: \&quot;KlisΓ© Jekyll Theme\&quot;,\n          description: \&quot;A minimalist Jekyll theme with seamless light and dark mode. Clean typography, fast performance, and a modern aesthetic β€” designed for personal sites and blogs that value simplicity.\&quot;,\n          card_description: \&quot;Minimalist theme with seamless dark mode and clean typography.\&quot;,\n          url: \&quot;/themes/klise/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://klise.vercel.app/\&quot;,\n          card_image: \&quot;/assets/images/themes/klise-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;klise\&quot;,\n        },\n        \n        {\n          title: \&quot;Lanyon Jekyll Theme\&quot;,\n          description: \&quot;A Jekyll theme that hides its sidebar until you need it. Clean, spacious reading layout with a smooth slide-out navigation drawer.\&quot;,\n          card_description: \&quot;Clean blog theme with a smooth slide-out navigation drawer.\&quot;,\n          url: \&quot;/themes/lanyon/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://lanyon.getpoole.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/lanyon-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-02-05\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;lanyon\&quot;,\n        },\n        \n        {\n          title: \&quot;Leonids Jekyll Theme\&quot;,\n          description: \&quot;A simple and clean two-column Jekyll blog theme. Fixed sidebar with author bio and social links, clean post listing, and a timeless layout that puts content front and centre.\&quot;,\n          card_description: \&quot;Two-column blog with fixed sidebar and timeless content-first layout.\&quot;,\n          url: \&quot;/themes/leonids/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://renyuanz.github.io/leonids/\&quot;,\n          card_image: \&quot;/assets/images/themes/leonids-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;leonids\&quot;,\n        },\n        \n        {\n          title: \&quot;Livvic Jekyll Theme\&quot;,\n          description: \&quot;A clean, creative, and unique Jekyll theme for agency and personal portfolio websites. Features a flat modern design, unique effects, Bootstrap 4, and Font Awesome β€” ready to customise and launch in hours.\&quot;,\n          card_description: \&quot;Clean creative portfolio theme for agencies and freelancers β€” minimal, unique, responsive.\&quot;,\n          url: \&quot;/themes/livvic/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 49,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://livvic-jekyll.tortoizthemes.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/livvic-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://tortoizthemes.com/theme/livvic-jekyll-theme/\&quot;,\n          author: \&quot;Tortoiz Themes\&quot;,\n          added_at: \&quot;2026-06-27\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;livvic\&quot;,\n        },\n        \n        {\n          title: \&quot;Long Haul Jekyll Theme\&quot;,\n          description: \&quot;A minimal, type-focused Jekyll theme designed for long-form writing. Understated design that keeps the reader&apos;s attention on the words.\&quot;,\n          card_description: \&quot;Minimal, type-focused theme designed for long-form writing.\&quot;,\n          url: \&quot;/themes/long-haul/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://brianmaierjr.com/long-haul/\&quot;,\n          card_image: \&quot;/assets/images/themes/long-haul-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;long-haul\&quot;,\n        },\n        \n        {\n          title: \&quot;Massively Jekyll Theme\&quot;,\n          description: \&quot;A bold, image-driven Jekyll blog theme ported from HTML5 UP. Full-screen background image on the homepage, large featured post images, and a striking visual identity unlike any other Jekyll theme.\&quot;,\n          card_description: \&quot;Bold, image-driven blog with full-screen homepage background.\&quot;,\n          url: \&quot;/themes/massively/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://jekyllup.github.io/jekyll-theme-massively/\&quot;,\n          card_image: \&quot;/assets/images/themes/massively-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;massively\&quot;,\n        },\n        \n        {\n          title: \&quot;Mediator Jekyll Theme\&quot;,\n          description: \&quot;A medium-inspired Jekyll blog theme with large featured images, clean typography, and a focus on long-form reading.\&quot;,\n          card_description: \&quot;Medium-inspired blog with large featured images and clean typography.\&quot;,\n          url: \&quot;/themes/mediator/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://blog.base68.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/mediator-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;mediator\&quot;,\n        },\n        \n        {\n          title: \&quot;Mediumish Jekyll Theme\&quot;,\n          description: \&quot;A Medium-inspired blog theme with card-based post listings, author pages, and a clean reading layout. One of the most popular Jekyll blog starters.\&quot;,\n          card_description: \&quot;Medium-inspired blog with card post listings and author pages.\&quot;,\n          url: \&quot;/themes/mediumish/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://wowthemesnet.github.io/mediumish-theme-jekyll/\&quot;,\n          card_image: \&quot;/assets/images/themes/mediumish-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-03-10\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;mediumish\&quot;,\n        },\n        \n        {\n          title: \&quot;Merlot Jekyll Theme\&quot;,\n          description: \&quot;A warm, editorial GitHub Pages Jekyll theme with classic typographic styling. Official GitHub Pages theme for personal and project sites.\&quot;,\n          card_description: \&quot;Warm, editorial GitHub Pages theme with classic typographic styling.\&quot;,\n          url: \&quot;/themes/merlot/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/merlot/\&quot;,\n          card_image: \&quot;/assets/images/themes/merlot-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;merlot\&quot;,\n        },\n        \n        {\n          title: \&quot;Midnight Jekyll Theme\&quot;,\n          description: \&quot;A dark, sleek GitHub Pages Jekyll theme with light text on deep backgrounds. Official GitHub Pages theme ideal for personal projects and portfolios.\&quot;,\n          card_description: \&quot;Dark, sleek GitHub Pages theme with light text on deep backgrounds.\&quot;,\n          url: \&quot;/themes/midnight/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/midnight/\&quot;,\n          card_image: \&quot;/assets/images/themes/midnight-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;midnight\&quot;,\n        },\n        \n        {\n          title: \&quot;Miles Jekyll Theme\&quot;,\n          description: \&quot;A creative portfolio and agency Jekyll theme with 12+ homepage layouts, 6 portfolio styles, and 4 blog layouts. Designed for agencies, freelancers, and creative professionals who want a stunning site in hours not days.\&quot;,\n          card_description: \&quot;Creative agency and portfolio theme β€” 12+ homepages, 6 portfolio styles, dark design.\&quot;,\n          url: \&quot;/themes/miles/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 79,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://miles-jekyll.tortoizthemes.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/miles-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://tortoizthemes.com/demo/miles/\&quot;,\n          author: \&quot;Tortoiz Themes\&quot;,\n          added_at: \&quot;2026-06-27\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;miles\&quot;,\n        },\n        \n        {\n          title: \&quot;Millennial Jekyll Theme\&quot;,\n          description: \&quot;A minimalist, responsive Jekyll blog theme with a clean layout, tag support, pagination, and social share buttons.\&quot;,\n          card_description: \&quot;Minimalist responsive blog with tag support and social share buttons.\&quot;,\n          url: \&quot;/themes/millennial/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://lenpaul.github.io/Millennial/\&quot;,\n          card_image: \&quot;/assets/images/themes/millennial-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;millennial\&quot;,\n        },\n        \n        {\n          title: \&quot;Minima Jekyll Theme\&quot;,\n          description: \&quot;Jekyll&apos;s built-in default theme. Minimal, clean, and battle-tested. The foundation every Jekyll developer knows.\&quot;,\n          card_description: \&quot;Jekyll&apos;s default theme β€” minimal, clean, and battle-tested.\&quot;,\n          url: \&quot;/themes/minima/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://jekyll.github.io/minima/\&quot;,\n          card_image: \&quot;/assets/images/themes/minima-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;minima\&quot;,\n        },\n        \n        {\n          title: \&quot;Minimal Mistakes Jekyll Theme\&quot;,\n          description: \&quot;The most popular Jekyll theme on GitHub. A flexible two-column theme perfect for personal sites, blogs, documentation, and portfolios β€” with 12 layout skins.\&quot;,\n          card_description: \&quot;Most popular Jekyll theme β€” flexible two-column with 12 layout skins.\&quot;,\n          url: \&quot;/themes/minimal-mistakes/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://mmistakes.github.io/minimal-mistakes/\&quot;,\n          card_image: \&quot;/assets/images/themes/minimal-mistakes-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-02\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;minimal-mistakes\&quot;,\n        },\n        \n        {\n          title: \&quot;Minimal Jekyll Theme\&quot;,\n          description: \&quot;The official minimal GitHub Pages Jekyll theme. Clean and lightweight with great default typography for personal projects and documentation.\&quot;,\n          card_description: \&quot;Official minimal GitHub Pages theme β€” clean and lightweight.\&quot;,\n          url: \&quot;/themes/minimal/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/minimal/\&quot;,\n          card_image: \&quot;/assets/images/themes/minimal-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;minimal\&quot;,\n        },\n        \n        {\n          title: \&quot;Modern Resume Theme Jekyll Theme\&quot;,\n          description: \&quot;A sleek, single-page resume/CV theme for Jekyll. Dark header, clean timeline layout, and sections for experience, education, skills, and projects.\&quot;,\n          card_description: \&quot;Sleek single-page resume/CV with timeline and skills sections.\&quot;,\n          url: \&quot;/themes/modern-resume-theme/\&quot;,\n          category: \&quot;Resume / CV\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://sproogen.github.io/modern-resume-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/modern-resume-theme-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-02-28\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;modern-resume-theme\&quot;,\n        },\n        \n        {\n          title: \&quot;Moonwalk Jekyll Theme\&quot;,\n          description: \&quot;A dark, minimal Jekyll blog theme with a focus on typography and whitespace. Elegant simplicity for serious writers.\&quot;,\n          card_description: \&quot;Dark, minimal blog focused on typography and generous whitespace.\&quot;,\n          url: \&quot;/themes/moonwalk/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://abhinavs.github.io/moonwalk/\&quot;,\n          card_image: \&quot;/assets/images/themes/moonwalk-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-03-12\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;moonwalk\&quot;,\n        },\n        \n        {\n          title: \&quot;Mundana Jekyll Theme\&quot;,\n          description: \&quot;A modern Jekyll theme for bloggers built with Bootstrap 4. Features featured posts, category pages, newsletter signup, and clean card layouts.\&quot;,\n          card_description: \&quot;Modern Bootstrap 4 blog with featured posts and newsletter signup.\&quot;,\n          url: \&quot;/themes/mundana/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://mundana.amitmerchant.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/mundana-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;mundana\&quot;,\n        },\n        \n        {\n          title: \&quot;Online CV Jekyll Theme\&quot;,\n          description: \&quot;A one-page Jekyll CV and resume theme for creating a beautiful online portfolio. Minimal, readable design perfect for job seekers and freelancers.\&quot;,\n          card_description: \&quot;One-page CV/resume theme for a beautiful online portfolio.\&quot;,\n          url: \&quot;/themes/online-cv/\&quot;,\n          category: \&quot;Resume / CV\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://sharu725.github.io/online-cv/\&quot;,\n          card_image: \&quot;/assets/images/themes/online-cv-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-03-15\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;online-cv\&quot;,\n        },\n        \n        {\n          title: \&quot;Origin Jekyll Theme\&quot;,\n          description: \&quot;A fully featured and highly configurable modern blog theme for Jekyll. Includes categories, authors, comments, pagination, dark mode, and a perfect 100/100 Google Lighthouse score.\&quot;,\n          card_description: \&quot;Modern blog theme with dark mode, authors, categories, and 100/100 Lighthouse.\&quot;,\n          url: \&quot;/themes/origin/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 49,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://jekyll-origin.netlify.app/\&quot;,\n          card_image: \&quot;/assets/images/themes/origin-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://www.zerostatic.io/theme/jekyll-origin/\&quot;,\n          author: \&quot;Zerostatic\&quot;,\n          added_at: \&quot;2026-06-27\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;origin\&quot;,\n        },\n        \n        {\n          title: \&quot;Phantom Jekyll Theme\&quot;,\n          description: \&quot;A minimalist, responsive portfolio Jekyll theme with a project grid, modal image viewer, and subtle hover animations.\&quot;,\n          card_description: \&quot;Minimalist portfolio with project grid and modal image viewer.\&quot;,\n          url: \&quot;/themes/phantom/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://jamigibbs.github.io/phantom/\&quot;,\n          card_image: \&quot;/assets/images/themes/phantom-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;phantom\&quot;,\n        },\n        \n        {\n          title: \&quot;Pixyll Jekyll Theme\&quot;,\n          description: \&quot;A simple, beautiful Jekyll theme that puts your content first. Mobile-first, fluidly responsive, and delightfully lightweight β€” built around great typography and generous whitespace.\&quot;,\n          card_description: \&quot;Simple, beautiful theme that puts content first with generous whitespace.\&quot;,\n          url: \&quot;/themes/pixyll/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pixyll.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/pixyll-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;pixyll\&quot;,\n        },\n        \n        {\n          title: \&quot;Primer Jekyll Theme\&quot;,\n          description: \&quot;The official GitHub Pages primer Jekyll theme. Clean, GitHub-style design with great readability β€” perfect for documentation and project pages.\&quot;,\n          card_description: \&quot;Official GitHub Pages primer theme β€” clean GitHub-style for docs.\&quot;,\n          url: \&quot;/themes/primer/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/primer/\&quot;,\n          card_image: \&quot;/assets/images/themes/primer-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;primer\&quot;,\n        },\n        \n        {\n          title: \&quot;Researcher Jekyll Theme\&quot;,\n          description: \&quot;A minimal, clean Jekyll theme for a single-page academic CV. Presents your education, experience, publications, and skills in a clear, professional layout that loads instantly.\&quot;,\n          card_description: \&quot;Minimal single-page academic CV with a clean, professional layout.\&quot;,\n          url: \&quot;/themes/researcher/\&quot;,\n          category: \&quot;Resume / CV\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://ankitsultana.com/researcher/\&quot;,\n          card_image: \&quot;/assets/images/themes/researcher-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;researcher\&quot;,\n        },\n        \n        {\n          title: \&quot;Reverie Jekyll Theme\&quot;,\n          description: \&quot;A ridiculously elegant, fully responsive Jekyll blog theme based on Poole. Supports categories, tags, Disqus comments, and Google Analytics.\&quot;,\n          card_description: \&quot;Elegantly responsive blog based on Poole with categories and tags.\&quot;,\n          url: \&quot;/themes/reverie/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://reverie.amitmerchant.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/reverie-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;reverie\&quot;,\n        },\n        \n        {\n          title: \&quot;Sandbox Jekyll Theme\&quot;,\n          description: \&quot;A massive multipurpose Jekyll theme with 27 home pages, 130+ ready-to-use blocks, and 250+ UI elements. Built with Bootstrap 5 and zero jQuery β€” perfect for startups, SaaS, agencies, portfolios, and eCommerce sites.\&quot;,\n          card_description: \&quot;Multipurpose theme β€” 27 homepages, 130+ blocks, 250+ UI elements, Bootstrap 5.\&quot;,\n          url: \&quot;/themes/sandbox/\&quot;,\n          category: \&quot;Business\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 99,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://sandbox.tortoizthemes.com/demo28/\&quot;,\n          card_image: \&quot;/assets/images/themes/sandbox-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://tortoizthemes.com/theme/sandbox/\&quot;,\n          author: \&quot;Tortoiz Themes\&quot;,\n          added_at: \&quot;2026-06-27\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: true,\n          trending: true,\n          slug: \&quot;sandbox\&quot;,\n        },\n        \n        {\n          title: \&quot;Scriptor Jekyll Theme\&quot;,\n          description: \&quot;A minimal, clean, and modern Jekyll theme for writers and bloggers. Elegant typography, featured images, and a distraction-free reading layout built for long-form content.\&quot;,\n          card_description: \&quot;Minimal, modern theme for writers with elegant typography.\&quot;,\n          url: \&quot;/themes/scriptor/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://scriptor-jekyll.netlify.app/\&quot;,\n          card_image: \&quot;/assets/images/themes/scriptor-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;scriptor\&quot;,\n        },\n        \n        {\n          title: \&quot;Serif Jekyll Theme\&quot;,\n          description: \&quot;A beautiful small business Jekyll theme by CloudCannon. Elegant serif typography, warm tones, and sections for services, team members, and contact.\&quot;,\n          card_description: \&quot;Beautiful small business theme with serif typography and service sections.\&quot;,\n          url: \&quot;/themes/serif/\&quot;,\n          category: \&quot;Business\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://serif.cloudcannon.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/serif-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-02-08\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;serif\&quot;,\n        },\n        \n        {\n          title: \&quot;Slate Jekyll Theme\&quot;,\n          description: \&quot;A bold, dark GitHub Pages Jekyll theme with prominent sidebar navigation and strong code styling. Official GitHub Pages theme for developer docs.\&quot;,\n          card_description: \&quot;Bold, dark GitHub Pages theme for developer docs with sidebar nav.\&quot;,\n          url: \&quot;/themes/slate/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/slate/\&quot;,\n          card_image: \&quot;/assets/images/themes/slate-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;slate\&quot;,\n        },\n        \n        {\n          title: \&quot;Snowlake Jekyll Theme\&quot;,\n          description: \&quot;A versatile multipurpose Jekyll theme with 27 unique demos, 17 color schemes, 5 font options, Slider Revolution, and 4 icon sets with 2300+ icons. Built on Jekyll 4.3+ and Bootstrap 5 β€” ideal for businesses, agencies, SaaS, and creatives.\&quot;,\n          card_description: \&quot;Multipurpose theme β€” 27 demos, 17 color schemes, Slider Revolution, Bootstrap 5.\&quot;,\n          url: \&quot;/themes/snowlake/\&quot;,\n          category: \&quot;Business\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 79,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://snowlake.tortoizthemes.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/snowlake-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://tortoizthemes.com/theme/snowlake-jekyll-theme/\&quot;,\n          author: \&quot;Tortoiz Themes\&quot;,\n          added_at: \&quot;2026-06-27\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;snowlake\&quot;,\n        },\n        \n        {\n          title: \&quot;So Simple Jekyll Theme\&quot;,\n          description: \&quot;A simple Jekyll theme for words and pictures. Clean reading layout with support for author profiles, social links, and Google Analytics.\&quot;,\n          card_description: \&quot;Simple theme for words and pictures with author profile support.\&quot;,\n          url: \&quot;/themes/so-simple/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://mmistakes.github.io/so-simple-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/so-simple-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;so-simple\&quot;,\n        },\n        \n        {\n          title: \&quot;Swiss Jekyll Theme\&quot;,\n          description: \&quot;A bold, typographic Jekyll theme inspired by International Swiss Style design. Strong grid, oversized headings, and a clean black-and-white palette that puts typography first.\&quot;,\n          card_description: \&quot;Bold, typographic theme inspired by Swiss International Style design.\&quot;,\n          url: \&quot;/themes/swiss/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://broccolini.net/swiss/\&quot;,\n          card_image: \&quot;/assets/images/themes/swiss-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;swiss\&quot;,\n        },\n        \n        {\n          title: \&quot;Tactile Jekyll Theme\&quot;,\n          description: \&quot;A textured, warm GitHub Pages Jekyll theme with a hand-crafted sidebar style. Official GitHub Pages theme with classic personality and charm.\&quot;,\n          card_description: \&quot;Textured, warm GitHub Pages theme with hand-crafted sidebar style.\&quot;,\n          url: \&quot;/themes/tactile/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/tactile/\&quot;,\n          card_image: \&quot;/assets/images/themes/tactile-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;tactile\&quot;,\n        },\n        \n        {\n          title: \&quot;Tale Jekyll Theme\&quot;,\n          description: \&quot;An minimal Jekyll theme focused on content. Elegant single-column layout with beautiful typography, clean post listings, and zero visual noise β€” perfect for long-form writing.\&quot;,\n          card_description: \&quot;Minimal, elegant single-column blog for long-form writing.\&quot;,\n          url: \&quot;/themes/tale/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://chesterhow.github.io/tale/\&quot;,\n          card_image: \&quot;/assets/images/themes/tale-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;tale\&quot;,\n        },\n        \n        {\n          title: \&quot;Type Theme Jekyll Theme\&quot;,\n          description: \&quot;A free, open-source theme for Jekyll focused purely on typography and reading. Minimal design, fast load times, and a beautifully simple blog layout for writers who mean business.\&quot;,\n          card_description: \&quot;Typography-focused minimal theme for writers who value clean reading.\&quot;,\n          url: \&quot;/themes/type-theme/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://rohanchandra.github.io/type-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/type-theme-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;type-theme\&quot;,\n        },\n        \n        {\n          title: \&quot;YAT Jekyll Theme\&quot;,\n          description: \&quot;Yet Another Theme β€” a modern, flat-design Jekyll blog theme with night mode, multi-language support, and beautiful typography. Clean, fast, and elegant for writers and developers alike.\&quot;,\n          card_description: \&quot;Modern flat-design blog with night mode and multi-language support.\&quot;,\n          url: \&quot;/themes/yat/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://jeffreytse.github.io/jekyll-theme-yat/\&quot;,\n          card_image: \&quot;/assets/images/themes/yat-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;yat\&quot;,\n        }\n        \n      ],\n      posts: [\n        \n        {\n          title: \&quot;Jekyll vs Gatsby: Which Static Site Generator Should You Choose in 2026?\&quot;,\n          excerpt: \&quot;Jekyll and Gatsby both produce fast, static websites β€” but they come from completely different worlds. Jekyll is a mature, Ruby-based generator built for sim...\&quot;,\n          url: \&quot;/comparison/2026/07/03/jekyll-vs-gatsby/\&quot;,\n          tags: [],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;July 3, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-gatsby.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Static Files and Assets: How to Manage Images, CSS, and JS\&quot;,\n          excerpt: \&quot;Jekyll processes some files (Markdown, Liquid templates, Sass) and copies others unchanged. Understanding which is which β€” and how to reference assets correc...\&quot;,\n          url: \&quot;/tutorial/2026/07/02/jekyll-static-files-assets/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;July 2, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-static-files-assets.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Drafts and Publishing Workflow: How to Manage Content\&quot;,\n          excerpt: \&quot;Jekyll gives you several ways to keep content out of your public site while you work on it: the _drafts/ folder, published: false front matter, and future-da...\&quot;,\n          url: \&quot;/tutorial/2026/07/01/jekyll-drafts-publishing-workflow/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;July 1, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-drafts-publishing-workflow.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Use Sass and SCSS with Jekyll (Complete Guide)\&quot;,\n          excerpt: \&quot;Jekyll has built-in Sass processing β€” no Node.js, no build tools, no webpack required. Write SCSS files, Jekyll compiles them to CSS automatically. This guid...\&quot;,\n          url: \&quot;/tutorial/2026/06/30/jekyll-sass-scss-guide/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 30, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-sass-scss-guide.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Permalinks and URL Structure: The Complete Guide\&quot;,\n          excerpt: \&quot;Jekyll gives you precise control over the URL structure of every page on your site. Understanding how permalinks work is important for clean URLs, SEO, and e...\&quot;,\n          url: \&quot;/tutorial/2026/06/29/jekyll-permalinks-url-structure/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 29, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-permalinks-url-structure.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Variables Reference: site, page, layout, and More\&quot;,\n          excerpt: \&quot;Jekyll makes a set of variables available in every template through Liquid. Knowing which variables exist and what they contain is essential for building and...\&quot;,\n          url: \&quot;/tutorial/2026/06/28/jekyll-variables-reference/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 28, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-variables-reference.webp\&quot;\n        },\n        \n        {\n          title: \&quot;What Makes a Good Jekyll Theme? (Checklist Before You Buy)\&quot;,\n          excerpt: \&quot;A Jekyll theme can look polished in a screenshot and be a nightmare to work with in practice. Bad themes have hard-coded values scattered across templates, S...\&quot;,\n          url: \&quot;/themes/2026/06/27/what-makes-a-good-jekyll-theme/\&quot;,\n          tags: [\&quot;jekyll themes\&quot;,\&quot;jekyll theme quality\&quot;,\&quot;best jekyll themes\&quot;,\&quot;premium jekyll themes\&quot;,\&quot;jekyll theme checklist\&quot;],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;June 27, 2026\&quot;,\n          image: \&quot;/assets/images/blog/what-makes-a-good-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Liquid Tags: The Complete Reference Guide\&quot;,\n          excerpt: \&quot;Liquid tags are the logic layer of Jekyll templates. Wrapped in {% %} delimiters, they control flow, create variables, loop over data, and embed content β€” wi...\&quot;,\n          url: \&quot;/tutorial/2026/06/26/jekyll-liquid-tags-reference/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 26, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-liquid-tags-reference.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Liquid Templating: A Beginner&apos;s Complete Guide\&quot;,\n          excerpt: \&quot;Liquid is the template language Jekyll uses to make HTML dynamic. It was created by Shopify and is also used in many other platforms. In Jekyll, Liquid lets ...\&quot;,\n          url: \&quot;/tutorial/2026/06/25/jekyll-liquid-templating-basics/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 25, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-liquid-templating-basics.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Directory Structure Explained: What Every File and Folder Does\&quot;,\n          excerpt: \&quot;When you first open a Jekyll project, the folder structure can look confusing. Underscores everywhere, a _site folder that appears after building, special fi...\&quot;,\n          url: \&quot;/tutorial/2026/06/24/jekyll-directory-structure/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 24, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-directory-structure.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Remote Themes: How to Use Any GitHub Theme Without Installing It\&quot;,\n          excerpt: \&quot;Remote themes are one of the most convenient ways to use a Jekyll theme β€” especially on GitHub Pages. Instead of installing a theme as a Ruby gem, you refere...\&quot;,\n          url: \&quot;/tutorial/2026/06/23/jekyll-remote-themes/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 23, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-remote-themes.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll _config.yml: The Complete Configuration Guide\&quot;,\n          excerpt: \&quot;_config.yml is the single most important file in a Jekyll project. It controls everything: your site’s URL, which plugins run, how collections are defined, w...\&quot;,\n          url: \&quot;/tutorial/2026/06/22/jekyll-config-yml-guide/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 22, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-config-yml-guide.webp\&quot;\n        },\n        \n        {\n          title: \&quot;10 Things to Check Before Installing a Jekyll Theme\&quot;,\n          excerpt: \&quot;Installing a Jekyll theme takes minutes. Undoing a bad choice takes hours. Before you run bundle install, it is worth spending ten minutes checking these ten...\&quot;,\n          url: \&quot;/themes/2026/06/21/jekyll-theme-checklist-before-installing/\&quot;,\n          tags: [\&quot;jekyll themes\&quot;,\&quot;jekyll theme checklist\&quot;,\&quot;install jekyll theme\&quot;,\&quot;jekyll theme quality\&quot;],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;June 21, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-theme-checklist-before-installing.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Includes vs Layouts: What&apos;s the Difference and When to Use Each\&quot;,\n          excerpt: \&quot;Jekyll has two ways to reuse HTML across your site: layouts and includes. Both reduce repetition, but they work differently and serve different purposes. Und...\&quot;,\n          url: \&quot;/tutorial/2026/06/20/jekyll-includes-vs-layouts/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 20, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-includes-vs-layouts.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Layouts Explained: How to Structure Your Site Templates\&quot;,\n          excerpt: \&quot;Layouts are Jekyll’s template system β€” reusable HTML wrappers that surround your content. Every page on your Jekyll site uses a layout, even if you have not ...\&quot;,\n          url: \&quot;/tutorial/2026/06/19/jekyll-layouts-explained/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 19, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-layouts-explained.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Front Matter: The Complete Guide\&quot;,\n          excerpt: \&quot;Front matter is how Jekyll knows what to do with a file. Without it, Jekyll treats a file as a static asset and copies it unchanged. With it, Jekyll processe...\&quot;,\n          url: \&quot;/tutorial/2026/06/18/jekyll-front-matter-guide/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 18, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-front-matter-guide.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Deploy a Jekyll Site to Firebase Hosting (2026 Guide)\&quot;,\n          excerpt: \&quot;Firebase Hosting is Google’s static hosting platform β€” part of the Firebase suite alongside Firestore, Auth, and Cloud Functions. For a Jekyll site, it offer...\&quot;,\n          url: \&quot;/tutorial/2026/06/17/deploy-jekyll-firebase/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 17, 2026\&quot;,\n          image: \&quot;/assets/images/blog/deploy-jekyll-firebase.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Deploy a Jekyll Site to AWS (S3 + CloudFront Guide)\&quot;,\n          excerpt: \&quot;Deploying a Jekyll site to AWS gives you enterprise-grade infrastructure with granular control over every aspect of your hosting. The standard setup combines...\&quot;,\n          url: \&quot;/tutorial/2026/06/16/deploy-jekyll-aws/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 16, 2026\&quot;,\n          image: \&quot;/assets/images/blog/deploy-jekyll-aws.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Pick the Perfect Jekyll Theme for Your Website\&quot;,\n          excerpt: \&quot;Picking a Jekyll theme feels simple until you are staring at hundreds of options and realise they all look good in the screenshots. The wrong choice means ho...\&quot;,\n          url: \&quot;/themes/2026/06/15/how-to-pick-jekyll-theme/\&quot;,\n          tags: [\&quot;jekyll themes\&quot;,\&quot;choose jekyll theme\&quot;,\&quot;jekyll theme guide\&quot;,\&quot;jekyll for beginners\&quot;],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;June 15, 2026\&quot;,\n          image: \&quot;/assets/images/blog/how-to-pick-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Deploy a Jekyll Site to Vercel (2026 Guide)\&quot;,\n          excerpt: \&quot;Vercel is best known as the home of Next.js, but it works equally well for Jekyll sites. Its build infrastructure is fast, the developer experience is polish...\&quot;,\n          url: \&quot;/tutorial/2026/06/14/deploy-jekyll-vercel/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 14, 2026\&quot;,\n          image: \&quot;/assets/images/blog/deploy-jekyll-vercel.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Deploy a Jekyll Site to Netlify (Complete 2026 Guide)\&quot;,\n          excerpt: \&quot;Netlify was the platform that made deploying static sites simple and it remains one of the best choices for Jekyll in 2026. Automatic deploys from Git, previ...\&quot;,\n          url: \&quot;/tutorial/2026/06/13/deploy-jekyll-netlify/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 13, 2026\&quot;,\n          image: \&quot;/assets/images/blog/deploy-jekyll-netlify.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Deploy a Jekyll Site to Cloudflare Pages (Step-by-Step Guide)\&quot;,\n          excerpt: \&quot;Cloudflare Pages is one of the best places to host a Jekyll site in 2026. It is free for unlimited sites, has 300+ CDN locations worldwide, deploys automatic...\&quot;,\n          url: \&quot;/tutorial/2026/06/12/deploy-jekyll-cloudflare-pages/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 12, 2026\&quot;,\n          image: \&quot;/assets/images/blog/deploy-jekyll-cloudflare-pages.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Grow Traffic to Your Jekyll Blog (A Practical Guide for 2026)\&quot;,\n          excerpt: \&quot;A Jekyll blog with zero visitors is just a collection of Markdown files. Getting consistent organic traffic requires deliberate effort β€” but it is not myster...\&quot;,\n          url: \&quot;/tutorial/2026/06/11/grow-jekyll-blog-traffic/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 11, 2026\&quot;,\n          image: \&quot;/assets/images/blog/grow-jekyll-blog-traffic.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Monetize a Jekyll Blog in 2026 (7 Strategies That Actually Work)\&quot;,\n          excerpt: \&quot;Jekyll is a static site β€” it has no built-in monetization features. But that does not mean you cannot make money from it. The absence of a CMS or plugin mark...\&quot;,\n          url: \&quot;/tutorial/2026/06/10/jekyll-blog-monetization/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 10, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-blog-monetization.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add a Custom 404 Page to Your Jekyll Site\&quot;,\n          excerpt: \&quot;A default 404 page is a dead end. A custom 404 page turns a broken link into an opportunity β€” pointing visitors to your most popular content, your search pag...\&quot;,\n          url: \&quot;/tutorial/2026/06/09/jekyll-custom-404-page/\&quot;,\n          tags: [\&quot;jekyll 404 page\&quot;,\&quot;custom 404 jekyll\&quot;,\&quot;jekyll error page\&quot;,\&quot;jekyll not found page\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 9, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-custom-404.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Using Jekyll for Open Source Project Documentation\&quot;,\n          excerpt: \&quot;Jekyll powers documentation for thousands of open source projects β€” Bootstrap, Jekyll itself, GitHub’s own docs, and hundreds of others. It is the natural ch...\&quot;,\n          url: \&quot;/tutorial/2026/06/08/jekyll-open-source-documentation/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 8, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-open-source-documentation.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Build a Resume or CV Website with Jekyll\&quot;,\n          excerpt: \&quot;An online resume or CV is one of the most valuable things a developer, designer, academic, or job seeker can have. A Jekyll-based CV gives you full control o...\&quot;,\n          url: \&quot;/tutorial/2026/06/07/jekyll-resume-cv-website/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 7, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-resume-cv-website.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Core Web Vitals for Jekyll Sites: A Practical Optimisation Guide (2026)\&quot;,\n          excerpt: \&quot;Jekyll sites start with an inherent performance advantage β€” no database, no server-side rendering, no PHP. But Core Web Vitals are not just about server spee...\&quot;,\n          url: \&quot;/tutorial/2026/06/06/jekyll-core-web-vitals/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 6, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-core-web-vitals.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll with a Headless CMS: Contentful, Sanity, and Decap Compared\&quot;,\n          excerpt: \&quot;Jekyll stores content as Markdown files β€” ideal for developers, frustrating for non-technical editors who want a visual dashboard. A headless CMS solves this...\&quot;,\n          url: \&quot;/tutorial/2026/06/05/jekyll-headless-cms/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 5, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-headless-cms.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add a CMS to Jekyll with Decap CMS (Formerly Netlify CMS)\&quot;,\n          excerpt: \&quot;Jekyll is code-first β€” posts are Markdown files, publishing means a Git commit. That’s great for developers but a barrier for non-technical collaborators. De...\&quot;,\n          url: \&quot;/tutorial/2026/06/04/jekyll-decap-cms/\&quot;,\n          tags: [\&quot;jekyll cms\&quot;,\&quot;decap cms jekyll\&quot;,\&quot;netlify cms jekyll\&quot;,\&quot;jekyll headless cms\&quot;,\&quot;jekyll admin panel\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 4, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-decap-cms.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Interactivity to Jekyll with Alpine.js\&quot;,\n          excerpt: \&quot;Jekyll produces static HTML β€” no JavaScript framework, no reactive state, just pages. That is a feature, not a bug. But sometimes you need a little interacti...\&quot;,\n          url: \&quot;/tutorial/2026/06/03/jekyll-alpine-js/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 3, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-alpine-js.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Use Tailwind CSS with Jekyll (2026 Guide)\&quot;,\n          excerpt: \&quot;Tailwind CSS and Jekyll are a natural combination β€” Tailwind’s utility-first approach works beautifully in Liquid templates, and the purging process eliminat...\&quot;,\n          url: \&quot;/tutorial/2026/06/02/jekyll-tailwind-css/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 2, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-tailwind-css.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs Webflow: Which Is Right for Your Website in 2026?\&quot;,\n          excerpt: \&quot;Jekyll and Webflow represent two very different approaches to building websites. Jekyll is a code-first static site generator. Webflow is a visual design too...\&quot;,\n          url: \&quot;/comparison/2026/06/01/jekyll-vs-webflow/\&quot;,\n          tags: [],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;June 1, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-webflow.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs Ghost: Which Platform Is Right for Your Blog in 2026?\&quot;,\n          excerpt: \&quot;Jekyll and Ghost are both popular choices for bloggers and writers, but they come from opposite ends of the web publishing spectrum. Jekyll is a static site ...\&quot;,\n          url: \&quot;/comparison/2026/05/31/jekyll-vs-ghost/\&quot;,\n          tags: [],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;May 31, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-ghost.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs Astro: Which Static Site Generator Should You Use in 2026?\&quot;,\n          excerpt: \&quot;Astro launched in 2021 and quickly became one of the most talked-about static site generators. Jekyll has been around since 2008 and remains one of the most ...\&quot;,\n          url: \&quot;/comparison/2026/05/30/jekyll-vs-astro/\&quot;,\n          tags: [],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;May 30, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-astro.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Accessibility Best Practices for Jekyll Themes (WCAG 2.2 Guide)\&quot;,\n          excerpt: \&quot;Accessibility is not a nice-to-have β€” it determines whether your content reaches everyone. An inaccessible Jekyll theme excludes users with visual, motor, an...\&quot;,\n          url: \&quot;/tutorial/2026/05/29/jekyll-accessibility-wcag/\&quot;,\n          tags: [\&quot;jekyll accessibility\&quot;,\&quot;wcag jekyll\&quot;,\&quot;accessible jekyll theme\&quot;,\&quot;jekyll aria\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 29, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-accessibility.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Sell a Jekyll Theme: A Complete Guide for Developers\&quot;,\n          excerpt: \&quot;Building a great Jekyll theme is one thing. Turning it into a product people will pay for is another. This guide covers everything β€” from what buyers expect ...\&quot;,\n          url: \&quot;/tutorial/2026/05/28/how-to-sell-jekyll-theme/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 28, 2026\&quot;,\n          image: \&quot;/assets/images/blog/how-to-sell-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Best Jekyll Themes for Writers and Bloggers in 2026\&quot;,\n          excerpt: \&quot;Writers have different needs from developers. You want beautiful typography, generous line spacing, a clean reading experience, and a design that makes your ...\&quot;,\n          url: \&quot;/themes/2026/05/27/jekyll-themes-for-writers/\&quot;,\n          tags: [],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;May 27, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-themes-for-writers.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Set Up a Multi-Author Jekyll Blog\&quot;,\n          excerpt: \&quot;Jekyll does not have user accounts or a login system, but it handles multiple authors elegantly using collections. You define each author as a data file or c...\&quot;,\n          url: \&quot;/tutorial/2026/05/26/jekyll-multi-author-blog/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 26, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-multi-author-blog.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Best Jekyll Themes for Small Business Websites in 2026\&quot;,\n          excerpt: \&quot;Jekyll is an excellent choice for small business websites. Pages load in milliseconds, hosting is free or nearly free, and there is no database to hack or Wo...\&quot;,\n          url: \&quot;/themes/2026/05/25/best-jekyll-themes-small-business/\&quot;,\n          tags: [],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;May 25, 2026\&quot;,\n          image: \&quot;/assets/images/blog/best-jekyll-themes-small-business.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add an Email Newsletter Signup to Your Jekyll Site\&quot;,\n          excerpt: \&quot;Building an email list is one of the highest-value things you can do for a content site β€” owned audience, no algorithm dependency. Jekyll doesn’t have a buil...\&quot;,\n          url: \&quot;/tutorial/2026/05/24/jekyll-newsletter-signup/\&quot;,\n          tags: [\&quot;jekyll newsletter\&quot;,\&quot;mailchimp jekyll\&quot;,\&quot;convertkit jekyll\&quot;,\&quot;jekyll email signup\&quot;,\&quot;static site newsletter\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 24, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-newsletter-signup.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll E-commerce with Snipcart: Add a Shopping Cart to Your Static Site\&quot;,\n          excerpt: \&quot;Jekyll is a static site generator β€” it does not have a database, a server, or a shopping cart. But that does not mean you cannot sell online. Snipcart is a J...\&quot;,\n          url: \&quot;/tutorial/2026/05/23/jekyll-ecommerce-snipcart/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 23, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-ecommerce-snipcart.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Environment Variables: The Complete Guide\&quot;,\n          excerpt: \&quot;Environment variables in Jekyll are simpler than you might expect β€” but also more limited than many developers assume coming from Node.js or Python. Here is ...\&quot;,\n          url: \&quot;/tutorial/2026/05/22/jekyll-environment-variables/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 22, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-environment-variables.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Liquid Filters: The Complete Cheatsheet (2026)\&quot;,\n          excerpt: \&quot;Liquid filters transform output in Jekyll templates. They are chained with the pipe character | and applied to variables, strings, numbers, arrays, and dates...\&quot;,\n          url: \&quot;/tutorial/2026/05/21/jekyll-liquid-filters-cheatsheet/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 21, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-liquid-filters-cheatsheet.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)\&quot;,\n          excerpt: \&quot;Minimal themes are the most popular category in the Jekyll ecosystem β€” and for good reason. A minimal design puts the focus on your content, loads in millise...\&quot;,\n          url: \&quot;/themes/2026/05/20/jekyll-minimal-themes/\&quot;,\n          tags: [],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;May 20, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-minimal-themes.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs Next.js: A Practical Comparison for 2026\&quot;,\n          excerpt: \&quot;Jekyll and Next.js are both capable of producing fast, statically-generated websites. But comparing them is a bit like comparing a bicycle to a car β€” they ar...\&quot;,\n          url: \&quot;/comparison/2026/05/19/jekyll-vs-nextjs/\&quot;,\n          tags: [],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;May 19, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-nextjs.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Set Up a Custom Domain for Your Jekyll Site\&quot;,\n          excerpt: \&quot;Getting your Jekyll site onto a custom domain takes about 10–30 minutes. The process is the same regardless of which registrar you use β€” you update DNS recor...\&quot;,\n          url: \&quot;/tutorial/2026/05/18/jekyll-custom-domain/\&quot;,\n          tags: [\&quot;jekyll custom domain\&quot;,\&quot;github pages custom domain\&quot;,\&quot;netlify custom domain\&quot;,\&quot;jekyll domain setup\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 18, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-custom-domain.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add a Table of Contents to Jekyll Posts\&quot;,\n          excerpt: \&quot;A table of contents helps readers navigate long posts and signals to Google that your content is structured and comprehensive. Jekyll has three ways to add o...\&quot;,\n          url: \&quot;/tutorial/2026/05/13/jekyll-table-of-contents/\&quot;,\n          tags: [\&quot;jekyll table of contents\&quot;,\&quot;jekyll toc\&quot;,\&quot;jekyll kramdown toc\&quot;,\&quot;jekyll post navigation\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 13, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-table-of-contents.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Data Files: The Complete Guide to _data\&quot;,\n          excerpt: \&quot;The _data folder is one of Jekyll’s most underused features. It lets you store structured content β€” navigation menus, team members, FAQs, pricing tables, soc...\&quot;,\n          url: \&quot;/tutorial/2026/05/07/jekyll-data-files/\&quot;,\n          tags: [\&quot;jekyll data files\&quot;,\&quot;jekyll _data\&quot;,\&quot;jekyll yaml\&quot;,\&quot;jekyll liquid data\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 7, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-data-files.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs WordPress: Should You Switch in 2026?\&quot;,\n          excerpt: \&quot;WordPress powers 43% of the web. Jekyll powers a fraction of that. So why would anyone switch? For the right kind of site, Jekyll is dramatically better β€” fa...\&quot;,\n          url: \&quot;/comparison/2026/05/02/jekyll-vs-wordpress/\&quot;,\n          tags: [\&quot;jekyll vs wordpress\&quot;,\&quot;switch wordpress to jekyll\&quot;,\&quot;wordpress alternative\&quot;,\&quot;static site vs wordpress\&quot;],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;May 2, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-wordpress.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add a Contact Form to Your Jekyll Site\&quot;,\n          excerpt: \&quot;Jekyll generates static HTML β€” there’s no server-side code to process form submissions. But you don’t need one. Three services handle form submissions for st...\&quot;,\n          url: \&quot;/tutorial/2026/04/26/jekyll-contact-form/\&quot;,\n          tags: [\&quot;jekyll contact form\&quot;,\&quot;formspree jekyll\&quot;,\&quot;netlify forms jekyll\&quot;,\&quot;static site contact form\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;April 26, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-contact-form.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Google Analytics to Your Jekyll Site\&quot;,\n          excerpt: \&quot;Adding Google Analytics to Jekyll takes about 5 minutes. This guide covers Google Analytics 4 (GA4), the only version Google currently supports, plus tips fo...\&quot;,\n          url: \&quot;/tutorial/2026/04/21/add-google-analytics-jekyll/\&quot;,\n          tags: [\&quot;jekyll google analytics\&quot;,\&quot;google analytics 4 jekyll\&quot;,\&quot;jekyll analytics\&quot;,\&quot;jekyll tracking\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;April 21, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-google-analytics.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Hosting Comparison: GitHub Pages vs Netlify vs Cloudflare Pages vs Vercel\&quot;,\n          excerpt: \&quot;Choosing where to host your Jekyll site is one of the first decisions you’ll make β€” and all four major platforms are free for personal projects. The differen...\&quot;,\n          url: \&quot;/tutorial/2026/04/15/jekyll-hosting-comparison/\&quot;,\n          tags: [\&quot;jekyll hosting\&quot;,\&quot;github pages vs netlify\&quot;,\&quot;cloudflare pages jekyll\&quot;,\&quot;vercel jekyll\&quot;,\&quot;static site hosting\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;April 15, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-hosting-comparison.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Migrate from WordPress to Jekyll Without Losing SEO\&quot;,\n          excerpt: \&quot;Migrating from WordPress to Jekyll can destroy your search rankings if done carelessly β€” or preserve them completely if done right. The difference is almost ...\&quot;,\n          url: \&quot;/tutorial/2026/04/10/migrate-wordpress-to-jekyll-seo/\&quot;,\n          tags: [\&quot;wordpress to jekyll\&quot;,\&quot;migrate without losing seo\&quot;,\&quot;jekyll seo migration\&quot;,\&quot;301 redirects jekyll\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;April 10, 2026\&quot;,\n          image: \&quot;/assets/images/blog/migrate-wordpress-jekyll-seo.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Create Dynamic Navigation and Smart Sidebars in Jekyll\&quot;,\n          excerpt: \&quot;Hard-coded navigation and static sidebars are the first thing that makes a Jekyll theme feel unpolished. This guide covers building dynamic navigation driven...\&quot;,\n          url: \&quot;/tutorial/2026/04/05/jekyll-navigation-sidebars/\&quot;,\n          tags: [\&quot;jekyll navigation\&quot;,\&quot;jekyll sidebar\&quot;,\&quot;jekyll menu\&quot;,\&quot;jekyll liquid\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;April 5, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-navigation-sidebars.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Theme Architecture: Best Practices for Clean &amp; Scalable Code\&quot;,\n          excerpt: \&quot;Most Jekyll sites start as a quick setup and slowly become hard to maintain β€” styles scattered across files, layouts duplicating logic, includes tangled with...\&quot;,\n          url: \&quot;/tutorial/2026/03/30/jekyll-theme-architecture/\&quot;,\n          tags: [\&quot;jekyll theme development\&quot;,\&quot;jekyll architecture\&quot;,\&quot;jekyll best practices\&quot;,\&quot;jekyll sass structure\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;March 30, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-theme-architecture.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Build a Jekyll Theme from Scratch\&quot;,\n          excerpt: \&quot;Building a Jekyll theme from scratch is the fastest way to deeply understand Jekyll β€” and it’s more achievable than it sounds. This guide walks through build...\&quot;,\n          url: \&quot;/tutorial/2026/03/25/build-jekyll-theme-from-scratch/\&quot;,\n          tags: [\&quot;jekyll theme development\&quot;,\&quot;create jekyll theme\&quot;,\&quot;jekyll gem theme\&quot;,\&quot;build jekyll theme\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;March 25, 2026\&quot;,\n          image: \&quot;/assets/images/blog/build-jekyll-theme-scratch.webp\&quot;\n        },\n        \n        {\n          title: \&quot;25 Best Jekyll Themes for Blogs and Portfolios in 2026\&quot;,\n          excerpt: \&quot;Looking for a Jekyll theme in 2026? There are thousands on GitHub, but most are outdated, poorly maintained, or just not that good. This list covers the 25 b...\&quot;,\n          url: \&quot;/themes/2026/03/19/best-jekyll-themes-blogs-portfolios/\&quot;,\n          tags: [\&quot;best jekyll themes\&quot;,\&quot;jekyll blog themes\&quot;,\&quot;jekyll portfolio themes\&quot;,\&quot;jekyll themes 2026\&quot;],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;March 19, 2026\&quot;,\n          image: \&quot;/assets/images/blog/best-jekyll-themes-2026.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs Hugo vs Eleventy: Which Static Site Generator in 2026?\&quot;,\n          excerpt: \&quot;Jekyll, Hugo, and Eleventy are the three most popular static site generators in 2026. They all produce fast, secure static sites β€” but they make very differe...\&quot;,\n          url: \&quot;/comparison/2026/03/14/jekyll-vs-hugo-eleventy/\&quot;,\n          tags: [\&quot;jekyll vs hugo\&quot;,\&quot;jekyll vs eleventy\&quot;,\&quot;static site generators 2026\&quot;,\&quot;best static site generator\&quot;],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;March 14, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-hugo-vs-eleventy.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Build a Portfolio Website with Jekyll\&quot;,\n          excerpt: \&quot;A Jekyll portfolio site is fast, free to host, and lives in a GitHub repository β€” which itself signals professionalism to employers and clients. This guide c...\&quot;,\n          url: \&quot;/tutorial/2026/03/08/jekyll-portfolio-website/\&quot;,\n          tags: [\&quot;jekyll portfolio\&quot;,\&quot;portfolio website jekyll\&quot;,\&quot;jekyll developer portfolio\&quot;,\&quot;github pages portfolio\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;March 8, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-portfolio.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Convert an HTML Template to a Jekyll Theme\&quot;,\n          excerpt: \&quot;You have an HTML template you like β€” clean design, good structure β€” but you want to run it as a Jekyll site so you can write in Markdown and deploy to GitHub...\&quot;,\n          url: \&quot;/tutorial/2026/03/03/convert-html-to-jekyll-theme/\&quot;,\n          tags: [\&quot;jekyll theme development\&quot;,\&quot;html to jekyll\&quot;,\&quot;create jekyll theme\&quot;,\&quot;jekyll tutorial\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;March 3, 2026\&quot;,\n          image: \&quot;/assets/images/blog/convert-html-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Auto-Generate Tag and Category Pages in Jekyll\&quot;,\n          excerpt: \&quot;If you click a tag on most Jekyll blogs, you get a 404. That’s because Jekyll doesn’t generate tag or category pages by default. The jekyll-archives plugin f...\&quot;,\n          url: \&quot;/tutorial/2026/02/25/jekyll-tag-category-pages/\&quot;,\n          tags: [\&quot;jekyll tags\&quot;,\&quot;jekyll categories\&quot;,\&quot;jekyll archives\&quot;,\&quot;jekyll tag pages\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;February 25, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-tag-category-pages.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Schema Markup to Your Jekyll Site\&quot;,\n          excerpt: \&quot;Schema markup tells search engines what your content is about β€” not just the words, but the type of content. It can earn your site rich snippets in Google’s ...\&quot;,\n          url: \&quot;/seo/2026/02/20/jekyll-schema-markup/\&quot;,\n          tags: [\&quot;jekyll schema markup\&quot;,\&quot;json-ld jekyll\&quot;,\&quot;structured data jekyll\&quot;,\&quot;jekyll rich snippets\&quot;],\n          category: \&quot;SEO\&quot;,\n          date: \&quot;February 20, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-schema-markup.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Make Your Jekyll Site Load Under 1 Second\&quot;,\n          excerpt: \&quot;Jekyll sites are inherently fast β€” there’s no PHP, no database, no server-side rendering. But β€œfast” isn’t automatic. Poor image handling, unminified CSS, an...\&quot;,\n          url: \&quot;/tutorial/2026/02/14/jekyll-performance/\&quot;,\n          tags: [\&quot;jekyll performance\&quot;,\&quot;jekyll speed\&quot;,\&quot;static site performance\&quot;,\&quot;core web vitals jekyll\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;February 14, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-performance.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Pagination to Your Jekyll Blog\&quot;,\n          excerpt: \&quot;By default, Jekyll lists all your posts on a single page. Once you have 20+ posts, that page becomes slow and hard to navigate. Pagination splits posts acros...\&quot;,\n          url: \&quot;/tutorial/2026/02/09/jekyll-pagination/\&quot;,\n          tags: [\&quot;jekyll pagination\&quot;,\&quot;jekyll paginate\&quot;,\&quot;jekyll blog pagination\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;February 9, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-pagination.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Collections: The Complete Guide\&quot;,\n          excerpt: \&quot;Collections are one of Jekyll’s most powerful features β€” and one of the most underused. They let you create custom content types beyond posts and pages: prod...\&quot;,\n          url: \&quot;/tutorial/2026/02/04/jekyll-collections-guide/\&quot;,\n          tags: [\&quot;jekyll collections\&quot;,\&quot;jekyll custom content types\&quot;,\&quot;jekyll _config.yml\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;February 4, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-collections.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Search to a Jekyll Site (Lunr.js vs Algolia)\&quot;,\n          excerpt: \&quot;Jekyll doesn’t include search out of the box β€” but adding it is simpler than you might think. This guide covers the two best options: Lunr.js for a free, no-...\&quot;,\n          url: \&quot;/tutorial/2026/01/29/add-search-jekyll/\&quot;,\n          tags: [\&quot;jekyll search\&quot;,\&quot;lunr.js jekyll\&quot;,\&quot;algolia jekyll\&quot;,\&quot;static site search\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;January 29, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-search.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Automate Jekyll Builds with GitHub Actions\&quot;,\n          excerpt: \&quot;GitHub Actions can build, test, and deploy your Jekyll site automatically on every push. This guide covers everything from the basic setup to advanced workfl...\&quot;,\n          url: \&quot;/tutorial/2026/01/24/jekyll-github-actions/\&quot;,\n          tags: [\&quot;jekyll github actions\&quot;,\&quot;jekyll ci cd\&quot;,\&quot;github actions jekyll\&quot;,\&quot;jekyll deployment\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;January 24, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-github-actions.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Build a Documentation Site with Jekyll\&quot;,\n          excerpt: \&quot;Jekyll is one of the best tools for documentation sites. The result is fast, searchable, version-controllable, and free to host. This guide walks through bui...\&quot;,\n          url: \&quot;/tutorial/2026/01/18/jekyll-documentation-site/\&quot;,\n          tags: [\&quot;jekyll documentation\&quot;,\&quot;jekyll docs site\&quot;,\&quot;just the docs\&quot;,\&quot;static documentation\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;January 18, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-documentation-site.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Comments to Jekyll: Disqus vs Giscus vs Utterances\&quot;,\n          excerpt: \&quot;Jekyll doesn’t have a built-in comment system β€” it’s a static site generator. But you have three solid options that work well with static sites. Here’s how e...\&quot;,\n          url: \&quot;/tutorial/2026/01/13/add-comments-jekyll/\&quot;,\n          tags: [\&quot;jekyll comments\&quot;,\&quot;giscus jekyll\&quot;,\&quot;disqus jekyll\&quot;,\&quot;utterances jekyll\&quot;,\&quot;static site comments\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;January 13, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-comments.webp\&quot;\n        },\n        \n        {\n          title: \&quot;15 Must-Have Jekyll Plugins for 2026\&quot;,\n          excerpt: \&quot;Jekyll’s plugin ecosystem is smaller than WordPress’s, but it has everything you need. These 15 plugins cover SEO, performance, content management, and quali...\&quot;,\n          url: \&quot;/tutorial/2026/01/07/must-have-jekyll-plugins/\&quot;,\n          tags: [\&quot;jekyll plugins\&quot;,\&quot;best jekyll plugins\&quot;,\&quot;jekyll seo tag\&quot;,\&quot;jekyll sitemap\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;January 7, 2026\&quot;,\n          image: \&quot;/assets/images/blog/must-have-jekyll-plugins.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Dark Mode to Your Jekyll Site\&quot;,\n          excerpt: \&quot;Dark mode is no longer optional β€” it’s expected. This guide shows you how to add a proper dark mode toggle to any Jekyll site, with the user’s preference sav...\&quot;,\n          url: \&quot;/tutorial/2026/01/02/add-dark-mode-jekyll/\&quot;,\n          tags: [\&quot;jekyll dark mode\&quot;,\&quot;dark mode toggle\&quot;,\&quot;css dark mode\&quot;,\&quot;jekyll tutorial\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;January 2, 2026\&quot;,\n          image: \&quot;/assets/images/blog/add-dark-mode-jekyll.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Deploy Jekyll to GitHub Pages in 10 Minutes\&quot;,\n          excerpt: \&quot;GitHub Pages is the fastest way to get a Jekyll site online β€” and it’s completely free. This guide gets you from zero to a live site in 10 minutes.\\n\\n\&quot;,\n          url: \&quot;/tutorial/2025/12/27/deploy-jekyll-github-pages/\&quot;,\n          tags: [\&quot;deploy jekyll github pages\&quot;,\&quot;jekyll github pages\&quot;,\&quot;github pages tutorial\&quot;,\&quot;jekyll hosting\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;December 27, 2025\&quot;,\n          image: \&quot;/assets/images/blog/deploy-jekyll-github-pages.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Free vs Premium Jekyll Themes: What&apos;s Actually Worth Paying For?\&quot;,\n          excerpt: \&quot;There are thousands of free Jekyll themes on GitHub. So why would anyone pay for one? The honest answer: it depends on what you need. This post breaks down w...\&quot;,\n          url: \&quot;/themes/2025/12/22/free-vs-premium-jekyll-themes/\&quot;,\n          tags: [\&quot;free jekyll themes\&quot;,\&quot;premium jekyll themes\&quot;,\&quot;jekyll theme comparison\&quot;,\&quot;buy jekyll theme\&quot;],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;December 22, 2025\&quot;,\n          image: \&quot;/assets/images/blog/free-vs-premium-jekyll-themes.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll SEO Guide: How to Rank Higher on Google\&quot;,\n          excerpt: \&quot;Jekyll gives you a significant SEO head start over WordPress β€” no bloated plugins, no slow database queries, and near-perfect Core Web Vitals out of the box....\&quot;,\n          url: \&quot;/seo/2025/12/16/jekyll-seo-guide/\&quot;,\n          tags: [\&quot;jekyll seo\&quot;,\&quot;seo for jekyll\&quot;,\&quot;jekyll meta tags\&quot;,\&quot;jekyll sitemap\&quot;,\&quot;static site seo\&quot;],\n          category: \&quot;SEO\&quot;,\n          date: \&quot;December 16, 2025\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-seo-guide.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Migrate from WordPress to Jekyll (Complete Guide)\&quot;,\n          excerpt: \&quot;Moving from WordPress to Jekyll is one of the most common migrations in the static site world β€” and for good reason. Jekyll sites are faster, cheaper to host...\&quot;,\n          url: \&quot;/tutorial/2025/12/11/migrate-wordpress-to-jekyll/\&quot;,\n          tags: [\&quot;wordpress to jekyll\&quot;,\&quot;migrate wordpress jekyll\&quot;,\&quot;jekyll migration\&quot;,\&quot;static site migration\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;December 11, 2025\&quot;,\n          image: \&quot;/assets/images/blog/migrate-wordpress-to-jekyll.webp\&quot;\n        },\n        \n        {\n          title: \&quot;25 Common Jekyll Errors and How to Fix Them Fast\&quot;,\n          excerpt: \&quot;Jekyll errors can stop your build dead in its tracks. Whether you are setting up for the first time or have been running Jekyll for years, these errors show ...\&quot;,\n          url: \&quot;/tutorial/2025/12/05/common-jekyll-errors/\&quot;,\n          tags: [\&quot;jekyll errors\&quot;,\&quot;jekyll troubleshooting\&quot;,\&quot;jekyll build errors\&quot;,\&quot;jekyll fix\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;December 5, 2025\&quot;,\n          image: \&quot;/assets/images/blog/common-jekyll-errors.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Theme Setup Tutorial: Complete Walkthrough (2026)\&quot;,\n          excerpt: \&quot;This tutorial walks you through the complete process of setting up a Jekyll theme β€” from a blank machine to a fully configured, live website. No prior Jekyll...\&quot;,\n          url: \&quot;/tutorial/2025/11/30/jekyll-theme-setup-tutorial/\&quot;,\n          tags: [\&quot;jekyll theme setup\&quot;,\&quot;jekyll tutorial\&quot;,\&quot;jekyll configuration\&quot;,\&quot;github pages\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;November 30, 2025\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-theme-setup-tutorial.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Blog Setup Guide: From Zero to Live in 30 Minutes (2026)\&quot;,\n          excerpt: \&quot;Jekyll is the most popular static site generator for personal blogs β€” and for good reason. It’s free to host on GitHub Pages, blazing fast, and once set up, ...\&quot;,\n          url: \&quot;/tutorial/2025/11/25/jekyll-blog-setup-guide/\&quot;,\n          tags: [\&quot;jekyll blog\&quot;,\&quot;jekyll setup\&quot;,\&quot;github pages\&quot;,\&quot;beginner guide\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;November 25, 2025\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-blog-setup-guide.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Best Jekyll Themes for a Portfolio Website (2026)\&quot;,\n          excerpt: \&quot;A portfolio is one of the best use cases for Jekyll. Static files load instantly, hosting is free on GitHub Pages, and the result looks as good as any dynami...\&quot;,\n          url: \&quot;/roundup/2025/11/19/jekyll-theme-portfolio-website/\&quot;,\n          tags: [\&quot;jekyll portfolio theme\&quot;,\&quot;portfolio website\&quot;,\&quot;jekyll themes\&quot;,\&quot;developer portfolio\&quot;],\n          category: \&quot;Roundup\&quot;,\n          date: \&quot;November 19, 2025\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-portfolio-themes.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs Hugo: Full Comparison for 2026 (Themes, Speed, Hosting)\&quot;,\n          excerpt: \&quot;Jekyll and Hugo are the two most popular static site generators. Both produce fast, secure static websites β€” but they approach it differently. This compariso...\&quot;,\n          url: \&quot;/comparison/2025/11/14/jekyll-vs-hugo-themes/\&quot;,\n          tags: [\&quot;jekyll vs hugo\&quot;,\&quot;static site generators\&quot;,\&quot;jekyll themes\&quot;,\&quot;hugo themes\&quot;,\&quot;github pages\&quot;],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;November 14, 2025\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-hugo-themes.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Best Static Site Themes in 2026 (Jekyll, Hugo &amp; Eleventy)\&quot;,\n          excerpt: \&quot;Static site generators have matured into a serious alternative to WordPress and other CMS platforms. Jekyll, Hugo, and Eleventy each have strong theme ecosys...\&quot;,\n          url: \&quot;/roundup/2025/11/08/best-static-site-themes/\&quot;,\n          tags: [\&quot;static site themes\&quot;,\&quot;best jekyll themes\&quot;,\&quot;hugo themes\&quot;,\&quot;eleventy themes\&quot;],\n          category: \&quot;Roundup\&quot;,\n          date: \&quot;November 8, 2025\&quot;,\n          image: \&quot;/assets/images/blog/best-static-site-themes.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Theme vs WordPress Theme: Which Should You Choose in 2026?\&quot;,\n          excerpt: \&quot;Choosing between Jekyll and WordPress is one of the most common decisions developers and bloggers face. Both power millions of websites β€” but they are fundam...\&quot;,\n          url: \&quot;/comparison/2025/11/03/jekyll-theme-vs-wordpress-theme/\&quot;,\n          tags: [\&quot;jekyll vs wordpress\&quot;,\&quot;static site vs cms\&quot;,\&quot;jekyll theme\&quot;,\&quot;wordpress theme\&quot;],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;November 3, 2025\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-wordpress.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Change Your Jekyll Theme (Without Losing Content)\&quot;,\n          excerpt: \&quot;Changing a Jekyll theme is straightforward if you follow the right steps. The key is understanding what belongs to the theme and what belongs to your content...\&quot;,\n          url: \&quot;/tutorial/2025/10/28/how-to-change-jekyll-theme/\&quot;,\n          tags: [\&quot;change jekyll theme\&quot;,\&quot;switch jekyll theme\&quot;,\&quot;jekyll migration\&quot;,\&quot;tutorial\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;October 28, 2025\&quot;,\n          image: \&quot;/assets/images/blog/how-to-change-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;GitHub Pages Jekyll Theme: Complete Setup Guide (2026)\&quot;,\n          excerpt: \&quot;GitHub Pages is the most popular way to host a Jekyll site β€” it’s free, integrates directly with your repository, and rebuilds automatically on every push. T...\&quot;,\n          url: \&quot;/tutorial/2025/10/23/github-pages-jekyll-theme/\&quot;,\n          tags: [\&quot;github pages\&quot;,\&quot;jekyll theme\&quot;,\&quot;github pages jekyll\&quot;,\&quot;tutorial\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;October 23, 2025\&quot;,\n          image: \&quot;/assets/images/blog/github-pages-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Customize a Jekyll Theme (Complete Guide 2026)\&quot;,\n          excerpt: \&quot;Customizing a Jekyll theme doesn’t mean editing the theme files directly β€” that approach breaks every time you update the theme. The right way is to use Jeky...\&quot;,\n          url: \&quot;/tutorial/2025/10/17/how-to-customize-jekyll-theme/\&quot;,\n          tags: [\&quot;customize jekyll theme\&quot;,\&quot;jekyll scss\&quot;,\&quot;jekyll layouts\&quot;,\&quot;tutorial\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;October 17, 2025\&quot;,\n          image: \&quot;/assets/images/blog/how-to-customize-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Install a Jekyll Theme (Step-by-Step Guide for 2026)\&quot;,\n          excerpt: \&quot;Installing a Jekyll theme is one of the first things you will do when building a static site. Whether you are using GitHub Pages, a local Jekyll setup, or de...\&quot;,\n          url: \&quot;/tutorial/2025/10/12/how-to-install-jekyll-theme/\&quot;,\n          tags: [\&quot;install jekyll theme\&quot;,\&quot;jekyll setup\&quot;,\&quot;github pages\&quot;,\&quot;tutorial\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;October 12, 2025\&quot;,\n          image: \&quot;/assets/images/blog/how-to-install-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Best Free Jekyll Themes for GitHub Pages (2026)\&quot;,\n          excerpt: \&quot;GitHub Pages is the easiest way to host a Jekyll site β€” free, reliable, and zero configuration. The catch is that it only supports a whitelist of plugins and...\&quot;,\n          url: \&quot;/blog/2025/10/06/free-jekyll-themes-github-pages/\&quot;,\n          tags: [\&quot;free jekyll themes\&quot;,\&quot;github pages\&quot;,\&quot;open source\&quot;],\n          category: \&quot;Blog\&quot;,\n          date: \&quot;October 6, 2025\&quot;,\n          image: \&quot;/assets/images/blog/free-jekyll-themes-github-pages.webp\&quot;\n        },\n        \n        {\n          title: \&quot;35 Best Jekyll Themes for 2026 (Free + Premium)\&quot;,\n          excerpt: \&quot;Jekyll remains one of the most reliable static site generators in 2026 β€” fast, GitHub Pages native, and backed by a thriving theme ecosystem. Whether you are...\&quot;,\n          url: \&quot;/blog/2025/10/01/best-jekyll-themes-2026/\&quot;,\n          tags: [\&quot;jekyll themes\&quot;,\&quot;best themes\&quot;,\&quot;free themes\&quot;,\&quot;premium themes\&quot;],\n          category: \&quot;Blog\&quot;,\n          date: \&quot;October 1, 2025\&quot;,\n          image: \&quot;/assets/images/blog/best-jekyll-themes-2026.webp\&quot;\n        }\n        \n      ],\n      testimonials: [\n        \n        {\n          name:   \&quot;Sarah Reynolds\&quot;,\n          role:   \&quot;Freelance Developer\&quot;,\n          rating: 5,\n          quote:  \&quot;Found the perfect portfolio theme in minutes. Clean code, well documented, and looks stunning out of the box. Saved me days of work.\&quot;\n        },\n        \n        {\n          name:   \&quot;Marcus Thornton\&quot;,\n          role:   \&quot;Full-Stack Engineer\&quot;,\n          rating: 5,\n          quote:  \&quot;Switched from WordPress and couldn&apos;t be happier. The themes here are modern, fast, and actually work with Jekyll without hacks.\&quot;\n        },\n        \n        {\n          name:   \&quot;James Kowalski\&quot;,\n          role:   \&quot;Open Source Maintainer\&quot;,\n          rating: 5,\n          quote:  \&quot;The documentation theme I picked made my open source project look incredibly professional. My users noticed the difference immediately.\&quot;\n        },\n        \n        {\n          name:   \&quot;Aisha Langford\&quot;,\n          role:   \&quot;Technical Writer\&quot;,\n          rating: 4.5,\n          quote:  \&quot;Great selection of blog themes. I launched my personal blog in an afternoon β€” setup was painless and the design is exactly what I wanted.\&quot;\n        },\n        \n        {\n          name:   \&quot;David Carver\&quot;,\n          role:   \&quot;Product Designer\&quot;,\n          rating: 4,\n          quote:  \&quot;Really impressed by the quality. The premium theme I bought had more features than themes costing 3Γ— the price on other marketplaces.\&quot;\n        },\n        \n        {\n          name:   \&quot;Nina Patel\&quot;,\n          role:   \&quot;UX Designer\&quot;,\n          rating: 5,\n          quote:  \&quot;Finally a Jekyll marketplace that takes design seriously. Every theme looks hand-crafted, not like a generic template with the colours swapped.\&quot;\n        },\n        \n        {\n          name:   \&quot;Tom Whitfield\&quot;,\n          role:   \&quot;Indie Hacker\&quot;,\n          rating: 5,\n          quote:  \&quot;Launched my SaaS landing page using a JekyllHub theme. Got compliments on the design before I even launched the product.\&quot;\n        },\n        \n        {\n          name:   \&quot;Elena Marchetti\&quot;,\n          role:   \&quot;Academic Researcher\&quot;,\n          rating: 4.5,\n          quote:  \&quot;The academic theme I found here is exactly what my lab website needed β€” clean, fast, and easy for non-technical colleagues to update.\&quot;\n        },\n        \n        {\n          name:   \&quot;Ryan Summers\&quot;,\n          role:   \&quot;Backend Developer\&quot;,\n          rating: 4.5,\n          quote:  \&quot;I&apos;m not a designer but my site looks like I am. The theme was drop-in ready and the customisation was straightforward.\&quot;\n        }\n        \n      ]\n    };\n  &lt;/script&gt;\n\n    &lt;main id=\&quot;main-content\&quot;&gt;\n    &lt;div class=\&quot;read-progress\&quot; id=\&quot;read-progress\&quot;&gt;&lt;/div&gt;\n\n&lt;article class=\&quot;post\&quot; itemscope itemtype=\&quot;https://schema.org/BlogPosting\&quot;&gt;\n\n  &lt;header class=\&quot;post-hero\&quot;&gt;\n    &lt;div class=\&quot;container\&quot;&gt;\n      &lt;div class=\&quot;post-hero__breadcrumb\&quot;&gt;\n        &lt;a href=\&quot;/\&quot;&gt;Home&lt;/a&gt;\n        &lt;span class=\&quot;breadcrumb-sep\&quot;&gt;β€Ί&lt;/span&gt;\n        &lt;a href=\&quot;/blog/\&quot;&gt;Blog&lt;/a&gt;\n        &lt;span class=\&quot;breadcrumb-sep\&quot;&gt;β€Ί&lt;/span&gt;\n        &lt;span&gt;Jekyll vs Next.js: A Practical Comparison for 2026&lt;/span&gt;\n      &lt;/div&gt;\n\n      &lt;div class=\&quot;post-hero__inner\&quot;&gt;\n        \n        &lt;span class=\&quot;post-hero__cat\&quot;&gt;Comparison&lt;/span&gt;\n        \n\n        &lt;h1 class=\&quot;post-hero__title\&quot; itemprop=\&quot;name\&quot;&gt;Jekyll vs Next.js: A Practical Comparison for 2026&lt;/h1&gt;\n\n        \n        &lt;p class=\&quot;post-hero__desc\&quot; itemprop=\&quot;description\&quot;&gt;Jekyll and Next.js both produce fast websites β€” but they are built for very different situations. Here is how to choose between them for your next project.&lt;/p&gt;\n        \n\n        &lt;div class=\&quot;post-hero__meta\&quot;&gt;\n          &lt;span class=\&quot;post-meta-item\&quot;&gt;\n            &lt;svg width=\&quot;15\&quot; height=\&quot;15\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z\&quot;/&gt;&lt;/svg&gt;\n            Updated &lt;time itemprop=\&quot;dateModified\&quot; datetime=\&quot;2026-07-04T00:00:00+00:00\&quot;&gt;July 4, 2026&lt;/time&gt;\n          &lt;/span&gt;\n\n          &lt;span class=\&quot;post-meta-item\&quot;&gt;\n            &lt;svg width=\&quot;15\&quot; height=\&quot;15\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z\&quot;/&gt;&lt;/svg&gt;\n            4 min read\n          &lt;/span&gt;\n        &lt;/div&gt;\n      &lt;/div&gt;\n    &lt;/div&gt;\n  &lt;/header&gt;\n\n  \n  &lt;div class=\&quot;post-cover\&quot;&gt;\n    &lt;div class=\&quot;container\&quot;&gt;\n      &lt;img src=\&quot;/assets/images/blog/jekyll-vs-nextjs.webp\&quot; alt=\&quot;Jekyll vs Next.js: A Practical Comparison for 2026\&quot; class=\&quot;post-cover__img\&quot; itemprop=\&quot;image\&quot;&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n  \n\n  &lt;div class=\&quot;container\&quot;&gt;\n    &lt;div class=\&quot;post-body\&quot;&gt;\n      &lt;div class=\&quot;post-body__main\&quot;&gt;\n        \n        &lt;div class=\&quot;post-toc\&quot; id=\&quot;post-toc\&quot; data-collapsed=\&quot;false\&quot; style=\&quot;display:none\&quot;&gt;\n          &lt;button class=\&quot;post-toc__label\&quot; id=\&quot;toc-toggle\&quot; aria-expanded=\&quot;false\&quot; aria-controls=\&quot;toc-body\&quot;&gt;\n            &lt;span class=\&quot;post-toc__label-left\&quot;&gt;\n              &lt;svg width=\&quot;14\&quot; height=\&quot;14\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M4 6h16M4 10h16M4 14h10\&quot;/&gt;&lt;/svg&gt;\n              Table of Contents\n            &lt;/span&gt;\n            &lt;svg class=\&quot;post-toc__chevron\&quot; width=\&quot;14\&quot; height=\&quot;14\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M19 9l-7 7-7-7\&quot;/&gt;&lt;/svg&gt;\n          &lt;/button&gt;\n          &lt;nav id=\&quot;toc-body\&quot; class=\&quot;toc\&quot;&gt;&lt;/nav&gt;\n        &lt;/div&gt;\n        \n\n        &lt;div class=\&quot;prose\&quot; itemprop=\&quot;articleBody\&quot;&gt;\n          &lt;p&gt;Jekyll and Next.js are both capable of producing fast, statically-generated websites. But comparing them is a bit like comparing a bicycle to a car β€” they are built for different journeys. This guide cuts through the noise and tells you which one fits your project.&lt;/p&gt;\n\n&lt;h2 id=\&quot;the-fundamental-difference\&quot;&gt;The fundamental difference&lt;/h2&gt;\n\n&lt;p&gt;Jekyll is a static site generator. It takes your Markdown files and Liquid templates and produces plain HTML. That is all it does, and it does it extremely well.&lt;/p&gt;\n\n&lt;p&gt;Next.js is a full-stack React framework that happens to support static export. Its primary purpose is server-rendered and hybrid web applications. Static generation is one mode among many β€” not its identity.&lt;/p&gt;\n\n&lt;h2 id=\&quot;learning-curve\&quot;&gt;Learning curve&lt;/h2&gt;\n\n&lt;p&gt;Jekyll requires Markdown, YAML, and Liquid templating β€” none of which are programming languages in the traditional sense. A non-developer can be productive in Jekyll within a day.&lt;/p&gt;\n\n&lt;p&gt;Next.js requires React, JavaScript (ideally TypeScript), an understanding of server-side rendering versus static generation, and the Next.js routing model. If you do not already know React, Next.js is a significant investment.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Bottom line:&lt;/strong&gt; Jekyll is accessible to anyone. Next.js requires a JavaScript developer.&lt;/p&gt;\n\n&lt;h2 id=\&quot;build-output-and-hosting\&quot;&gt;Build output and hosting&lt;/h2&gt;\n\n&lt;p&gt;Both can produce a folder of static HTML files ready to deploy anywhere. But the experience differs considerably.&lt;/p&gt;\n\n&lt;p&gt;Jekyll outputs clean HTML by default and hosts natively on GitHub Pages β€” push your repository and your site is live within minutes, for free.&lt;/p&gt;\n\n&lt;p&gt;Next.js static export (&lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;next export&lt;/code&gt;) works well but loses several Next.js features: API routes, middleware, image optimisation via &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;next/image&lt;/code&gt;, and incremental static regeneration. If you strip out those features, you are essentially using a React-based template engine.&lt;/p&gt;\n\n&lt;table&gt;\n  &lt;thead&gt;\n    &lt;tr&gt;\n      &lt;th&gt;Β &lt;/th&gt;\n      &lt;th&gt;Jekyll&lt;/th&gt;\n      &lt;th&gt;Next.js static&lt;/th&gt;\n    &lt;/tr&gt;\n  &lt;/thead&gt;\n  &lt;tbody&gt;\n    &lt;tr&gt;\n      &lt;td&gt;GitHub Pages (native)&lt;/td&gt;\n      &lt;td&gt;Yes&lt;/td&gt;\n      &lt;td&gt;No (requires Actions)&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n      &lt;td&gt;Netlify / Cloudflare&lt;/td&gt;\n      &lt;td&gt;Yes&lt;/td&gt;\n      &lt;td&gt;Yes&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n      &lt;td&gt;Vercel&lt;/td&gt;\n      &lt;td&gt;Yes&lt;/td&gt;\n      &lt;td&gt;Yes (first-class)&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n      &lt;td&gt;Output size&lt;/td&gt;\n      &lt;td&gt;Very small&lt;/td&gt;\n      &lt;td&gt;Larger (React bundle)&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n      &lt;td&gt;JS required for content&lt;/td&gt;\n      &lt;td&gt;No&lt;/td&gt;\n      &lt;td&gt;Yes (hydration)&lt;/td&gt;\n    &lt;/tr&gt;\n  &lt;/tbody&gt;\n&lt;/table&gt;\n\n&lt;h2 id=\&quot;performance\&quot;&gt;Performance&lt;/h2&gt;\n\n&lt;p&gt;A Jekyll site ships zero JavaScript by default. The page is just HTML and CSS. This is excellent for Core Web Vitals β€” particularly Interaction to Next Paint (INP) and Total Blocking Time.&lt;/p&gt;\n\n&lt;p&gt;Next.js ships a React runtime with every page, even for fully static content. This adds 70–200kb of JavaScript that must parse and execute before the page is fully interactive. For content sites (blogs, docs, portfolios), this is overhead with no benefit.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;For content-focused sites, Jekyll is faster in practice&lt;/strong&gt; β€” not in theory, but in the metrics that matter for real users on real connections.&lt;/p&gt;\n\n&lt;h2 id=\&quot;themes-and-design\&quot;&gt;Themes and design&lt;/h2&gt;\n\n&lt;p&gt;Jekyll has a mature theme ecosystem with hundreds of free themes on GitHub and dedicated marketplaces like JekyllHub. Themes are plain HTML, CSS, and Liquid β€” readable by anyone.&lt;/p&gt;\n\n&lt;p&gt;Next.js themes exist (Vercel has a showcase, there are paid options) but the concept of a β€œtheme” is less central to the framework. Customisation requires React component knowledge.&lt;/p&gt;\n\n&lt;h2 id=\&quot;when-nextjs-makes-sense-over-jekyll\&quot;&gt;When Next.js makes sense over Jekyll&lt;/h2&gt;\n\n&lt;ul&gt;\n  &lt;li&gt;You are building a web application, not a content site&lt;/li&gt;\n  &lt;li&gt;You need API routes, authentication, or database access&lt;/li&gt;\n  &lt;li&gt;Your team is already using React across multiple projects&lt;/li&gt;\n  &lt;li&gt;You need incremental static regeneration (pages that update without a full rebuild)&lt;/li&gt;\n  &lt;li&gt;Your site pulls from a headless CMS and you need real-time preview&lt;/li&gt;\n&lt;/ul&gt;\n\n&lt;h2 id=\&quot;when-jekyll-makes-sense-over-nextjs\&quot;&gt;When Jekyll makes sense over Next.js&lt;/h2&gt;\n\n&lt;ul&gt;\n  &lt;li&gt;Your site is primarily content: blog, documentation, portfolio, or landing pages&lt;/li&gt;\n  &lt;li&gt;You want zero runtime JavaScript on the page&lt;/li&gt;\n  &lt;li&gt;You want free hosting on GitHub Pages with no build configuration&lt;/li&gt;\n  &lt;li&gt;You are not a JavaScript developer&lt;/li&gt;\n  &lt;li&gt;You want themes you can understand and customise without a compiler&lt;/li&gt;\n&lt;/ul&gt;\n\n&lt;h2 id=\&quot;the-honest-answer\&quot;&gt;The honest answer&lt;/h2&gt;\n\n&lt;p&gt;For a blog, documentation site, portfolio, or small business website: choose Jekyll. It is simpler, faster to build, free to host, and produces lighter pages.&lt;/p&gt;\n\n&lt;p&gt;For a web application with dynamic features that also needs some statically-generated pages: choose Next.js on Vercel.&lt;/p&gt;\n\n&lt;p&gt;The mistake people make is reaching for Next.js because it is popular, then spending weeks managing a React build pipeline to publish content that could have been a Markdown file.&lt;/p&gt;\n\n&lt;p&gt;Start with the right tool. Browse &lt;a href=\&quot;/themes/\&quot;&gt;Jekyll themes on JekyllHub&lt;/a&gt; and have your site live today.&lt;/p&gt;\n\n        &lt;/div&gt;\n\n        \n        &lt;div class=\&quot;post-tags\&quot;&gt;\n          \n        &lt;/div&gt;\n        \n\n        &lt;div class=\&quot;post-share\&quot;&gt;\n          &lt;span class=\&quot;post-share__label\&quot;&gt;Share&lt;/span&gt;\n          &lt;a href=\&quot;https://twitter.com/intent/tweet?url=https%3A%2F%2Fjekyllhub.com%2Fcomparison%2F2026%2F05%2F19%2Fjekyll-vs-nextjs%2F&amp;text=Jekyll+vs+Next.js%3A+A+Practical+Comparison+for+2026\&quot; target=\&quot;_blank\&quot; rel=\&quot;noopener\&quot; class=\&quot;post-share__btn post-share__btn--twitter\&quot;&gt;\n            &lt;svg width=\&quot;14\&quot; height=\&quot;14\&quot; viewBox=\&quot;0 0 24 24\&quot; fill=\&quot;currentColor\&quot;&gt;&lt;path d=\&quot;M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.746l7.73-8.835L1.254 2.25H8.08l4.253 5.622zm-1.161 17.52h1.833L7.084 4.126H5.117z\&quot;/&gt;&lt;/svg&gt;\n            X / Twitter\n          &lt;/a&gt;\n          &lt;a href=\&quot;https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fjekyllhub.com%2Fcomparison%2F2026%2F05%2F19%2Fjekyll-vs-nextjs%2F&amp;title=Jekyll+vs+Next.js%3A+A+Practical+Comparison+for+2026\&quot; target=\&quot;_blank\&quot; rel=\&quot;noopener\&quot; class=\&quot;post-share__btn post-share__btn--linkedin\&quot;&gt;\n            &lt;svg width=\&quot;14\&quot; height=\&quot;14\&quot; viewBox=\&quot;0 0 24 24\&quot; fill=\&quot;currentColor\&quot;&gt;&lt;path d=\&quot;M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z\&quot;/&gt;&lt;/svg&gt;\n            LinkedIn\n          &lt;/a&gt;\n          &lt;button class=\&quot;post-share__btn post-share__btn--copy\&quot; onclick=\&quot;JekyllHub.copyPostLink(this)\&quot;&gt;\n            &lt;svg width=\&quot;14\&quot; height=\&quot;14\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z\&quot;/&gt;&lt;/svg&gt;\n            &lt;span&gt;Copy Link&lt;/span&gt;\n          &lt;/button&gt;\n        &lt;/div&gt;\n\n        \n\n        &lt;nav class=\&quot;post-nav\&quot; aria-label=\&quot;Post navigation\&quot;&gt;\n          &lt;div class=\&quot;post-nav__prev\&quot;&gt;\n            \n            &lt;a href=\&quot;/tutorial/2026/05/18/jekyll-custom-domain/\&quot; class=\&quot;post-nav__link\&quot;&gt;\n              &lt;span class=\&quot;post-nav__label\&quot;&gt;← Previous&lt;/span&gt;\n              &lt;span class=\&quot;post-nav__title\&quot;&gt;How to Set Up a Custom Domain for Your Jekyll Site&lt;/span&gt;\n            &lt;/a&gt;\n            \n          &lt;/div&gt;\n          &lt;div class=\&quot;post-nav__center\&quot;&gt;\n            &lt;a href=\&quot;/blog/\&quot; class=\&quot;btn btn--secondary btn--sm\&quot;&gt;All Posts&lt;/a&gt;\n          &lt;/div&gt;\n          &lt;div class=\&quot;post-nav__next\&quot;&gt;\n            \n            &lt;a href=\&quot;/themes/2026/05/20/jekyll-minimal-themes/\&quot; class=\&quot;post-nav__link post-nav__link--next\&quot;&gt;\n              &lt;span class=\&quot;post-nav__label\&quot;&gt;Next β†’&lt;/span&gt;\n              &lt;span class=\&quot;post-nav__title\&quot;&gt;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)&lt;/span&gt;\n            &lt;/a&gt;\n            \n          &lt;/div&gt;\n        &lt;/nav&gt;\n      &lt;/div&gt;\n\n      &lt;aside class=\&quot;post-body__sidebar\&quot;&gt;\n        &lt;div class=\&quot;sidebar-card\&quot;&gt;\n          &lt;h3 class=\&quot;sidebar-card__title\&quot;&gt;Browse Themes&lt;/h3&gt;\n          &lt;ul class=\&quot;post-sidebar__links\&quot;&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-academic-themes/\&quot;&gt;πŸŽ“ Academic Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-blog-themes/\&quot;&gt;✍️ Blog Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-business-themes/\&quot;&gt;πŸ’Ό Business Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-documentation-themes/\&quot;&gt;πŸ“š Documentation Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-e-commerce-themes/\&quot;&gt;πŸ›’ E-commerce Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-landing-page-themes/\&quot;&gt;πŸš€ Landing Page Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-personal-themes/\&quot;&gt;πŸ‘€ Personal Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-portfolio-themes/\&quot;&gt;🎨 Portfolio Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-resume-cv-themes/\&quot;&gt;πŸ“„ Resume/CV Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-github-pages-themes/\&quot;&gt;&lt;svg width=\&quot;14\&quot; height=\&quot;14\&quot; viewBox=\&quot;0 0 24 24\&quot; fill=\&quot;currentColor\&quot; style=\&quot;display:inline;vertical-align:middle;margin-right:4px\&quot;&gt;&lt;path d=\&quot;M12 0C5.374 0 0 5.373 0 12c0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.509 11.509 0 0 1 12 5.803c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576C20.566 21.797 24 17.3 24 12c0-6.627-5.373-12-12-12z\&quot;/&gt;&lt;/svg&gt;GitHub Pages Themes&lt;/a&gt;&lt;/li&gt;\n          &lt;/ul&gt;\n          &lt;a href=\&quot;/themes/\&quot; class=\&quot;btn btn--primary btn--full\&quot; style=\&quot;margin-top:var(--space-5)\&quot;&gt;Browse All Themes β†’&lt;/a&gt;\n        &lt;/div&gt;\n\n        &lt;div class=\&quot;sidebar-card\&quot; style=\&quot;margin-top:var(--space-6)\&quot;&gt;\n          &lt;h3 class=\&quot;sidebar-card__title\&quot;&gt;Submit Your Theme&lt;/h3&gt;\n          &lt;p style=\&quot;font-size:0.875rem;color:var(--text-3);line-height:1.6;margin-bottom:var(--space-4)\&quot;&gt;Built a Jekyll theme? Share it with thousands of developers.&lt;/p&gt;\n          &lt;a href=\&quot;/submit/\&quot; class=\&quot;btn btn--secondary btn--full\&quot;&gt;Submit a Theme β†’&lt;/a&gt;\n        &lt;/div&gt;\n      &lt;/aside&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n\n  &lt;!-- Related Themes β€” rendered by JS from SITE_DATA, shuffled per page load --&gt;\n\n  \n\n  \n  &lt;section class=\&quot;post-related-themes\&quot; style=\&quot;display:none\&quot;&gt;\n    &lt;div class=\&quot;container\&quot;&gt;\n      &lt;h2 class=\&quot;post-related-themes__title\&quot;&gt;Themes You Might Like&lt;/h2&gt;\n      &lt;div class=\&quot;themes-grid themes-grid--4\&quot; id=\&quot;post-related-themes-grid\&quot;\n           data-tags=\&quot;[]\&quot;\n           data-related-category=\&quot;Blog\&quot;&gt;&lt;/div&gt;\n    &lt;/div&gt;\n  &lt;/section&gt;\n  \n\n&lt;/article&gt;\n\n&lt;!-- Back to top --&gt;\n&lt;button class=\&quot;back-to-top\&quot; id=\&quot;back-to-top\&quot; aria-label=\&quot;Back to top\&quot; onclick=\&quot;window.scrollTo({top:0,behavior:&apos;smooth&apos;})\&quot;&gt;\n  &lt;svg fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n    &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2.5\&quot; d=\&quot;M5 15l7-7 7 7\&quot;/&gt;\n  &lt;/svg&gt;\n&lt;/button&gt;\n&lt;script src=\&quot;/assets/js/post.js\&quot; defer&gt;&lt;/script&gt;\n\n  &lt;/main&gt;\n\n  &lt;footer class=\&quot;footer\&quot;&gt;\n  &lt;div class=\&quot;container\&quot;&gt;\n    &lt;div class=\&quot;footer__grid\&quot;&gt;\n      &lt;!-- Brand --&gt;\n      &lt;div class=\&quot;footer__brand\&quot;&gt;\n        &lt;a href=\&quot;/\&quot; class=\&quot;footer__logo\&quot;&gt;\n          &lt;svg width=\&quot;28\&quot; height=\&quot;28\&quot; viewBox=\&quot;0 0 32 32\&quot; fill=\&quot;none\&quot;&gt;\n            &lt;rect width=\&quot;32\&quot; height=\&quot;32\&quot; rx=\&quot;9\&quot; fill=\&quot;#2563EB\&quot;/&gt;\n            &lt;path d=\&quot;M19 8h-6v1h5v10c0 2.2-1.8 4-4 4s-4-1.8-4-4v-1H9v1c0 2.76 2.24 5 5 5s5-2.24 5-5V8z\&quot; fill=\&quot;white\&quot;/&gt;\n            &lt;circle cx=\&quot;23\&quot; cy=\&quot;9\&quot; r=\&quot;2.5\&quot; fill=\&quot;#F0C94B\&quot;/&gt;\n          &lt;/svg&gt;\n          Jekyll&lt;span style=\&quot;color:var(--color-brand)\&quot;&gt;Hub&lt;/span&gt;\n        &lt;/a&gt;\n        &lt;p class=\&quot;footer__tagline\&quot;&gt;The premier marketplace for Jekyll themes. Build something beautiful.&lt;/p&gt;\n        &lt;div class=\&quot;footer__social\&quot;&gt;\n          &lt;a href=\&quot;https://github.com/jekyllhub\&quot; target=\&quot;_blank\&quot; rel=\&quot;noopener\&quot; aria-label=\&quot;GitHub\&quot;&gt;\n            &lt;svg width=\&quot;18\&quot; height=\&quot;18\&quot; fill=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;path d=\&quot;M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z\&quot;/&gt;&lt;/svg&gt;\n\n          &lt;/a&gt;\n          &lt;a href=\&quot;https://twitter.com/jekyllhub\&quot; target=\&quot;_blank\&quot; rel=\&quot;noopener\&quot; aria-label=\&quot;Twitter\&quot;&gt;\n            &lt;svg width=\&quot;18\&quot; height=\&quot;18\&quot; fill=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path d=\&quot;M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z\&quot;/&gt;&lt;/svg&gt;\n          &lt;/a&gt;\n          &lt;a href=\&quot;/feed.xml\&quot; aria-label=\&quot;RSS Feed\&quot;&gt;\n            &lt;svg width=\&quot;18\&quot; height=\&quot;18\&quot; fill=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path d=\&quot;M6.18 15.64a2.18 2.18 0 0 1 2.18 2.18C8.36 19.01 7.38 20 6.18 20C4.98 20 4 19.01 4 17.82a2.18 2.18 0 0 1 2.18-2.18M4 4.44A15.56 15.56 0 0 1 19.56 20h-2.83A12.73 12.73 0 0 0 4 7.27V4.44m0 5.66a9.9 9.9 0 0 1 9.9 9.9h-2.83A7.07 7.07 0 0 0 4 12.93V10.1z\&quot;/&gt;&lt;/svg&gt;\n          &lt;/a&gt;\n        &lt;/div&gt;\n      &lt;/div&gt;\n\n      &lt;!-- Explore --&gt;\n      &lt;div class=\&quot;footer__col\&quot;&gt;\n        &lt;h3 class=\&quot;footer__heading\&quot;&gt;Explore&lt;/h3&gt;\n        &lt;ul class=\&quot;footer__links\&quot; role=\&quot;list\&quot;&gt;\n          &lt;li&gt;&lt;a href=\&quot;/themes/\&quot;&gt;All Themes&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/themes/?price=premium\&quot;&gt;Premium Themes&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/themes/?price=free\&quot;&gt;Free Themes&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/themes/?sort=newest\&quot;&gt;Newest&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/themes/?sort=updated\&quot;&gt;Recently Updated&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/themes/?featured=true\&quot;&gt;Featured&lt;/a&gt;&lt;/li&gt;\n        &lt;/ul&gt;\n      &lt;/div&gt;\n\n      &lt;!-- Categories --&gt;\n      &lt;div class=\&quot;footer__col\&quot;&gt;\n        &lt;h3 class=\&quot;footer__heading\&quot;&gt;Categories&lt;/h3&gt;\n        &lt;ul class=\&quot;footer__links\&quot; role=\&quot;list\&quot;&gt;\n          \n          &lt;li&gt;&lt;a href=\&quot;/jekyll-academic-themes/\&quot;&gt;Academic&lt;/a&gt;&lt;/li&gt;\n          \n          &lt;li&gt;&lt;a href=\&quot;/jekyll-blog-themes/\&quot;&gt;Blog&lt;/a&gt;&lt;/li&gt;\n          \n          &lt;li&gt;&lt;a href=\&quot;/jekyll-business-themes/\&quot;&gt;Business&lt;/a&gt;&lt;/li&gt;\n          \n          &lt;li&gt;&lt;a href=\&quot;/jekyll-documentation-themes/\&quot;&gt;Documentation&lt;/a&gt;&lt;/li&gt;\n          \n          &lt;li&gt;&lt;a href=\&quot;/jekyll-e-commerce-themes/\&quot;&gt;E-commerce&lt;/a&gt;&lt;/li&gt;\n          \n          &lt;li&gt;&lt;a href=\&quot;/jekyll-github-pages-themes/\&quot;&gt;GitHub Pages Themes&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/categories/\&quot;&gt;View all β†’&lt;/a&gt;&lt;/li&gt;\n        &lt;/ul&gt;\n      &lt;/div&gt;\n\n      &lt;!-- Resources --&gt;\n      &lt;div class=\&quot;footer__col\&quot;&gt;\n        &lt;h3 class=\&quot;footer__heading\&quot;&gt;Learn&lt;/h3&gt;\n        &lt;ul class=\&quot;footer__links\&quot; role=\&quot;list\&quot;&gt;\n          &lt;li&gt;&lt;a href=\&quot;/jekyll-resources/\&quot;&gt;Jekyll Resources&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/installation/\&quot;&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/submit/\&quot;&gt;Submit a Theme&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;https://jekyllrb.com\&quot; target=\&quot;_blank\&quot; rel=\&quot;noopener\&quot;&gt;Jekyll Docs&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/faq/\&quot;&gt;FAQ&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/authors/\&quot;&gt;Authors&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/about/\&quot;&gt;About&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/contact/\&quot;&gt;Contact&lt;/a&gt;&lt;/li&gt;\n        &lt;/ul&gt;\n      &lt;/div&gt;\n    &lt;/div&gt;\n\n    &lt;div class=\&quot;footer__bottom\&quot;&gt;\n      &lt;p class=\&quot;footer__copy\&quot;&gt;Β© 2026 JekyllHub. Built with ❀️ and &lt;a href=\&quot;https://jekyllrb.com\&quot; target=\&quot;_blank\&quot; rel=\&quot;noopener\&quot;&gt;Jekyll&lt;/a&gt;.&lt;/p&gt;\n      &lt;div class=\&quot;footer__legal\&quot;&gt;\n        &lt;a href=\&quot;/privacy/\&quot;&gt;Privacy&lt;/a&gt;\n        &lt;a href=\&quot;/terms/\&quot;&gt;Terms&lt;/a&gt;\n        &lt;a href=\&quot;/refunds/\&quot;&gt;Refunds&lt;/a&gt;\n        &lt;a href=\&quot;/sitemap.xml\&quot;&gt;Sitemap&lt;/a&gt;\n      &lt;/div&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n&lt;/footer&gt;\n\n\n  &lt;!-- Alpine.js β€” pinned to 3.13.5 for stability (handles mobile nav toggle) --&gt;\n  &lt;script defer src=\&quot;https://unpkg.com/alpinejs@3.13.5/dist/cdn.min.js\&quot;&gt;&lt;/script&gt;\n\n  &lt;!-- Main JS --&gt;\n  &lt;script src=\&quot;/assets/js/main.js\&quot;&gt;&lt;/script&gt;\n\n  &lt;!-- Page-specific scripts --&gt;\n  \n&lt;/body&gt;\n&lt;/html&gt;\n&quot;,
      &quot;content&quot;: &quot;&lt;p&gt;Jekyll and Next.js are both capable of producing fast, statically-generated websites. But comparing them is a bit like comparing a bicycle to a car β€” they are built for different journeys. This guide cuts through the noise and tells you which one fits your project.&lt;/p&gt;\n\n&lt;h2 id=\&quot;the-fundamental-difference\&quot;&gt;The fundamental difference&lt;/h2&gt;\n\n&lt;p&gt;Jekyll is a static site generator. It takes your Markdown files and Liquid templates and produces plain HTML. That is all it does, and it does it extremely well.&lt;/p&gt;\n\n&lt;p&gt;Next.js is a full-stack React framework that happens to support static export. Its primary purpose is server-rendered and hybrid web applications. Static generation is one mode among many β€” not its identity.&lt;/p&gt;\n\n&lt;h2 id=\&quot;learning-curve\&quot;&gt;Learning curve&lt;/h2&gt;\n\n&lt;p&gt;Jekyll requires Markdown, YAML, and Liquid templating β€” none of which are programming languages in the traditional sense. A non-developer can be productive in Jekyll within a day.&lt;/p&gt;\n\n&lt;p&gt;Next.js requires React, JavaScript (ideally TypeScript), an understanding of server-side rendering versus static generation, and the Next.js routing model. If you do not already know React, Next.js is a significant investment.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Bottom line:&lt;/strong&gt; Jekyll is accessible to anyone. Next.js requires a JavaScript developer.&lt;/p&gt;\n\n&lt;h2 id=\&quot;build-output-and-hosting\&quot;&gt;Build output and hosting&lt;/h2&gt;\n\n&lt;p&gt;Both can produce a folder of static HTML files ready to deploy anywhere. But the experience differs considerably.&lt;/p&gt;\n\n&lt;p&gt;Jekyll outputs clean HTML by default and hosts natively on GitHub Pages β€” push your repository and your site is live within minutes, for free.&lt;/p&gt;\n\n&lt;p&gt;Next.js static export (&lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;next export&lt;/code&gt;) works well but loses several Next.js features: API routes, middleware, image optimisation via &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;next/image&lt;/code&gt;, and incremental static regeneration. If you strip out those features, you are essentially using a React-based template engine.&lt;/p&gt;\n\n&lt;table&gt;\n  &lt;thead&gt;\n    &lt;tr&gt;\n      &lt;th&gt;Β &lt;/th&gt;\n      &lt;th&gt;Jekyll&lt;/th&gt;\n      &lt;th&gt;Next.js static&lt;/th&gt;\n    &lt;/tr&gt;\n  &lt;/thead&gt;\n  &lt;tbody&gt;\n    &lt;tr&gt;\n      &lt;td&gt;GitHub Pages (native)&lt;/td&gt;\n      &lt;td&gt;Yes&lt;/td&gt;\n      &lt;td&gt;No (requires Actions)&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n      &lt;td&gt;Netlify / Cloudflare&lt;/td&gt;\n      &lt;td&gt;Yes&lt;/td&gt;\n      &lt;td&gt;Yes&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n      &lt;td&gt;Vercel&lt;/td&gt;\n      &lt;td&gt;Yes&lt;/td&gt;\n      &lt;td&gt;Yes (first-class)&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n      &lt;td&gt;Output size&lt;/td&gt;\n      &lt;td&gt;Very small&lt;/td&gt;\n      &lt;td&gt;Larger (React bundle)&lt;/td&gt;\n    &lt;/tr&gt;\n    &lt;tr&gt;\n      &lt;td&gt;JS required for content&lt;/td&gt;\n      &lt;td&gt;No&lt;/td&gt;\n      &lt;td&gt;Yes (hydration)&lt;/td&gt;\n    &lt;/tr&gt;\n  &lt;/tbody&gt;\n&lt;/table&gt;\n\n&lt;h2 id=\&quot;performance\&quot;&gt;Performance&lt;/h2&gt;\n\n&lt;p&gt;A Jekyll site ships zero JavaScript by default. The page is just HTML and CSS. This is excellent for Core Web Vitals β€” particularly Interaction to Next Paint (INP) and Total Blocking Time.&lt;/p&gt;\n\n&lt;p&gt;Next.js ships a React runtime with every page, even for fully static content. This adds 70–200kb of JavaScript that must parse and execute before the page is fully interactive. For content sites (blogs, docs, portfolios), this is overhead with no benefit.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;For content-focused sites, Jekyll is faster in practice&lt;/strong&gt; β€” not in theory, but in the metrics that matter for real users on real connections.&lt;/p&gt;\n\n&lt;h2 id=\&quot;themes-and-design\&quot;&gt;Themes and design&lt;/h2&gt;\n\n&lt;p&gt;Jekyll has a mature theme ecosystem with hundreds of free themes on GitHub and dedicated marketplaces like JekyllHub. Themes are plain HTML, CSS, and Liquid β€” readable by anyone.&lt;/p&gt;\n\n&lt;p&gt;Next.js themes exist (Vercel has a showcase, there are paid options) but the concept of a β€œtheme” is less central to the framework. Customisation requires React component knowledge.&lt;/p&gt;\n\n&lt;h2 id=\&quot;when-nextjs-makes-sense-over-jekyll\&quot;&gt;When Next.js makes sense over Jekyll&lt;/h2&gt;\n\n&lt;ul&gt;\n  &lt;li&gt;You are building a web application, not a content site&lt;/li&gt;\n  &lt;li&gt;You need API routes, authentication, or database access&lt;/li&gt;\n  &lt;li&gt;Your team is already using React across multiple projects&lt;/li&gt;\n  &lt;li&gt;You need incremental static regeneration (pages that update without a full rebuild)&lt;/li&gt;\n  &lt;li&gt;Your site pulls from a headless CMS and you need real-time preview&lt;/li&gt;\n&lt;/ul&gt;\n\n&lt;h2 id=\&quot;when-jekyll-makes-sense-over-nextjs\&quot;&gt;When Jekyll makes sense over Next.js&lt;/h2&gt;\n\n&lt;ul&gt;\n  &lt;li&gt;Your site is primarily content: blog, documentation, portfolio, or landing pages&lt;/li&gt;\n  &lt;li&gt;You want zero runtime JavaScript on the page&lt;/li&gt;\n  &lt;li&gt;You want free hosting on GitHub Pages with no build configuration&lt;/li&gt;\n  &lt;li&gt;You are not a JavaScript developer&lt;/li&gt;\n  &lt;li&gt;You want themes you can understand and customise without a compiler&lt;/li&gt;\n&lt;/ul&gt;\n\n&lt;h2 id=\&quot;the-honest-answer\&quot;&gt;The honest answer&lt;/h2&gt;\n\n&lt;p&gt;For a blog, documentation site, portfolio, or small business website: choose Jekyll. It is simpler, faster to build, free to host, and produces lighter pages.&lt;/p&gt;\n\n&lt;p&gt;For a web application with dynamic features that also needs some statically-generated pages: choose Next.js on Vercel.&lt;/p&gt;\n\n&lt;p&gt;The mistake people make is reaching for Next.js because it is popular, then spending weeks managing a React build pipeline to publish content that could have been a Markdown file.&lt;/p&gt;\n\n&lt;p&gt;Start with the right tool. Browse &lt;a href=\&quot;/themes/\&quot;&gt;Jekyll themes on JekyllHub&lt;/a&gt; and have your site live today.&lt;/p&gt;\n&quot;,
      &quot;url&quot;: &quot;/comparison/2026/05/19/jekyll-vs-nextjs/&quot;,
      &quot;draft&quot;: false,
      &quot;categories&quot;: [
        &quot;Comparison&quot;
      ],
      &quot;layout&quot;: &quot;post&quot;,
      &quot;title&quot;: &quot;Jekyll vs Next.js: A Practical Comparison for 2026&quot;,
      &quot;description&quot;: &quot;Jekyll and Next.js both produce fast websites β€” but they are built for very different situations. Here is how to choose between them for your next project.&quot;,
      &quot;date&quot;: &quot;2026-05-19 00:00:00 +0000&quot;,
      &quot;last_modified_at&quot;: &quot;2026-07-04&quot;,
      &quot;image&quot;: &quot;/assets/images/blog/jekyll-vs-nextjs.webp&quot;,
      &quot;author&quot;: &quot;Marcus Webb&quot;,
      &quot;category&quot;: &quot;Comparison&quot;,
      &quot;featured&quot;: false,
      &quot;related_category&quot;: &quot;Blog&quot;,
      &quot;toc&quot;: true,
      &quot;slug&quot;: &quot;jekyll-vs-nextjs&quot;,
      &quot;ext&quot;: &quot;.md&quot;,
      &quot;tags&quot;: [

      ]
    },
    &quot;id&quot;: &quot;/themes/2026/05/20/jekyll-minimal-themes&quot;,
    &quot;collection&quot;: &quot;posts&quot;,
    &quot;next&quot;: {
      &quot;path&quot;: &quot;_posts/2026-05-21-jekyll-liquid-filters-cheatsheet.md&quot;,
      &quot;relative_path&quot;: &quot;_posts/2026-05-21-jekyll-liquid-filters-cheatsheet.md&quot;,
      &quot;excerpt&quot;: &quot;&lt;p&gt;Liquid filters transform output in Jekyll templates. They are chained with the pipe character &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;|&lt;/code&gt; and applied to variables, strings, numbers, arrays, and dates. This cheatsheet covers every filter you will actually use, with real examples.&lt;/p&gt;\n\n&quot;,
      &quot;previous&quot;: {
        &quot;path&quot;: &quot;_posts/2026-05-20-jekyll-minimal-themes.md&quot;,
        &quot;relative_path&quot;: &quot;_posts/2026-05-20-jekyll-minimal-themes.md&quot;,
        &quot;id&quot;: &quot;/themes/2026/05/20/jekyll-minimal-themes&quot;,
        &quot;collection&quot;: &quot;posts&quot;,
        &quot;url&quot;: &quot;/themes/2026/05/20/jekyll-minimal-themes/&quot;,
        &quot;draft&quot;: false,
        &quot;categories&quot;: [
          &quot;Themes&quot;
        ],
        &quot;layout&quot;: &quot;post&quot;,
        &quot;title&quot;: &quot;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)&quot;,
        &quot;description&quot;: &quot;The best minimal Jekyll themes for blogs, portfolios, and personal sites β€” clean typography, fast load times, and zero visual clutter.&quot;,
        &quot;date&quot;: &quot;2026-05-20 00:00:00 +0000&quot;,
        &quot;last_modified_at&quot;: &quot;2026-07-05&quot;,
        &quot;image&quot;: &quot;/assets/images/blog/jekyll-minimal-themes.webp&quot;,
        &quot;author&quot;: &quot;Marcus Webb&quot;,
        &quot;category&quot;: &quot;Themes&quot;,
        &quot;featured&quot;: false,
        &quot;related_category&quot;: &quot;Blog&quot;,
        &quot;toc&quot;: true,
        &quot;slug&quot;: &quot;jekyll-minimal-themes&quot;,
        &quot;ext&quot;: &quot;.md&quot;,
        &quot;tags&quot;: [

        ]
      },
      &quot;id&quot;: &quot;/tutorial/2026/05/21/jekyll-liquid-filters-cheatsheet&quot;,
      &quot;collection&quot;: &quot;posts&quot;,
      &quot;next&quot;: {
        &quot;path&quot;: &quot;_posts/2026-05-22-jekyll-environment-variables.md&quot;,
        &quot;relative_path&quot;: &quot;_posts/2026-05-22-jekyll-environment-variables.md&quot;,
        &quot;id&quot;: &quot;/tutorial/2026/05/22/jekyll-environment-variables&quot;,
        &quot;collection&quot;: &quot;posts&quot;,
        &quot;url&quot;: &quot;/tutorial/2026/05/22/jekyll-environment-variables/&quot;,
        &quot;draft&quot;: false,
        &quot;categories&quot;: [
          &quot;Tutorial&quot;
        ],
        &quot;layout&quot;: &quot;post&quot;,
        &quot;title&quot;: &quot;Jekyll Environment Variables: The Complete Guide&quot;,
        &quot;description&quot;: &quot;How to use environment variables in Jekyll β€” JEKYLL_ENV, accessing env vars in config, conditional builds, and best practices for managing secrets.&quot;,
        &quot;date&quot;: &quot;2026-05-22 00:00:00 +0000&quot;,
        &quot;last_modified_at&quot;: &quot;2026-07-07&quot;,
        &quot;image&quot;: &quot;/assets/images/blog/jekyll-environment-variables.webp&quot;,
        &quot;author&quot;: &quot;Marcus Webb&quot;,
        &quot;category&quot;: &quot;Tutorial&quot;,
        &quot;featured&quot;: false,
        &quot;related_category&quot;: &quot;Blog&quot;,
        &quot;toc&quot;: true,
        &quot;slug&quot;: &quot;jekyll-environment-variables&quot;,
        &quot;ext&quot;: &quot;.md&quot;,
        &quot;tags&quot;: [

        ]
      },
      &quot;output&quot;: null,
      &quot;content&quot;: &quot;Liquid filters transform output in Jekyll templates. They are chained with the pipe character `|` and applied to variables, strings, numbers, arrays, and dates. This cheatsheet covers every filter you will actually use, with real examples.\n\n## String filters\n\n### append and prepend\n\n```liquid\n{{ \&quot;Jekyll\&quot; | append: \&quot; Themes\&quot; }}\n&lt;!-- output: Jekyll Themes --&gt;\n\n{{ \&quot;Themes\&quot; | prepend: \&quot;Jekyll \&quot; }}\n&lt;!-- output: Jekyll Themes --&gt;\n```\n\n### upcase, downcase, capitalize\n\n```liquid\n{{ \&quot;hello world\&quot; | upcase }}\n&lt;!-- output: HELLO WORLD --&gt;\n\n{{ \&quot;HELLO WORLD\&quot; | downcase }}\n&lt;!-- output: hello world --&gt;\n\n{{ \&quot;hello world\&quot; | capitalize }}\n&lt;!-- output: Hello world --&gt;\n```\n\n### strip, lstrip, rstrip\n\nRemoves whitespace from both ends, left only, or right only.\n\n```liquid\n{{ \&quot;  hello  \&quot; | strip }}\n&lt;!-- output: hello --&gt;\n```\n\n### replace and replace_first\n\n```liquid\n{{ \&quot;Jekyll is great, Jekyll is fast\&quot; | replace: \&quot;Jekyll\&quot;, \&quot;JekyllHub\&quot; }}\n&lt;!-- output: JekyllHub is great, JekyllHub is fast --&gt;\n\n{{ \&quot;Jekyll is great, Jekyll is fast\&quot; | replace_first: \&quot;Jekyll\&quot;, \&quot;JekyllHub\&quot; }}\n&lt;!-- output: JekyllHub is great, Jekyll is fast --&gt;\n```\n\n### remove and remove_first\n\n```liquid\n{{ \&quot;Hello, World!\&quot; | remove: \&quot;,\&quot; }}\n&lt;!-- output: Hello World! --&gt;\n```\n\n### truncate and truncatewords\n\n```liquid\n{{ \&quot;The quick brown fox\&quot; | truncate: 10 }}\n&lt;!-- output: The qui... --&gt;\n\n{{ \&quot;The quick brown fox\&quot; | truncatewords: 3 }}\n&lt;!-- output: The quick brown... --&gt;\n```\n\n### split and join\n\n```liquid\n{% raw %}\n{% assign tags = \&quot;jekyll,blog,themes\&quot; | split: \&quot;,\&quot; %}\n{{ tags | join: \&quot; Β· \&quot; }}\n&lt;!-- output: jekyll Β· blog Β· themes --&gt;\n{% endraw %}\n```\n\n### slice\n\nReturns a substring starting at the given index.\n\n```liquid\n{{ \&quot;Jekyll\&quot; | slice: 0, 3 }}\n&lt;!-- output: Jek --&gt;\n```\n\n### strip_html\n\nRemoves all HTML tags from a string β€” useful for generating meta descriptions from post content.\n\n```liquid\n{{ post.content | strip_html | truncate: 160 }}\n```\n\n### strip_newlines\n\n```liquid\n{{ content | strip_newlines }}\n```\n\n### newline_to_br\n\nConverts newlines to `&lt;br&gt;` tags.\n\n```liquid\n{{ content | newline_to_br }}\n```\n\n### escape and escape_once\n\nHTML-encodes a string.\n\n```liquid\n{{ &apos;&lt;script&gt;&apos; | escape }}\n&lt;!-- output: &amp;lt;script&amp;gt; --&gt;\n```\n\n### url_encode and url_decode\n\n```liquid\n{{ \&quot;hello world\&quot; | url_encode }}\n&lt;!-- output: hello+world --&gt;\n```\n\n### markdownify\n\nConverts a Markdown string to HTML. Useful for front matter fields written in Markdown.\n\n```liquid\n{{ page.description | markdownify }}\n```\n\n### jsonify\n\nConverts an object to JSON. Essential for passing Jekyll data to JavaScript.\n\n```liquid\n&lt;script&gt;\n  var themes = {{ site.themes | jsonify }};\n&lt;/script&gt;\n```\n\n## Number filters\n\n### plus, minus, times, divided_by, modulo\n\n```liquid\n{{ 10 | plus: 5 }}       &lt;!-- 15 --&gt;\n{{ 10 | minus: 3 }}      &lt;!-- 7 --&gt;\n{{ 4 | times: 3 }}       &lt;!-- 12 --&gt;\n{{ 10 | divided_by: 3 }} &lt;!-- 3 (integer division) --&gt;\n{{ 10 | modulo: 3 }}     &lt;!-- 1 --&gt;\n```\n\n### ceil, floor, round, abs\n\n```liquid\n{{ 4.3 | ceil }}   &lt;!-- 5 --&gt;\n{{ 4.7 | floor }}  &lt;!-- 4 --&gt;\n{{ 4.567 | round: 2 }} &lt;!-- 4.57 --&gt;\n{{ -5 | abs }}     &lt;!-- 5 --&gt;\n```\n\n## Array filters\n\n### size\n\nWorks on strings and arrays.\n\n```liquid\n{{ site.themes | size }}\n{{ \&quot;Jekyll\&quot; | size }} &lt;!-- 6 --&gt;\n```\n\n### first and last\n\n```liquid\n{{ site.themes | first }}\n{{ site.themes | last }}\n```\n\n### push and pop, shift and unshift\n\nAdd or remove items from an array.\n\n```liquid\n{% raw %}\n{% assign updated = site.themes | push: new_theme %}\n{% endraw %}\n```\n\n### concat\n\nMerges two arrays.\n\n```liquid\n{% raw %}\n{% assign all_posts = site.posts | concat: site.pages %}\n{% endraw %}\n```\n\n### map\n\nExtracts a single property from an array of objects.\n\n```liquid\n{% raw %}\n{% assign titles = site.themes | map: \&quot;title\&quot; %}\n{{ titles | join: \&quot;, \&quot; }}\n{% endraw %}\n```\n\n### where and where_exp\n\nFilter an array by a property value.\n\n```liquid\n{% raw %}\n{% assign premium = site.themes | where: \&quot;price_type\&quot;, \&quot;premium\&quot; %}\n\n{% assign recent = site.posts | where_exp: \&quot;post\&quot;, \&quot;post.date &gt; &apos;2026-01-01&apos;\&quot; %}\n{% endraw %}\n```\n\n### sort and sort_natural\n\n```liquid\n{% raw %}\n{% assign sorted = site.themes | sort: \&quot;title\&quot; %}\n{% assign sorted = site.themes | sort_natural: \&quot;title\&quot; %}\n{% endraw %}\n```\n\n### reverse\n\n```liquid\n{% raw %}\n{% assign reversed = site.posts | reverse %}\n{% endraw %}\n```\n\n### uniq\n\nRemoves duplicate values from an array.\n\n```liquid\n{% raw %}\n{% assign unique_cats = site.themes | map: \&quot;category\&quot; | uniq %}\n{% endraw %}\n```\n\n### group_by and group_by_exp\n\nGroups an array of objects by a property.\n\n```liquid\n{% raw %}\n{% assign by_category = site.themes | group_by: \&quot;category\&quot; %}\n{% for group in by_category %}\n  &lt;h2&gt;{{ group.name }}&lt;/h2&gt;\n  {% for theme in group.items %}\n    &lt;p&gt;{{ theme.title }}&lt;/p&gt;\n  {% endfor %}\n{% endfor %}\n{% endraw %}\n```\n\n### find and find_exp\n\nReturns the first item matching a condition (Jekyll 4+).\n\n```liquid\n{% raw %}\n{% assign featured = site.themes | find: \&quot;featured\&quot;, true %}\n{% endraw %}\n```\n\n### sum\n\nAdds up a numeric property across an array.\n\n```liquid\n{{ site.themes | map: \&quot;stars\&quot; | sum }}\n```\n\n### compact\n\nRemoves nil values from an array.\n\n```liquid\n{% raw %}\n{% assign clean = array | compact %}\n{% endraw %}\n```\n\n### flatten\n\nFlattens a nested array.\n\n```liquid\n{% raw %}\n{% assign flat = nested_array | flatten %}\n{% endraw %}\n```\n\n## Date filters\n\n### date\n\nFormats a date using `strftime` syntax.\n\n```liquid\n{{ page.date | date: \&quot;%B %-d, %Y\&quot; }}\n&lt;!-- output: July 3, 2026 --&gt;\n\n{{ page.date | date: \&quot;%Y-%m-%d\&quot; }}\n&lt;!-- output: 2026-07-03 --&gt;\n\n{{ page.date | date: \&quot;%d %b %Y\&quot; }}\n&lt;!-- output: 03 Jul 2026 --&gt;\n```\n\nCommon format codes:\n- `%Y` β€” four-digit year\n- `%m` β€” zero-padded month (01–12)\n- `%-m` β€” month without padding (1–12)\n- `%B` β€” full month name\n- `%b` β€” abbreviated month name\n- `%d` β€” zero-padded day\n- `%-d` β€” day without padding\n- `%A` β€” full weekday name\n- `%H:%M` β€” 24-hour time\n\n### date_to_long_string and date_to_string\n\nJekyll shortcuts for common date formats.\n\n```liquid\n{{ page.date | date_to_long_string }}\n&lt;!-- output: 03 July 2026 --&gt;\n\n{{ page.date | date_to_string }}\n&lt;!-- output: 03 Jul 2026 --&gt;\n```\n\n### date_to_xmlschema and date_to_rfc822\n\nUsed in feeds and structured data.\n\n```liquid\n{{ page.date | date_to_xmlschema }}\n&lt;!-- output: 2026-07-03T00:00:00+00:00 --&gt;\n```\n\n## URL and path filters\n\n### relative_url and absolute_url\n\nEssential β€” always use these instead of hardcoded paths.\n\n```liquid\n&lt;a href=\&quot;{{ &apos;/themes/&apos; | relative_url }}\&quot;&gt;Browse themes&lt;/a&gt;\n&lt;meta property=\&quot;og:url\&quot; content=\&quot;{{ page.url | absolute_url }}\&quot;&gt;\n```\n\n### slugify\n\nConverts a string to a URL-safe slug.\n\n```liquid\n{{ \&quot;Hello World! How are you?\&quot; | slugify }}\n&lt;!-- output: hello-world-how-are-you --&gt;\n```\n\n### uri_escape\n\nPercent-encodes a URI.\n\n```liquid\n{{ \&quot;search query\&quot; | uri_escape }}\n&lt;!-- output: search%20query --&gt;\n```\n\n### cgi_escape\n\nCGI-escapes a string (spaces become `+`).\n\n```liquid\n{{ \&quot;hello world\&quot; | cgi_escape }}\n&lt;!-- output: hello+world --&gt;\n```\n\n## Miscellaneous\n\n### default\n\nReturns a default value when the variable is nil, false, or empty.\n\n```liquid\n{{ page.author | default: site.author.name }}\n{{ page.image | default: site.og_image | relative_url }}\n```\n\n### inspect\n\nOutputs a Ruby representation of the object β€” invaluable for debugging.\n\n```liquid\n{{ page | inspect }}\n```\n\n### sample\n\nReturns a random element from an array.\n\n```liquid\n{{ site.themes | sample }}\n```\n\n### number_of_words\n\nCounts words in a string.\n\n```liquid\n{{ content | number_of_words }}\n```\n\n## Chaining filters\n\nFilters can be chained β€” output from one becomes input to the next.\n\n```liquid\n{{ page.title | downcase | replace: \&quot; \&quot;, \&quot;-\&quot; | prepend: \&quot;/blog/\&quot; }}\n\n{{ post.content | strip_html | truncatewords: 30 | append: \&quot;…\&quot; }}\n```\n\n## Quick reference card\n\n| Filter | What it does |\n|--------|-------------|\n| `append` / `prepend` | Add text before or after |\n| `upcase` / `downcase` | Change case |\n| `strip_html` | Remove HTML tags |\n| `truncate` / `truncatewords` | Shorten text |\n| `replace` | Find and replace |\n| `date` | Format a date |\n| `where` | Filter array by property |\n| `map` | Extract one property from array |\n| `sort` | Sort an array |\n| `size` | Count items |\n| `default` | Fallback value |\n| `relative_url` | Prefix baseurl |\n| `jsonify` | Convert to JSON |\n| `markdownify` | Render Markdown |\n\nBookmark this page β€” you will reference it constantly.\n&quot;,
      &quot;url&quot;: &quot;/tutorial/2026/05/21/jekyll-liquid-filters-cheatsheet/&quot;,
      &quot;draft&quot;: false,
      &quot;categories&quot;: [
        &quot;Tutorial&quot;
      ],
      &quot;layout&quot;: &quot;post&quot;,
      &quot;title&quot;: &quot;Jekyll Liquid Filters: The Complete Cheatsheet (2026)&quot;,
      &quot;description&quot;: &quot;Every Liquid filter you need for Jekyll β€” string manipulation, date formatting, array filters, URL helpers, and Jekyll-specific additions. With examples.&quot;,
      &quot;date&quot;: &quot;2026-05-21 00:00:00 +0000&quot;,
      &quot;last_modified_at&quot;: &quot;2026-07-06&quot;,
      &quot;image&quot;: &quot;/assets/images/blog/jekyll-liquid-filters-cheatsheet.webp&quot;,
      &quot;author&quot;: &quot;Marcus Webb&quot;,
      &quot;category&quot;: &quot;Tutorial&quot;,
      &quot;featured&quot;: false,
      &quot;related_category&quot;: &quot;Blog&quot;,
      &quot;toc&quot;: true,
      &quot;slug&quot;: &quot;jekyll-liquid-filters-cheatsheet&quot;,
      &quot;ext&quot;: &quot;.md&quot;,
      &quot;tags&quot;: [

      ]
    },
    &quot;output&quot;: &quot;&lt;!DOCTYPE html&gt;\n&lt;html lang=\&quot;en\&quot;&gt;\n&lt;head&gt;\n  &lt;meta charset=\&quot;UTF-8\&quot;&gt;\n  &lt;meta name=\&quot;viewport\&quot; content=\&quot;width=device-width, initial-scale=1.0\&quot;&gt;\n\n  &lt;!-- Begin Jekyll SEO tag v2.8.0 --&gt;\n&lt;title&gt;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free) | JekyllHub&lt;/title&gt;\n&lt;meta name=\&quot;generator\&quot; content=\&quot;Jekyll v3.10.0\&quot; /&gt;\n&lt;meta property=\&quot;og:title\&quot; content=\&quot;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)\&quot; /&gt;\n&lt;meta name=\&quot;author\&quot; content=\&quot;Marcus Webb\&quot; /&gt;\n&lt;meta property=\&quot;og:locale\&quot; content=\&quot;en_US\&quot; /&gt;\n&lt;meta name=\&quot;description\&quot; content=\&quot;The best minimal Jekyll themes for blogs, portfolios, and personal sites β€” clean typography, fast load times, and zero visual clutter.\&quot; /&gt;\n&lt;meta property=\&quot;og:description\&quot; content=\&quot;The best minimal Jekyll themes for blogs, portfolios, and personal sites β€” clean typography, fast load times, and zero visual clutter.\&quot; /&gt;\n&lt;link rel=\&quot;canonical\&quot; href=\&quot;https://jekyllhub.com/themes/2026/05/20/jekyll-minimal-themes/\&quot; /&gt;\n&lt;meta property=\&quot;og:url\&quot; content=\&quot;https://jekyllhub.com/themes/2026/05/20/jekyll-minimal-themes/\&quot; /&gt;\n&lt;meta property=\&quot;og:site_name\&quot; content=\&quot;JekyllHub\&quot; /&gt;\n&lt;meta property=\&quot;og:image\&quot; content=\&quot;https://jekyllhub.com/assets/images/blog/jekyll-minimal-themes.webp\&quot; /&gt;\n&lt;meta property=\&quot;og:type\&quot; content=\&quot;article\&quot; /&gt;\n&lt;meta property=\&quot;article:published_time\&quot; content=\&quot;2026-05-20T00:00:00+00:00\&quot; /&gt;\n&lt;meta name=\&quot;twitter:card\&quot; content=\&quot;summary_large_image\&quot; /&gt;\n&lt;meta property=\&quot;twitter:image\&quot; content=\&quot;https://jekyllhub.com/assets/images/blog/jekyll-minimal-themes.webp\&quot; /&gt;\n&lt;meta property=\&quot;twitter:title\&quot; content=\&quot;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)\&quot; /&gt;\n&lt;meta name=\&quot;twitter:site\&quot; content=\&quot;@jekyllhub\&quot; /&gt;\n&lt;meta name=\&quot;twitter:creator\&quot; content=\&quot;@Marcus Webb\&quot; /&gt;\n&lt;script type=\&quot;application/ld+json\&quot;&gt;\n{\&quot;@context\&quot;:\&quot;https://schema.org\&quot;,\&quot;@type\&quot;:\&quot;BlogPosting\&quot;,\&quot;author\&quot;:{\&quot;@type\&quot;:\&quot;Person\&quot;,\&quot;name\&quot;:\&quot;Marcus Webb\&quot;},\&quot;dateModified\&quot;:\&quot;2026-07-05T00:00:00+00:00\&quot;,\&quot;datePublished\&quot;:\&quot;2026-05-20T00:00:00+00:00\&quot;,\&quot;description\&quot;:\&quot;The best minimal Jekyll themes for blogs, portfolios, and personal sites β€” clean typography, fast load times, and zero visual clutter.\&quot;,\&quot;headline\&quot;:\&quot;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)\&quot;,\&quot;image\&quot;:\&quot;https://jekyllhub.com/assets/images/blog/jekyll-minimal-themes.webp\&quot;,\&quot;mainEntityOfPage\&quot;:{\&quot;@type\&quot;:\&quot;WebPage\&quot;,\&quot;@id\&quot;:\&quot;https://jekyllhub.com/themes/2026/05/20/jekyll-minimal-themes/\&quot;},\&quot;url\&quot;:\&quot;https://jekyllhub.com/themes/2026/05/20/jekyll-minimal-themes/\&quot;}&lt;/script&gt;\n&lt;!-- End Jekyll SEO tag --&gt;\n\n  &lt;meta name=\&quot;impact-site-verification\&quot; value=\&quot;362087e7-78c6-43e3-b39c-5ddb44047f61\&quot;&gt;\n\n  &lt;!-- og:site_name and og:image: kept here as jekyll-seo-tag does not set these reliably. --&gt;\n  &lt;!-- All other canonical/OG/Twitter tags are handled by the seo tag above. --&gt;\n  &lt;meta property=\&quot;og:site_name\&quot; content=\&quot;JekyllHub\&quot;&gt;\n\n  &lt;!-- OG / Twitter image β€” use page card_image, else fall back to social-card.png --&gt;\n  \n  \n  &lt;meta property=\&quot;og:image\&quot; content=\&quot;https://jekyllhub.com/assets/images/blog/jekyll-minimal-themes.webp\&quot;&gt;\n  &lt;meta name=\&quot;twitter:image\&quot; content=\&quot;https://jekyllhub.com/assets/images/blog/jekyll-minimal-themes.webp\&quot;&gt;\n  \n\n  &lt;!-- Fonts --&gt;\n  &lt;link rel=\&quot;preconnect\&quot; href=\&quot;https://fonts.googleapis.com\&quot;&gt;\n  &lt;link rel=\&quot;preconnect\&quot; href=\&quot;https://fonts.gstatic.com\&quot; crossorigin&gt;\n  &lt;link href=\&quot;https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,300;12..96,400;12..96,500;12..96,600;12..96,700;12..96,800&amp;family=DM+Mono:ital,wght@0,300;0,400;0,500;1,400&amp;family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&amp;display=swap\&quot; rel=\&quot;stylesheet\&quot;&gt;\n\n  &lt;!-- Dark mode: read stored preference before CSS loads to prevent flash --&gt;\n  &lt;script&gt;\n    (function() {\n      var stored = localStorage.getItem(&apos;tf_theme&apos;);\n      var theme = stored ? stored : (window.matchMedia &amp;&amp; window.matchMedia(&apos;(prefers-color-scheme: dark)&apos;).matches ? &apos;dark&apos; : &apos;light&apos;);\n      document.documentElement.setAttribute(&apos;data-theme&apos;, theme);\n    })();\n  &lt;/script&gt;\n\n  &lt;!-- Stylesheet --&gt;\n  &lt;link rel=\&quot;stylesheet\&quot; href=\&quot;/assets/css/main.css\&quot;&gt;\n\n  &lt;!-- Favicon --&gt;\n  &lt;link rel=\&quot;icon\&quot; type=\&quot;image/svg+xml\&quot; href=\&quot;/assets/images/favicon.svg\&quot;&gt;\n\n  &lt;!-- Structured Data --&gt;\n  \n  &lt;script type=\&quot;application/ld+json\&quot;&gt;\n  {\n    \&quot;@context\&quot;: \&quot;https://schema.org\&quot;,\n    \&quot;@type\&quot;: \&quot;WebSite\&quot;,\n    \&quot;name\&quot;: \&quot;JekyllHub\&quot;,\n    \&quot;description\&quot;: \&quot;The premier marketplace for Jekyll themes. Browse, preview, and download stunning themes for your next project.\&quot;,\n    \&quot;url\&quot;: \&quot;https://jekyllhub.com\&quot;\n  }\n  &lt;/script&gt;\n  \n\n  &lt;!-- Analytics --&gt;\n  \n\n  \n  \n  &lt;!-- Google tag (gtag.js) --&gt;\n  &lt;script async src=\&quot;https://www.googletagmanager.com/gtag/js?id=G-W5Z2Z9GNPG\&quot;&gt;&lt;/script&gt;\n  &lt;script&gt;\n    window.dataLayer = window.dataLayer || [];\n    function gtag(){dataLayer.push(arguments);}\n    gtag(&apos;js&apos;, new Date());\n    gtag(&apos;config&apos;, &apos;G-W5Z2Z9GNPG&apos;);\n  &lt;/script&gt;\n  \n\n  \n  \n\n\n\n&lt;/head&gt;\n&lt;body&gt;\n  \n\n&lt;div class=\&quot;announcement-bar announcement-bar--dark\&quot; id=\&quot;announcement-bar\&quot; data-ann-id=\&quot;v1\&quot; role=\&quot;banner\&quot; aria-label=\&quot;Site announcement\&quot;&gt;\n  &lt;div class=\&quot;announcement-bar__inner\&quot;&gt;\n    &lt;p class=\&quot;announcement-bar__text\&quot;&gt;\n      πŸš€ New premium themes dropping soon β€” join the waitlist and get 20% off launch price\n      \n        &lt;a href=\&quot;/waitlist/\&quot; class=\&quot;announcement-bar__link\&quot;&gt;Join Waitlist β†’&lt;/a&gt;\n      \n    &lt;/p&gt;\n    &lt;button class=\&quot;announcement-bar__close\&quot; aria-label=\&quot;Dismiss announcement\&quot; onclick=\&quot;dismissAnnouncement(&apos;v1&apos;)\&quot;&gt;\n      &lt;svg width=\&quot;14\&quot; height=\&quot;14\&quot; viewBox=\&quot;0 0 24 24\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; stroke-width=\&quot;2.5\&quot; stroke-linecap=\&quot;round\&quot;&gt;&lt;line x1=\&quot;18\&quot; y1=\&quot;6\&quot; x2=\&quot;6\&quot; y2=\&quot;18\&quot;/&gt;&lt;line x1=\&quot;6\&quot; y1=\&quot;6\&quot; x2=\&quot;18\&quot; y2=\&quot;18\&quot;/&gt;&lt;/svg&gt;\n    &lt;/button&gt;\n  &lt;/div&gt;\n&lt;/div&gt;\n\n\n  &lt;nav class=\&quot;navbar\&quot; id=\&quot;navbar\&quot; x-data=\&quot;{ mobileOpen: false }\&quot;&gt;\n  &lt;div class=\&quot;container navbar__inner\&quot;&gt;\n    &lt;!-- Logo --&gt;\n    &lt;a href=\&quot;/\&quot; class=\&quot;navbar__logo\&quot; aria-label=\&quot;JekyllHub home\&quot;&gt;\n      &lt;span class=\&quot;navbar__logo-icon\&quot;&gt;\n        &lt;svg width=\&quot;32\&quot; height=\&quot;32\&quot; viewBox=\&quot;0 0 32 32\&quot; fill=\&quot;none\&quot; xmlns=\&quot;http://www.w3.org/2000/svg\&quot;&gt;\n          &lt;rect width=\&quot;32\&quot; height=\&quot;32\&quot; rx=\&quot;9\&quot; fill=\&quot;#2563EB\&quot;/&gt;\n          &lt;!-- J letterform --&gt;\n          &lt;path d=\&quot;M19 8h-6v1h5v10c0 2.2-1.8 4-4 4s-4-1.8-4-4v-1H9v1c0 2.76 2.24 5 5 5s5-2.24 5-5V8z\&quot; fill=\&quot;white\&quot;/&gt;\n          &lt;!-- Hub dots --&gt;\n          &lt;circle cx=\&quot;23\&quot; cy=\&quot;9\&quot; r=\&quot;2.5\&quot; fill=\&quot;#F0C94B\&quot;/&gt;\n        &lt;/svg&gt;\n      &lt;/span&gt;\n      &lt;span class=\&quot;navbar__logo-text\&quot;&gt;Jekyll&lt;span class=\&quot;navbar__logo-accent\&quot;&gt;Hub&lt;/span&gt;&lt;/span&gt;\n    &lt;/a&gt;\n\n    &lt;!-- Desktop nav --&gt;\n    &lt;ul class=\&quot;navbar__links\&quot; role=\&quot;list\&quot;&gt;\n      &lt;li&gt;&lt;a href=\&quot;/themes/\&quot; class=\&quot;navbar__link navbar__link--active\&quot;&gt;Browse&lt;/a&gt;&lt;/li&gt;\n      &lt;li&gt;&lt;a href=\&quot;/categories/\&quot; class=\&quot;navbar__link navbar__link--active\&quot;&gt;Categories&lt;/a&gt;&lt;/li&gt;\n      &lt;li&gt;&lt;a href=\&quot;/blog/\&quot; class=\&quot;navbar__link \&quot;&gt;Blog&lt;/a&gt;&lt;/li&gt;\n      &lt;li&gt;&lt;a href=\&quot;/showcase/\&quot; class=\&quot;navbar__link \&quot;&gt;Showcase&lt;/a&gt;&lt;/li&gt;\n    &lt;/ul&gt;\n\n    &lt;!-- Right controls --&gt;\n    &lt;div class=\&quot;navbar__actions\&quot;&gt;\n      &lt;!-- Search trigger --&gt;\n      &lt;button class=\&quot;navbar__icon-btn\&quot; id=\&quot;search-trigger\&quot; onclick=\&quot;JekyllHub.openSearch()\&quot; aria-label=\&quot;Search themes\&quot;&gt;\n        &lt;svg width=\&quot;20\&quot; height=\&quot;20\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n          &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z\&quot;/&gt;\n        &lt;/svg&gt;\n      &lt;/button&gt;\n\n      &lt;!-- Bookmarks --&gt;\n      &lt;a href=\&quot;/bookmarks/\&quot; class=\&quot;navbar__icon-btn\&quot; aria-label=\&quot;Saved themes\&quot;&gt;\n        &lt;svg width=\&quot;20\&quot; height=\&quot;20\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n          &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M5 5a2 2 0 012-2h10a2 2 0 012 2v16l-7-3.5L5 21V5z\&quot;/&gt;\n        &lt;/svg&gt;\n        &lt;span class=\&quot;navbar__badge\&quot; id=\&quot;bookmark-count\&quot; style=\&quot;display:none\&quot;&gt;0&lt;/span&gt;\n      &lt;/a&gt;\n\n      &lt;!-- Theme toggle --&gt;\n      &lt;button class=\&quot;navbar__icon-btn theme-toggle\&quot; id=\&quot;theme-toggle\&quot; onclick=\&quot;JekyllHub.toggleTheme()\&quot; aria-label=\&quot;Toggle dark mode\&quot;&gt;\n        &lt;svg class=\&quot;theme-toggle__sun\&quot; width=\&quot;20\&quot; height=\&quot;20\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n          &lt;circle cx=\&quot;12\&quot; cy=\&quot;12\&quot; r=\&quot;5\&quot; stroke-width=\&quot;2\&quot;/&gt;\n          &lt;path stroke-linecap=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M12 1v2M12 21v2M4.22 4.22l1.42 1.42M18.36 18.36l1.42 1.42M1 12h2M21 12h2M4.22 19.78l1.42-1.42M18.36 5.64l1.42-1.42\&quot;/&gt;\n        &lt;/svg&gt;\n        &lt;svg class=\&quot;theme-toggle__moon\&quot; width=\&quot;20\&quot; height=\&quot;20\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n          &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M20.354 15.354A9 9 0 018.646 3.646 9.003 9.003 0 0012 21a9.003 9.003 0 008.354-5.646z\&quot;/&gt;\n        &lt;/svg&gt;\n      &lt;/button&gt;\n\n      &lt;!-- Mobile menu toggle --&gt;\n      &lt;button class=\&quot;navbar__mobile-toggle\&quot; @click=\&quot;mobileOpen = !mobileOpen\&quot; :aria-expanded=\&quot;mobileOpen\&quot; aria-label=\&quot;Toggle menu\&quot;&gt;\n        &lt;svg x-show=\&quot;!mobileOpen\&quot; width=\&quot;22\&quot; height=\&quot;22\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n          &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M4 6h16M4 12h16M4 18h16\&quot;/&gt;\n        &lt;/svg&gt;\n        &lt;svg x-show=\&quot;mobileOpen\&quot; width=\&quot;22\&quot; height=\&quot;22\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n          &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M6 18L18 6M6 6l12 12\&quot;/&gt;\n        &lt;/svg&gt;\n      &lt;/button&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n\n  &lt;!-- Mobile menu --&gt;\n  &lt;div class=\&quot;navbar__mobile-menu\&quot; x-show=\&quot;mobileOpen\&quot; x-transition:enter=\&quot;slide-down-enter\&quot; x-transition:enter-start=\&quot;slide-down-start\&quot; x-transition:enter-end=\&quot;slide-down-end\&quot; @click.away=\&quot;mobileOpen = false\&quot;&gt;\n    &lt;div class=\&quot;container\&quot;&gt;\n      &lt;ul role=\&quot;list\&quot;&gt;\n        &lt;li&gt;&lt;a href=\&quot;/themes/\&quot; class=\&quot;navbar__mobile-link\&quot;&gt;Browse Themes&lt;/a&gt;&lt;/li&gt;\n        &lt;li&gt;&lt;a href=\&quot;/categories/\&quot; class=\&quot;navbar__mobile-link\&quot;&gt;Categories&lt;/a&gt;&lt;/li&gt;\n        &lt;li&gt;&lt;a href=\&quot;/blog/\&quot; class=\&quot;navbar__mobile-link\&quot;&gt;Blog&lt;/a&gt;&lt;/li&gt;\n        &lt;li&gt;&lt;a href=\&quot;/showcase/\&quot; class=\&quot;navbar__mobile-link\&quot;&gt;Showcase&lt;/a&gt;&lt;/li&gt;\n        &lt;li&gt;&lt;a href=\&quot;/bookmarks/\&quot; class=\&quot;navbar__mobile-link\&quot;&gt;Saved Themes&lt;/a&gt;&lt;/li&gt;\n      &lt;/ul&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n&lt;/nav&gt;\n\n&lt;!-- Search overlay --&gt;\n&lt;div id=\&quot;search-overlay\&quot; class=\&quot;search-overlay\&quot; role=\&quot;dialog\&quot; aria-modal=\&quot;true\&quot; aria-label=\&quot;Search\&quot; onclick=\&quot;JekyllHub.closeSearch()\&quot;&gt;\n  &lt;div class=\&quot;search-overlay__panel\&quot; onclick=\&quot;event.stopPropagation()\&quot;&gt;\n    &lt;div class=\&quot;search-overlay__input-wrap\&quot;&gt;\n      &lt;svg width=\&quot;20\&quot; height=\&quot;20\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot; class=\&quot;search-overlay__icon\&quot;&gt;\n        &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M21 21l-6-6m2-5a7 7 0 11-14 0 7 7 0 0114 0z\&quot;/&gt;\n      &lt;/svg&gt;\n      &lt;input type=\&quot;search\&quot; id=\&quot;search-input\&quot; class=\&quot;search-overlay__input\&quot; placeholder=\&quot;Search themes and articles…\&quot; autocomplete=\&quot;off\&quot; aria-label=\&quot;Search\&quot;&gt;\n      &lt;kbd class=\&quot;search-overlay__esc\&quot; onclick=\&quot;JekyllHub.closeSearch()\&quot;&gt;ESC&lt;/kbd&gt;\n    &lt;/div&gt;\n    &lt;div id=\&quot;search-results\&quot; class=\&quot;search-overlay__results\&quot; role=\&quot;listbox\&quot;&gt;&lt;/div&gt;\n    &lt;div class=\&quot;search-overlay__hint\&quot;&gt;\n      Press &lt;kbd&gt;↑&lt;/kbd&gt; &lt;kbd&gt;↓&lt;/kbd&gt; to navigate, &lt;kbd&gt;↡&lt;/kbd&gt; to select\n    &lt;/div&gt;\n  &lt;/div&gt;\n&lt;/div&gt;\n\n\n  &lt;!-- Inject Jekyll collection data for client-side search, filtering, and bookmarks --&gt;\n  &lt;script&gt;\n    window.SITE_DATA = {\n      baseurl: \&quot;\&quot;,\n      themeCardPlaceholder: \&quot;/assets/images/placeholder/placeholder-card.svg\&quot;,\n      newBadgeDays: 30,\n      themes: [\n        \n        {\n          title: \&quot;Academic Pages Jekyll Theme\&quot;,\n          description: \&quot;An academic portfolio Jekyll theme for researchers and scholars. Supports publications, talks, CV pages, and GitHub Pages out of the box.\&quot;,\n          card_description: \&quot;Academic portfolio for researchers with publications, talks, and CV pages.\&quot;,\n          url: \&quot;/themes/academicpages/\&quot;,\n          category: \&quot;Academic\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://academicpages.github.io/\&quot;,\n          card_image: \&quot;/assets/images/themes/academicpages-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;academicpages\&quot;,\n        },\n        \n        {\n          title: \&quot;Advance Jekyll Theme\&quot;,\n          description: \&quot;A premium multi-purpose Jekyll theme for building advanced marketing and business websites. Includes Services, Projects, and Team content types, a configurable hero section, full blog, dark mode, and Bootstrap 5.2.\&quot;,\n          card_description: \&quot;Premium multi-purpose theme β€” services, projects, team, blog, and configurable hero.\&quot;,\n          url: \&quot;/themes/advance/\&quot;,\n          category: \&quot;Business\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 79,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://jekyll-advance.netlify.app/\&quot;,\n          card_image: \&quot;/assets/images/themes/advance-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://www.zerostatic.io/theme/jekyll-advance/\&quot;,\n          author: \&quot;Zerostatic\&quot;,\n          added_at: \&quot;2026-06-27\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: true,\n          trending: true,\n          slug: \&quot;advance\&quot;,\n        },\n        \n        {\n          title: \&quot;Agency Jekyll Theme\&quot;,\n          description: \&quot;A striking single-page agency Jekyll theme with full-screen sections, portfolio grid, and team showcase. Based on Start Bootstrap Agency.\&quot;,\n          card_description: \&quot;Striking single-page agency theme with portfolio grid and team showcase.\&quot;,\n          url: \&quot;/themes/agency/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://y7kim.github.io/agency-jekyll-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/agency-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-10\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;agency\&quot;,\n        },\n        \n        {\n          title: \&quot;al-folio Jekyll Theme\&quot;,\n          description: \&quot;A clean, minimal Jekyll theme built for academics and researchers. Beautifully renders publications, projects, and CV with BibTeX support.\&quot;,\n          card_description: \&quot;Clean academic theme for researchers with BibTeX and publications support.\&quot;,\n          url: \&quot;/themes/al-folio/\&quot;,\n          category: \&quot;Academic\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://alshedivat.github.io/al-folio/\&quot;,\n          card_image: \&quot;/assets/images/themes/al-folio-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-15\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;al-folio\&quot;,\n        },\n        \n        {\n          title: \&quot;Alembic Jekyll Theme\&quot;,\n          description: \&quot;A clean, minimal Jekyll theme with great typography and flexible page layouts. Works out of the box as a gem-based theme.\&quot;,\n          card_description: \&quot;Clean, minimal gem-based theme with flexible page layouts.\&quot;,\n          url: \&quot;/themes/alembic/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://alembic.darn.es/\&quot;,\n          card_image: \&quot;/assets/images/themes/alembic-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-02-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;alembic\&quot;,\n        },\n        \n        {\n          title: \&quot;Almace Scaffolding Jekyll Theme\&quot;,\n          description: \&quot;A bold, minimal, and blazing fast Jekyll theme with a distinctive typographic style and performance-first architecture.\&quot;,\n          card_description: \&quot;Bold, minimal, blazing-fast theme with distinctive typographic style.\&quot;,\n          url: \&quot;/themes/almace-scaffolding/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://sparanoid.com/lab/amsf/\&quot;,\n          card_image: \&quot;/assets/images/themes/almace-scaffolding-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;almace-scaffolding\&quot;,\n        },\n        \n        {\n          title: \&quot;Architect Jekyll Theme\&quot;,\n          description: \&quot;A clean GitHub Pages Jekyll theme with a prominent sidebar and crisp typography. Official GitHub Pages theme, ideal for project documentation.\&quot;,\n          card_description: \&quot;Clean GitHub Pages theme with prominent sidebar for project docs.\&quot;,\n          url: \&quot;/themes/architect/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/architect/\&quot;,\n          card_image: \&quot;/assets/images/themes/architect-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;architect\&quot;,\n        },\n        \n        {\n          title: \&quot;Aura Pro Jekyll Theme\&quot;,\n          description: \&quot;The premium upgrade to the Aura Jekyll theme. Includes all Aura features plus advanced blog layouts, star-rated testimonials, Sendy newsletter support, and read-time indicators.\&quot;,\n          card_description: \&quot;Premium upgrade to Aura β€” advanced layouts, star testimonials, and read time.\&quot;,\n          url: \&quot;/themes/aura-pro/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 9,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://satishw.github.io/jekyll-theme-aura-pro/\&quot;,\n          card_image: \&quot;/assets/images/themes/aura-pro-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://satishw.github.io/jekyll-theme-aura-pro/features/\&quot;,\n          author: \&quot;Satish W\&quot;,\n          added_at: \&quot;2026-06-26\&quot;,\n          discount_label: \&quot;launch_offer\&quot;,\n          discount_original_price: 29,\n          popular: false,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;aura-pro\&quot;,\n        },\n        \n        {\n          title: \&quot;Aura Jekyll Theme\&quot;,\n          description: \&quot;Versatile Jekyll theme designed for content creators, writers, and developers. Ships with blog, projects, testimonials, and portfolio sections β€” fully compatible with GitHub Pages.\&quot;,\n          card_description: \&quot;Versatile Jekyll theme for creators and developers β€” blog, projects, and portfolio ready.\&quot;,\n          url: \&quot;/themes/aura/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://satishw.github.io/jekyll-theme-aura/\&quot;,\n          card_image: \&quot;/assets/images/themes/aura-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;Satish W\&quot;,\n          added_at: \&quot;2026-02-10\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;aura\&quot;,\n        },\n        \n        {\n          title: \&quot;Basically Basic Jekyll Theme\&quot;,\n          description: \&quot;Your new Jekyll default theme β€” a modern, polished substitute for Minima. Six customisable colour skins, resume layout, off-canvas menu, and everything Minima should have been.\&quot;,\n          card_description: \&quot;Modern Minima replacement with six colour skins and a resume layout.\&quot;,\n          url: \&quot;/themes/basically-basic/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://mmistakes.github.io/jekyll-theme-basically-basic/\&quot;,\n          card_image: \&quot;/assets/images/themes/basically-basic-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;basically-basic\&quot;,\n        },\n        \n        {\n          title: \&quot;Beautiful Jekyll\&quot;,\n          description: \&quot;One of the most popular Jekyll blog themes. Easy to set up, highly customisable, and works perfectly on GitHub Pages.\&quot;,\n          card_description: \&quot;Highly popular blog theme β€” easy setup, works on GitHub Pages.\&quot;,\n          url: \&quot;/themes/beautiful-jekyll/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://beautifuljekyll.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/beautiful-jekyll-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-20\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;beautiful-jekyll\&quot;,\n        },\n        \n        {\n          title: \&quot;Bulma Clean Theme Jekyll Theme\&quot;,\n          description: \&quot;A clean and modern Jekyll theme built with the Bulma CSS framework. Features a blog, portfolio, and docs-ready layout with extensive customisation.\&quot;,\n          card_description: \&quot;Clean, modern Bulma CSS theme for blogs, portfolios, and docs.\&quot;,\n          url: \&quot;/themes/bulma-clean-theme/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://www.csrhymes.com/bulma-clean-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/bulma-clean-theme-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;bulma-clean-theme\&quot;,\n        },\n        \n        {\n          title: \&quot;Cayman Jekyll Theme\&quot;,\n          description: \&quot;A bright, clean GitHub Pages Jekyll theme with a large hero header and fluid typography. Simple and polished for project landing pages.\&quot;,\n          card_description: \&quot;Bright GitHub Pages theme with large hero header for project sites.\&quot;,\n          url: \&quot;/themes/cayman/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/cayman/\&quot;,\n          card_image: \&quot;/assets/images/themes/cayman-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-02-20\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;cayman\&quot;,\n        },\n        \n        {\n          title: \&quot;Centrarium Jekyll Theme\&quot;,\n          description: \&quot;A simple, classy Jekyll blog theme with a large header image, featured posts, category pages, and Google Analytics integration.\&quot;,\n          card_description: \&quot;Classy blog theme with large header images and featured posts.\&quot;,\n          url: \&quot;/themes/centrarium/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://bencentra.com/centrarium/\&quot;,\n          card_image: \&quot;/assets/images/themes/centrarium-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;centrarium\&quot;,\n        },\n        \n        {\n          title: \&quot;Chalk Jekyll Theme\&quot;,\n          description: \&quot;A high quality, completely customisable Jekyll blog theme. Features an elegant two-column layout, full-text search, category filtering, and subtle animations that make the experience feel alive.\&quot;,\n          card_description: \&quot;Elegant two-column blog with full-text search and category filtering.\&quot;,\n          url: \&quot;/themes/chalk/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://chalk.nielsenramon.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/chalk-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;chalk\&quot;,\n        },\n        \n        {\n          title: \&quot;Chirpy Jekyll Theme\&quot;,\n          description: \&quot;A polished, feature-rich blog theme with dark mode, full-text search, reading time, table of contents, and PWA support. One of the fastest-growing Jekyll themes.\&quot;,\n          card_description: \&quot;Feature-rich blog with dark mode, search, TOC, and PWA support.\&quot;,\n          url: \&quot;/themes/chirpy/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://chirpy.cotes.page/\&quot;,\n          card_image: \&quot;/assets/images/themes/chirpy-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-05\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;chirpy\&quot;,\n        },\n        \n        {\n          title: \&quot;Clean Blog Jekyll Theme\&quot;,\n          description: \&quot;A clean, distraction-free blog theme with full-width header images per post. A Start Bootstrap original ported to Jekyll.\&quot;,\n          card_description: \&quot;Distraction-free blog with full-width header images per post.\&quot;,\n          url: \&quot;/themes/clean-blog/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://startbootstrap.github.io/startbootstrap-clean-blog-jekyll/\&quot;,\n          card_image: \&quot;/assets/images/themes/clean-blog-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-02-25\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;clean-blog\&quot;,\n        },\n        \n        {\n          title: \&quot;Contrast Jekyll Theme\&quot;,\n          description: \&quot;A simple, minimal Jekyll blog theme with strong typographic contrast, clean post listings, and support for tags and pagination.\&quot;,\n          card_description: \&quot;Minimal blog with strong typographic contrast and tag support.\&quot;,\n          url: \&quot;/themes/contrast/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://niklasbuschmann.github.io/contrast/\&quot;,\n          card_image: \&quot;/assets/images/themes/contrast-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;contrast\&quot;,\n        },\n        \n        {\n          title: \&quot;Creative Jekyll Theme\&quot;,\n          description: \&quot;A one-page Bootstrap landing page Jekyll theme with a fullscreen hero image, smooth scroll navigation, and portfolio sections.\&quot;,\n          card_description: \&quot;One-page Bootstrap landing page with fullscreen hero and portfolio.\&quot;,\n          url: \&quot;/themes/creative/\&quot;,\n          category: \&quot;Landing Page\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://volny.github.io/creative-theme-jekyll/\&quot;,\n          card_image: \&quot;/assets/images/themes/creative-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;creative\&quot;,\n        },\n        \n        {\n          title: \&quot;Devlopr Jekyll Theme\&quot;,\n          description: \&quot;A feature-rich developer portfolio Jekyll theme with an integrated blog, skills section, CMS support, and dark mode built in.\&quot;,\n          card_description: \&quot;Developer portfolio with blog, skills section, and dark mode built in.\&quot;,\n          url: \&quot;/themes/devlopr-jekyll/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://devlopr.netlify.app/\&quot;,\n          card_image: \&quot;/assets/images/themes/devlopr-jekyll-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;devlopr-jekyll\&quot;,\n        },\n        \n        {\n          title: \&quot;Dinky Jekyll Theme\&quot;,\n          description: \&quot;A compact GitHub Pages Jekyll theme with a fixed sidebar and clean layout. Great for small documentation pages and personal project sites.\&quot;,\n          card_description: \&quot;Compact GitHub Pages theme with fixed sidebar for small project sites.\&quot;,\n          url: \&quot;/themes/dinky/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/dinky/\&quot;,\n          card_image: \&quot;/assets/images/themes/dinky-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;dinky\&quot;,\n        },\n        \n        {\n          title: \&quot;Documentation Jekyll Theme\&quot;,\n          description: \&quot;A documentation and help system Jekyll theme with search, navigation sidebar, and clean typography for technical writing.\&quot;,\n          card_description: \&quot;Help system theme with search, sidebar navigation, and clean typography.\&quot;,\n          url: \&quot;/themes/documentation/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://docs.cloudcannon.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/documentation-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;documentation\&quot;,\n        },\n        \n        {\n          title: \&quot;Feeling Responsive Jekyll Theme\&quot;,\n          description: \&quot;A multipurpose responsive Jekyll theme built on the Foundation framework with flexible layouts, widgets, and rich customisation options.\&quot;,\n          card_description: \&quot;Multipurpose Foundation theme with flexible layouts and rich widgets.\&quot;,\n          url: \&quot;/themes/feeling-responsive/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://phlow.github.io/feeling-responsive/\&quot;,\n          card_image: \&quot;/assets/images/themes/feeling-responsive-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;feeling-responsive\&quot;,\n        },\n        \n        {\n          title: \&quot;Flexible Jekyll\&quot;,\n          description: \&quot;A simple and clean Jekyll theme with a minimal design, dark mode support, tag pages, and a flexible two-column layout.\&quot;,\n          card_description: \&quot;Simple, clean blog with dark mode and flexible two-column layout.\&quot;,\n          url: \&quot;/themes/flexible-jekyll/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://artemsheludko.github.io/flexible-jekyll/\&quot;,\n          card_image: \&quot;/assets/images/themes/flexible-jekyll-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;flexible-jekyll\&quot;,\n        },\n        \n        {\n          title: \&quot;Forty Jekyll Theme\&quot;,\n          description: \&quot;A visually striking multipurpose Jekyll theme inspired by HTML5 UP. Features tiled project sections and high-impact full-screen headers.\&quot;,\n          card_description: \&quot;Visually striking multipurpose theme with tiled sections and full-screen headers.\&quot;,\n          url: \&quot;/themes/forty/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://andrewbanchich.github.io/forty-jekyll-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/forty-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-03-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;forty\&quot;,\n        },\n        \n        {\n          title: \&quot;Freelancer Jekyll Theme\&quot;,\n          description: \&quot;A flat design landing page and portfolio Jekyll theme based on the popular Freelancer Bootstrap theme by Start Bootstrap.\&quot;,\n          card_description: \&quot;Flat design portfolio and landing page theme for freelancers.\&quot;,\n          url: \&quot;/themes/freelancer/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://jeromelachaud.com/freelancer-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/freelancer-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;freelancer\&quot;,\n        },\n        \n        {\n          title: \&quot;Hacker Blog Jekyll Theme\&quot;,\n          description: \&quot;A minimal, terminal-inspired dark Jekyll blog theme for developers. Pure CLI aesthetic β€” black background, monospace font, zero distractions.\&quot;,\n          card_description: \&quot;Terminal-inspired dark blog β€” monospace, minimal, distraction-free.\&quot;,\n          url: \&quot;/themes/hacker-blog/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://tocttou.github.io/hacker-blog/\&quot;,\n          card_image: \&quot;/assets/images/themes/hacker-blog-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-03-05\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hacker-blog\&quot;,\n        },\n        \n        {\n          title: \&quot;Hacker Jekyll Theme\&quot;,\n          description: \&quot;The official GitHub Pages hacker Jekyll theme. Dark terminal-style design with monospace typography, built for developer project pages.\&quot;,\n          card_description: \&quot;Official GitHub Pages hacker theme with dark terminal-style design.\&quot;,\n          url: \&quot;/themes/hacker/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/hacker/\&quot;,\n          card_image: \&quot;/assets/images/themes/hacker-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hacker\&quot;,\n        },\n        \n        {\n          title: \&quot;Hitchens Jekyll Theme\&quot;,\n          description: \&quot;An unfussy Jekyll theme for serious writers. Minimal design, elegant typography, and a dark mode β€” inspired by the prose of Christopher Hitchens.\&quot;,\n          card_description: \&quot;Unfussy, elegant theme for serious writers with dark mode built in.\&quot;,\n          url: \&quot;/themes/hitchens/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://hitchens.patdryburgh.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/hitchens-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hitchens\&quot;,\n        },\n        \n        {\n          title: \&quot;HPSTR Jekyll Theme\&quot;,\n          description: \&quot;A responsive, full-featured Jekyll blog theme by Michael Rose. Rich with image-forward posts, sliding panel navigation, and social sharing.\&quot;,\n          card_description: \&quot;Image-forward blog with sliding panel navigation and social sharing.\&quot;,\n          url: \&quot;/themes/hpstr/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://mmistakes.github.io/hpstr-jekyll-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/hpstr-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hpstr\&quot;,\n        },\n        \n        {\n          title: \&quot;Huxpro Jekyll Theme\&quot;,\n          description: \&quot;A beautiful, cover-image-driven Jekyll blog theme inspired by Ghost&apos;s Casper. Features full-screen hero images, smooth transitions, and a clean reading experience.\&quot;,\n          card_description: \&quot;Cover-image-driven blog inspired by Ghost&apos;s Casper theme.\&quot;,\n          url: \&quot;/themes/huxpro/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://huxpro.github.io/\&quot;,\n          card_image: \&quot;/assets/images/themes/huxpro-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-08\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;huxpro\&quot;,\n        },\n        \n        {\n          title: \&quot;Hyde Jekyll Theme\&quot;,\n          description: \&quot;A brazen two-column Jekyll theme that pairs a prominent sidebar with uncomplicated content. Based on Poole, by Mark Otto.\&quot;,\n          card_description: \&quot;Two-column theme with prominent sidebar β€” elegant and timeless.\&quot;,\n          url: \&quot;/themes/hyde/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://hyde.getpoole.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/hyde-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-25\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hyde\&quot;,\n        },\n        \n        {\n          title: \&quot;Hydejack Jekyll Theme\&quot;,\n          description: \&quot;A boutique Jekyll theme with a rich sidebar, smooth page transitions, and portfolio support. The premium evolution of Hyde.\&quot;,\n          card_description: \&quot;Boutique theme with smooth page transitions and portfolio support.\&quot;,\n          url: \&quot;/themes/hydejack/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://hydejack.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/hydejack-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-30\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hydejack\&quot;,\n        },\n        \n        {\n          title: \&quot;Hydra Jekyll Theme\&quot;,\n          description: \&quot;A product and SaaS marketing Jekyll theme with a clean hero section, feature grid, pricing table, and testimonials.\&quot;,\n          card_description: \&quot;SaaS marketing theme with hero, feature grid, and pricing table.\&quot;,\n          url: \&quot;/themes/hydra/\&quot;,\n          category: \&quot;Landing Page\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://orange-ape.cloudvent.net/\&quot;,\n          card_image: \&quot;/assets/images/themes/hydra-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;hydra\&quot;,\n        },\n        \n        {\n          title: \&quot;Jasper Jekyll Theme\&quot;,\n          description: \&quot;A Jekyll port of Ghost&apos;s default Casper theme. Brings the polished, editorial feel of Ghost blogging to static Jekyll sites.\&quot;,\n          card_description: \&quot;Jekyll port of Ghost&apos;s Casper β€” polished, editorial feel.\&quot;,\n          url: \&quot;/themes/jasper/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://jekyllt.github.io/jasper/\&quot;,\n          card_image: \&quot;/assets/images/themes/jasper-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;jasper\&quot;,\n        },\n        \n        {\n          title: \&quot;Jekyll Now\&quot;,\n          description: \&quot;The quickest way to start a Jekyll blog. Fork on GitHub, enable Pages, and you have a live blog in under a minute β€” zero command line required.\&quot;,\n          card_description: \&quot;Quickest way to start a Jekyll blog β€” fork, enable Pages, done.\&quot;,\n          url: \&quot;/themes/jekyll-now/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://barryclark.github.io/jekyll-now/\&quot;,\n          card_image: \&quot;/assets/images/themes/jekyll-now-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;jekyll-now\&quot;,\n        },\n        \n        {\n          title: \&quot;TeXt Jekyll Theme\&quot;,\n          description: \&quot;A highly customisable Jekyll theme inspired by iOS 11 style. Features multiple skins, rich built-in components, full internationalisation, and support for blogs, documentation, and team sites.\&quot;,\n          card_description: \&quot;iOS-inspired theme with multiple skins and rich built-in components.\&quot;,\n          url: \&quot;/themes/jekyll-text-theme/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://kitian616.github.io/jekyll-TeXt-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/jekyll-text-theme-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;jekyll-text-theme\&quot;,\n        },\n        \n        {\n          title: \&quot;Just the Docs Jekyll Theme\&quot;,\n          description: \&quot;The most popular Jekyll documentation theme. Clean sidebar navigation, full-text search, and excellent code block support.\&quot;,\n          card_description: \&quot;Most popular Jekyll docs theme with sidebar navigation and search.\&quot;,\n          url: \&quot;/themes/just-the-docs/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://just-the-docs.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/just-the-docs-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-08\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;just-the-docs\&quot;,\n        },\n        \n        {\n          title: \&quot;KlisΓ© Jekyll Theme\&quot;,\n          description: \&quot;A minimalist Jekyll theme with seamless light and dark mode. Clean typography, fast performance, and a modern aesthetic β€” designed for personal sites and blogs that value simplicity.\&quot;,\n          card_description: \&quot;Minimalist theme with seamless dark mode and clean typography.\&quot;,\n          url: \&quot;/themes/klise/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://klise.vercel.app/\&quot;,\n          card_image: \&quot;/assets/images/themes/klise-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;klise\&quot;,\n        },\n        \n        {\n          title: \&quot;Lanyon Jekyll Theme\&quot;,\n          description: \&quot;A Jekyll theme that hides its sidebar until you need it. Clean, spacious reading layout with a smooth slide-out navigation drawer.\&quot;,\n          card_description: \&quot;Clean blog theme with a smooth slide-out navigation drawer.\&quot;,\n          url: \&quot;/themes/lanyon/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://lanyon.getpoole.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/lanyon-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-02-05\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;lanyon\&quot;,\n        },\n        \n        {\n          title: \&quot;Leonids Jekyll Theme\&quot;,\n          description: \&quot;A simple and clean two-column Jekyll blog theme. Fixed sidebar with author bio and social links, clean post listing, and a timeless layout that puts content front and centre.\&quot;,\n          card_description: \&quot;Two-column blog with fixed sidebar and timeless content-first layout.\&quot;,\n          url: \&quot;/themes/leonids/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://renyuanz.github.io/leonids/\&quot;,\n          card_image: \&quot;/assets/images/themes/leonids-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;leonids\&quot;,\n        },\n        \n        {\n          title: \&quot;Livvic Jekyll Theme\&quot;,\n          description: \&quot;A clean, creative, and unique Jekyll theme for agency and personal portfolio websites. Features a flat modern design, unique effects, Bootstrap 4, and Font Awesome β€” ready to customise and launch in hours.\&quot;,\n          card_description: \&quot;Clean creative portfolio theme for agencies and freelancers β€” minimal, unique, responsive.\&quot;,\n          url: \&quot;/themes/livvic/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 49,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://livvic-jekyll.tortoizthemes.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/livvic-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://tortoizthemes.com/theme/livvic-jekyll-theme/\&quot;,\n          author: \&quot;Tortoiz Themes\&quot;,\n          added_at: \&quot;2026-06-27\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;livvic\&quot;,\n        },\n        \n        {\n          title: \&quot;Long Haul Jekyll Theme\&quot;,\n          description: \&quot;A minimal, type-focused Jekyll theme designed for long-form writing. Understated design that keeps the reader&apos;s attention on the words.\&quot;,\n          card_description: \&quot;Minimal, type-focused theme designed for long-form writing.\&quot;,\n          url: \&quot;/themes/long-haul/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://brianmaierjr.com/long-haul/\&quot;,\n          card_image: \&quot;/assets/images/themes/long-haul-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;long-haul\&quot;,\n        },\n        \n        {\n          title: \&quot;Massively Jekyll Theme\&quot;,\n          description: \&quot;A bold, image-driven Jekyll blog theme ported from HTML5 UP. Full-screen background image on the homepage, large featured post images, and a striking visual identity unlike any other Jekyll theme.\&quot;,\n          card_description: \&quot;Bold, image-driven blog with full-screen homepage background.\&quot;,\n          url: \&quot;/themes/massively/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://jekyllup.github.io/jekyll-theme-massively/\&quot;,\n          card_image: \&quot;/assets/images/themes/massively-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;massively\&quot;,\n        },\n        \n        {\n          title: \&quot;Mediator Jekyll Theme\&quot;,\n          description: \&quot;A medium-inspired Jekyll blog theme with large featured images, clean typography, and a focus on long-form reading.\&quot;,\n          card_description: \&quot;Medium-inspired blog with large featured images and clean typography.\&quot;,\n          url: \&quot;/themes/mediator/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://blog.base68.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/mediator-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;mediator\&quot;,\n        },\n        \n        {\n          title: \&quot;Mediumish Jekyll Theme\&quot;,\n          description: \&quot;A Medium-inspired blog theme with card-based post listings, author pages, and a clean reading layout. One of the most popular Jekyll blog starters.\&quot;,\n          card_description: \&quot;Medium-inspired blog with card post listings and author pages.\&quot;,\n          url: \&quot;/themes/mediumish/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://wowthemesnet.github.io/mediumish-theme-jekyll/\&quot;,\n          card_image: \&quot;/assets/images/themes/mediumish-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-03-10\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;mediumish\&quot;,\n        },\n        \n        {\n          title: \&quot;Merlot Jekyll Theme\&quot;,\n          description: \&quot;A warm, editorial GitHub Pages Jekyll theme with classic typographic styling. Official GitHub Pages theme for personal and project sites.\&quot;,\n          card_description: \&quot;Warm, editorial GitHub Pages theme with classic typographic styling.\&quot;,\n          url: \&quot;/themes/merlot/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/merlot/\&quot;,\n          card_image: \&quot;/assets/images/themes/merlot-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;merlot\&quot;,\n        },\n        \n        {\n          title: \&quot;Midnight Jekyll Theme\&quot;,\n          description: \&quot;A dark, sleek GitHub Pages Jekyll theme with light text on deep backgrounds. Official GitHub Pages theme ideal for personal projects and portfolios.\&quot;,\n          card_description: \&quot;Dark, sleek GitHub Pages theme with light text on deep backgrounds.\&quot;,\n          url: \&quot;/themes/midnight/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/midnight/\&quot;,\n          card_image: \&quot;/assets/images/themes/midnight-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;midnight\&quot;,\n        },\n        \n        {\n          title: \&quot;Miles Jekyll Theme\&quot;,\n          description: \&quot;A creative portfolio and agency Jekyll theme with 12+ homepage layouts, 6 portfolio styles, and 4 blog layouts. Designed for agencies, freelancers, and creative professionals who want a stunning site in hours not days.\&quot;,\n          card_description: \&quot;Creative agency and portfolio theme β€” 12+ homepages, 6 portfolio styles, dark design.\&quot;,\n          url: \&quot;/themes/miles/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 79,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://miles-jekyll.tortoizthemes.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/miles-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://tortoizthemes.com/demo/miles/\&quot;,\n          author: \&quot;Tortoiz Themes\&quot;,\n          added_at: \&quot;2026-06-27\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;miles\&quot;,\n        },\n        \n        {\n          title: \&quot;Millennial Jekyll Theme\&quot;,\n          description: \&quot;A minimalist, responsive Jekyll blog theme with a clean layout, tag support, pagination, and social share buttons.\&quot;,\n          card_description: \&quot;Minimalist responsive blog with tag support and social share buttons.\&quot;,\n          url: \&quot;/themes/millennial/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://lenpaul.github.io/Millennial/\&quot;,\n          card_image: \&quot;/assets/images/themes/millennial-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;millennial\&quot;,\n        },\n        \n        {\n          title: \&quot;Minima Jekyll Theme\&quot;,\n          description: \&quot;Jekyll&apos;s built-in default theme. Minimal, clean, and battle-tested. The foundation every Jekyll developer knows.\&quot;,\n          card_description: \&quot;Jekyll&apos;s default theme β€” minimal, clean, and battle-tested.\&quot;,\n          url: \&quot;/themes/minima/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://jekyll.github.io/minima/\&quot;,\n          card_image: \&quot;/assets/images/themes/minima-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;minima\&quot;,\n        },\n        \n        {\n          title: \&quot;Minimal Mistakes Jekyll Theme\&quot;,\n          description: \&quot;The most popular Jekyll theme on GitHub. A flexible two-column theme perfect for personal sites, blogs, documentation, and portfolios β€” with 12 layout skins.\&quot;,\n          card_description: \&quot;Most popular Jekyll theme β€” flexible two-column with 12 layout skins.\&quot;,\n          url: \&quot;/themes/minimal-mistakes/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://mmistakes.github.io/minimal-mistakes/\&quot;,\n          card_image: \&quot;/assets/images/themes/minimal-mistakes-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-01-02\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;minimal-mistakes\&quot;,\n        },\n        \n        {\n          title: \&quot;Minimal Jekyll Theme\&quot;,\n          description: \&quot;The official minimal GitHub Pages Jekyll theme. Clean and lightweight with great default typography for personal projects and documentation.\&quot;,\n          card_description: \&quot;Official minimal GitHub Pages theme β€” clean and lightweight.\&quot;,\n          url: \&quot;/themes/minimal/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/minimal/\&quot;,\n          card_image: \&quot;/assets/images/themes/minimal-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;minimal\&quot;,\n        },\n        \n        {\n          title: \&quot;Modern Resume Theme Jekyll Theme\&quot;,\n          description: \&quot;A sleek, single-page resume/CV theme for Jekyll. Dark header, clean timeline layout, and sections for experience, education, skills, and projects.\&quot;,\n          card_description: \&quot;Sleek single-page resume/CV with timeline and skills sections.\&quot;,\n          url: \&quot;/themes/modern-resume-theme/\&quot;,\n          category: \&quot;Resume / CV\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: true,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://sproogen.github.io/modern-resume-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/modern-resume-theme-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-02-28\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;modern-resume-theme\&quot;,\n        },\n        \n        {\n          title: \&quot;Moonwalk Jekyll Theme\&quot;,\n          description: \&quot;A dark, minimal Jekyll blog theme with a focus on typography and whitespace. Elegant simplicity for serious writers.\&quot;,\n          card_description: \&quot;Dark, minimal blog focused on typography and generous whitespace.\&quot;,\n          url: \&quot;/themes/moonwalk/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://abhinavs.github.io/moonwalk/\&quot;,\n          card_image: \&quot;/assets/images/themes/moonwalk-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-03-12\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;moonwalk\&quot;,\n        },\n        \n        {\n          title: \&quot;Mundana Jekyll Theme\&quot;,\n          description: \&quot;A modern Jekyll theme for bloggers built with Bootstrap 4. Features featured posts, category pages, newsletter signup, and clean card layouts.\&quot;,\n          card_description: \&quot;Modern Bootstrap 4 blog with featured posts and newsletter signup.\&quot;,\n          url: \&quot;/themes/mundana/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://mundana.amitmerchant.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/mundana-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;mundana\&quot;,\n        },\n        \n        {\n          title: \&quot;Online CV Jekyll Theme\&quot;,\n          description: \&quot;A one-page Jekyll CV and resume theme for creating a beautiful online portfolio. Minimal, readable design perfect for job seekers and freelancers.\&quot;,\n          card_description: \&quot;One-page CV/resume theme for a beautiful online portfolio.\&quot;,\n          url: \&quot;/themes/online-cv/\&quot;,\n          category: \&quot;Resume / CV\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://sharu725.github.io/online-cv/\&quot;,\n          card_image: \&quot;/assets/images/themes/online-cv-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-03-15\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;online-cv\&quot;,\n        },\n        \n        {\n          title: \&quot;Origin Jekyll Theme\&quot;,\n          description: \&quot;A fully featured and highly configurable modern blog theme for Jekyll. Includes categories, authors, comments, pagination, dark mode, and a perfect 100/100 Google Lighthouse score.\&quot;,\n          card_description: \&quot;Modern blog theme with dark mode, authors, categories, and 100/100 Lighthouse.\&quot;,\n          url: \&quot;/themes/origin/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 49,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://jekyll-origin.netlify.app/\&quot;,\n          card_image: \&quot;/assets/images/themes/origin-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://www.zerostatic.io/theme/jekyll-origin/\&quot;,\n          author: \&quot;Zerostatic\&quot;,\n          added_at: \&quot;2026-06-27\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;origin\&quot;,\n        },\n        \n        {\n          title: \&quot;Phantom Jekyll Theme\&quot;,\n          description: \&quot;A minimalist, responsive portfolio Jekyll theme with a project grid, modal image viewer, and subtle hover animations.\&quot;,\n          card_description: \&quot;Minimalist portfolio with project grid and modal image viewer.\&quot;,\n          url: \&quot;/themes/phantom/\&quot;,\n          category: \&quot;Portfolio\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://jamigibbs.github.io/phantom/\&quot;,\n          card_image: \&quot;/assets/images/themes/phantom-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;phantom\&quot;,\n        },\n        \n        {\n          title: \&quot;Pixyll Jekyll Theme\&quot;,\n          description: \&quot;A simple, beautiful Jekyll theme that puts your content first. Mobile-first, fluidly responsive, and delightfully lightweight β€” built around great typography and generous whitespace.\&quot;,\n          card_description: \&quot;Simple, beautiful theme that puts content first with generous whitespace.\&quot;,\n          url: \&quot;/themes/pixyll/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pixyll.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/pixyll-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;pixyll\&quot;,\n        },\n        \n        {\n          title: \&quot;Primer Jekyll Theme\&quot;,\n          description: \&quot;The official GitHub Pages primer Jekyll theme. Clean, GitHub-style design with great readability β€” perfect for documentation and project pages.\&quot;,\n          card_description: \&quot;Official GitHub Pages primer theme β€” clean GitHub-style for docs.\&quot;,\n          url: \&quot;/themes/primer/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/primer/\&quot;,\n          card_image: \&quot;/assets/images/themes/primer-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;primer\&quot;,\n        },\n        \n        {\n          title: \&quot;Researcher Jekyll Theme\&quot;,\n          description: \&quot;A minimal, clean Jekyll theme for a single-page academic CV. Presents your education, experience, publications, and skills in a clear, professional layout that loads instantly.\&quot;,\n          card_description: \&quot;Minimal single-page academic CV with a clean, professional layout.\&quot;,\n          url: \&quot;/themes/researcher/\&quot;,\n          category: \&quot;Resume / CV\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://ankitsultana.com/researcher/\&quot;,\n          card_image: \&quot;/assets/images/themes/researcher-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;researcher\&quot;,\n        },\n        \n        {\n          title: \&quot;Reverie Jekyll Theme\&quot;,\n          description: \&quot;A ridiculously elegant, fully responsive Jekyll blog theme based on Poole. Supports categories, tags, Disqus comments, and Google Analytics.\&quot;,\n          card_description: \&quot;Elegantly responsive blog based on Poole with categories and tags.\&quot;,\n          url: \&quot;/themes/reverie/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://reverie.amitmerchant.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/reverie-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;reverie\&quot;,\n        },\n        \n        {\n          title: \&quot;Sandbox Jekyll Theme\&quot;,\n          description: \&quot;A massive multipurpose Jekyll theme with 27 home pages, 130+ ready-to-use blocks, and 250+ UI elements. Built with Bootstrap 5 and zero jQuery β€” perfect for startups, SaaS, agencies, portfolios, and eCommerce sites.\&quot;,\n          card_description: \&quot;Multipurpose theme β€” 27 homepages, 130+ blocks, 250+ UI elements, Bootstrap 5.\&quot;,\n          url: \&quot;/themes/sandbox/\&quot;,\n          category: \&quot;Business\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 99,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://sandbox.tortoizthemes.com/demo28/\&quot;,\n          card_image: \&quot;/assets/images/themes/sandbox-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://tortoizthemes.com/theme/sandbox/\&quot;,\n          author: \&quot;Tortoiz Themes\&quot;,\n          added_at: \&quot;2026-06-27\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: true,\n          trending: true,\n          slug: \&quot;sandbox\&quot;,\n        },\n        \n        {\n          title: \&quot;Scriptor Jekyll Theme\&quot;,\n          description: \&quot;A minimal, clean, and modern Jekyll theme for writers and bloggers. Elegant typography, featured images, and a distraction-free reading layout built for long-form content.\&quot;,\n          card_description: \&quot;Minimal, modern theme for writers with elegant typography.\&quot;,\n          url: \&quot;/themes/scriptor/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://scriptor-jekyll.netlify.app/\&quot;,\n          card_image: \&quot;/assets/images/themes/scriptor-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;scriptor\&quot;,\n        },\n        \n        {\n          title: \&quot;Serif Jekyll Theme\&quot;,\n          description: \&quot;A beautiful small business Jekyll theme by CloudCannon. Elegant serif typography, warm tones, and sections for services, team members, and contact.\&quot;,\n          card_description: \&quot;Beautiful small business theme with serif typography and service sections.\&quot;,\n          url: \&quot;/themes/serif/\&quot;,\n          category: \&quot;Business\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://serif.cloudcannon.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/serif-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-02-08\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;serif\&quot;,\n        },\n        \n        {\n          title: \&quot;Slate Jekyll Theme\&quot;,\n          description: \&quot;A bold, dark GitHub Pages Jekyll theme with prominent sidebar navigation and strong code styling. Official GitHub Pages theme for developer docs.\&quot;,\n          card_description: \&quot;Bold, dark GitHub Pages theme for developer docs with sidebar nav.\&quot;,\n          url: \&quot;/themes/slate/\&quot;,\n          category: \&quot;Documentation\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/slate/\&quot;,\n          card_image: \&quot;/assets/images/themes/slate-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;slate\&quot;,\n        },\n        \n        {\n          title: \&quot;Snowlake Jekyll Theme\&quot;,\n          description: \&quot;A versatile multipurpose Jekyll theme with 27 unique demos, 17 color schemes, 5 font options, Slider Revolution, and 4 icon sets with 2300+ icons. Built on Jekyll 4.3+ and Bootstrap 5 β€” ideal for businesses, agencies, SaaS, and creatives.\&quot;,\n          card_description: \&quot;Multipurpose theme β€” 27 demos, 17 color schemes, Slider Revolution, Bootstrap 5.\&quot;,\n          url: \&quot;/themes/snowlake/\&quot;,\n          category: \&quot;Business\&quot;,\n          price_type: \&quot;premium\&quot;,\n          price: 79,\n          featured: true,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://snowlake.tortoizthemes.com/\&quot;,\n          card_image: \&quot;/assets/images/themes/snowlake-card.webp\&quot;,\n          premium: false,\n          buy_url: \&quot;https://tortoizthemes.com/theme/snowlake-jekyll-theme/\&quot;,\n          author: \&quot;Tortoiz Themes\&quot;,\n          added_at: \&quot;2026-06-27\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;snowlake\&quot;,\n        },\n        \n        {\n          title: \&quot;So Simple Jekyll Theme\&quot;,\n          description: \&quot;A simple Jekyll theme for words and pictures. Clean reading layout with support for author profiles, social links, and Google Analytics.\&quot;,\n          card_description: \&quot;Simple theme for words and pictures with author profile support.\&quot;,\n          url: \&quot;/themes/so-simple/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://mmistakes.github.io/so-simple-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/so-simple-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-04-01\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: true,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;so-simple\&quot;,\n        },\n        \n        {\n          title: \&quot;Swiss Jekyll Theme\&quot;,\n          description: \&quot;A bold, typographic Jekyll theme inspired by International Swiss Style design. Strong grid, oversized headings, and a clean black-and-white palette that puts typography first.\&quot;,\n          card_description: \&quot;Bold, typographic theme inspired by Swiss International Style design.\&quot;,\n          url: \&quot;/themes/swiss/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://broccolini.net/swiss/\&quot;,\n          card_image: \&quot;/assets/images/themes/swiss-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;swiss\&quot;,\n        },\n        \n        {\n          title: \&quot;Tactile Jekyll Theme\&quot;,\n          description: \&quot;A textured, warm GitHub Pages Jekyll theme with a hand-crafted sidebar style. Official GitHub Pages theme with classic personality and charm.\&quot;,\n          card_description: \&quot;Textured, warm GitHub Pages theme with hand-crafted sidebar style.\&quot;,\n          url: \&quot;/themes/tactile/\&quot;,\n          category: \&quot;Personal\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://pages-themes.github.io/tactile/\&quot;,\n          card_image: \&quot;/assets/images/themes/tactile-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;tactile\&quot;,\n        },\n        \n        {\n          title: \&quot;Tale Jekyll Theme\&quot;,\n          description: \&quot;An minimal Jekyll theme focused on content. Elegant single-column layout with beautiful typography, clean post listings, and zero visual noise β€” perfect for long-form writing.\&quot;,\n          card_description: \&quot;Minimal, elegant single-column blog for long-form writing.\&quot;,\n          url: \&quot;/themes/tale/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://chesterhow.github.io/tale/\&quot;,\n          card_image: \&quot;/assets/images/themes/tale-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;tale\&quot;,\n        },\n        \n        {\n          title: \&quot;Type Theme Jekyll Theme\&quot;,\n          description: \&quot;A free, open-source theme for Jekyll focused purely on typography and reading. Minimal design, fast load times, and a beautifully simple blog layout for writers who mean business.\&quot;,\n          card_description: \&quot;Typography-focused minimal theme for writers who value clean reading.\&quot;,\n          url: \&quot;/themes/type-theme/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: false,\n          responsive: true,\n          demo_url: \&quot;https://rohanchandra.github.io/type-theme/\&quot;,\n          card_image: \&quot;/assets/images/themes/type-theme-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: false,\n          slug: \&quot;type-theme\&quot;,\n        },\n        \n        {\n          title: \&quot;YAT Jekyll Theme\&quot;,\n          description: \&quot;Yet Another Theme β€” a modern, flat-design Jekyll blog theme with night mode, multi-language support, and beautiful typography. Clean, fast, and elegant for writers and developers alike.\&quot;,\n          card_description: \&quot;Modern flat-design blog with night mode and multi-language support.\&quot;,\n          url: \&quot;/themes/yat/\&quot;,\n          category: \&quot;Blog\&quot;,\n          price_type: \&quot;free\&quot;,\n          price: null,\n          featured: false,\n          dark_mode: true,\n          responsive: true,\n          demo_url: \&quot;https://jeffreytse.github.io/jekyll-theme-yat/\&quot;,\n          card_image: \&quot;/assets/images/themes/yat-card.webp\&quot;,\n          premium: false,\n          buy_url: null,\n          author: \&quot;GitHub Community\&quot;,\n          added_at: \&quot;2026-06-07\&quot;,\n          discount_label: null,\n          discount_original_price: null,\n          popular: false,\n          bestseller: false,\n          trending: true,\n          slug: \&quot;yat\&quot;,\n        }\n        \n      ],\n      posts: [\n        \n        {\n          title: \&quot;Jekyll vs Gatsby: Which Static Site Generator Should You Choose in 2026?\&quot;,\n          excerpt: \&quot;Jekyll and Gatsby both produce fast, static websites β€” but they come from completely different worlds. Jekyll is a mature, Ruby-based generator built for sim...\&quot;,\n          url: \&quot;/comparison/2026/07/03/jekyll-vs-gatsby/\&quot;,\n          tags: [],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;July 3, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-gatsby.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Static Files and Assets: How to Manage Images, CSS, and JS\&quot;,\n          excerpt: \&quot;Jekyll processes some files (Markdown, Liquid templates, Sass) and copies others unchanged. Understanding which is which β€” and how to reference assets correc...\&quot;,\n          url: \&quot;/tutorial/2026/07/02/jekyll-static-files-assets/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;July 2, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-static-files-assets.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Drafts and Publishing Workflow: How to Manage Content\&quot;,\n          excerpt: \&quot;Jekyll gives you several ways to keep content out of your public site while you work on it: the _drafts/ folder, published: false front matter, and future-da...\&quot;,\n          url: \&quot;/tutorial/2026/07/01/jekyll-drafts-publishing-workflow/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;July 1, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-drafts-publishing-workflow.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Use Sass and SCSS with Jekyll (Complete Guide)\&quot;,\n          excerpt: \&quot;Jekyll has built-in Sass processing β€” no Node.js, no build tools, no webpack required. Write SCSS files, Jekyll compiles them to CSS automatically. This guid...\&quot;,\n          url: \&quot;/tutorial/2026/06/30/jekyll-sass-scss-guide/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 30, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-sass-scss-guide.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Permalinks and URL Structure: The Complete Guide\&quot;,\n          excerpt: \&quot;Jekyll gives you precise control over the URL structure of every page on your site. Understanding how permalinks work is important for clean URLs, SEO, and e...\&quot;,\n          url: \&quot;/tutorial/2026/06/29/jekyll-permalinks-url-structure/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 29, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-permalinks-url-structure.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Variables Reference: site, page, layout, and More\&quot;,\n          excerpt: \&quot;Jekyll makes a set of variables available in every template through Liquid. Knowing which variables exist and what they contain is essential for building and...\&quot;,\n          url: \&quot;/tutorial/2026/06/28/jekyll-variables-reference/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 28, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-variables-reference.webp\&quot;\n        },\n        \n        {\n          title: \&quot;What Makes a Good Jekyll Theme? (Checklist Before You Buy)\&quot;,\n          excerpt: \&quot;A Jekyll theme can look polished in a screenshot and be a nightmare to work with in practice. Bad themes have hard-coded values scattered across templates, S...\&quot;,\n          url: \&quot;/themes/2026/06/27/what-makes-a-good-jekyll-theme/\&quot;,\n          tags: [\&quot;jekyll themes\&quot;,\&quot;jekyll theme quality\&quot;,\&quot;best jekyll themes\&quot;,\&quot;premium jekyll themes\&quot;,\&quot;jekyll theme checklist\&quot;],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;June 27, 2026\&quot;,\n          image: \&quot;/assets/images/blog/what-makes-a-good-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Liquid Tags: The Complete Reference Guide\&quot;,\n          excerpt: \&quot;Liquid tags are the logic layer of Jekyll templates. Wrapped in {% %} delimiters, they control flow, create variables, loop over data, and embed content β€” wi...\&quot;,\n          url: \&quot;/tutorial/2026/06/26/jekyll-liquid-tags-reference/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 26, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-liquid-tags-reference.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Liquid Templating: A Beginner&apos;s Complete Guide\&quot;,\n          excerpt: \&quot;Liquid is the template language Jekyll uses to make HTML dynamic. It was created by Shopify and is also used in many other platforms. In Jekyll, Liquid lets ...\&quot;,\n          url: \&quot;/tutorial/2026/06/25/jekyll-liquid-templating-basics/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 25, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-liquid-templating-basics.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Directory Structure Explained: What Every File and Folder Does\&quot;,\n          excerpt: \&quot;When you first open a Jekyll project, the folder structure can look confusing. Underscores everywhere, a _site folder that appears after building, special fi...\&quot;,\n          url: \&quot;/tutorial/2026/06/24/jekyll-directory-structure/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 24, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-directory-structure.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Remote Themes: How to Use Any GitHub Theme Without Installing It\&quot;,\n          excerpt: \&quot;Remote themes are one of the most convenient ways to use a Jekyll theme β€” especially on GitHub Pages. Instead of installing a theme as a Ruby gem, you refere...\&quot;,\n          url: \&quot;/tutorial/2026/06/23/jekyll-remote-themes/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 23, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-remote-themes.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll _config.yml: The Complete Configuration Guide\&quot;,\n          excerpt: \&quot;_config.yml is the single most important file in a Jekyll project. It controls everything: your site’s URL, which plugins run, how collections are defined, w...\&quot;,\n          url: \&quot;/tutorial/2026/06/22/jekyll-config-yml-guide/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 22, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-config-yml-guide.webp\&quot;\n        },\n        \n        {\n          title: \&quot;10 Things to Check Before Installing a Jekyll Theme\&quot;,\n          excerpt: \&quot;Installing a Jekyll theme takes minutes. Undoing a bad choice takes hours. Before you run bundle install, it is worth spending ten minutes checking these ten...\&quot;,\n          url: \&quot;/themes/2026/06/21/jekyll-theme-checklist-before-installing/\&quot;,\n          tags: [\&quot;jekyll themes\&quot;,\&quot;jekyll theme checklist\&quot;,\&quot;install jekyll theme\&quot;,\&quot;jekyll theme quality\&quot;],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;June 21, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-theme-checklist-before-installing.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Includes vs Layouts: What&apos;s the Difference and When to Use Each\&quot;,\n          excerpt: \&quot;Jekyll has two ways to reuse HTML across your site: layouts and includes. Both reduce repetition, but they work differently and serve different purposes. Und...\&quot;,\n          url: \&quot;/tutorial/2026/06/20/jekyll-includes-vs-layouts/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 20, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-includes-vs-layouts.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Layouts Explained: How to Structure Your Site Templates\&quot;,\n          excerpt: \&quot;Layouts are Jekyll’s template system β€” reusable HTML wrappers that surround your content. Every page on your Jekyll site uses a layout, even if you have not ...\&quot;,\n          url: \&quot;/tutorial/2026/06/19/jekyll-layouts-explained/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 19, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-layouts-explained.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Front Matter: The Complete Guide\&quot;,\n          excerpt: \&quot;Front matter is how Jekyll knows what to do with a file. Without it, Jekyll treats a file as a static asset and copies it unchanged. With it, Jekyll processe...\&quot;,\n          url: \&quot;/tutorial/2026/06/18/jekyll-front-matter-guide/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 18, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-front-matter-guide.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Deploy a Jekyll Site to Firebase Hosting (2026 Guide)\&quot;,\n          excerpt: \&quot;Firebase Hosting is Google’s static hosting platform β€” part of the Firebase suite alongside Firestore, Auth, and Cloud Functions. For a Jekyll site, it offer...\&quot;,\n          url: \&quot;/tutorial/2026/06/17/deploy-jekyll-firebase/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 17, 2026\&quot;,\n          image: \&quot;/assets/images/blog/deploy-jekyll-firebase.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Deploy a Jekyll Site to AWS (S3 + CloudFront Guide)\&quot;,\n          excerpt: \&quot;Deploying a Jekyll site to AWS gives you enterprise-grade infrastructure with granular control over every aspect of your hosting. The standard setup combines...\&quot;,\n          url: \&quot;/tutorial/2026/06/16/deploy-jekyll-aws/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 16, 2026\&quot;,\n          image: \&quot;/assets/images/blog/deploy-jekyll-aws.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Pick the Perfect Jekyll Theme for Your Website\&quot;,\n          excerpt: \&quot;Picking a Jekyll theme feels simple until you are staring at hundreds of options and realise they all look good in the screenshots. The wrong choice means ho...\&quot;,\n          url: \&quot;/themes/2026/06/15/how-to-pick-jekyll-theme/\&quot;,\n          tags: [\&quot;jekyll themes\&quot;,\&quot;choose jekyll theme\&quot;,\&quot;jekyll theme guide\&quot;,\&quot;jekyll for beginners\&quot;],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;June 15, 2026\&quot;,\n          image: \&quot;/assets/images/blog/how-to-pick-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Deploy a Jekyll Site to Vercel (2026 Guide)\&quot;,\n          excerpt: \&quot;Vercel is best known as the home of Next.js, but it works equally well for Jekyll sites. Its build infrastructure is fast, the developer experience is polish...\&quot;,\n          url: \&quot;/tutorial/2026/06/14/deploy-jekyll-vercel/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 14, 2026\&quot;,\n          image: \&quot;/assets/images/blog/deploy-jekyll-vercel.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Deploy a Jekyll Site to Netlify (Complete 2026 Guide)\&quot;,\n          excerpt: \&quot;Netlify was the platform that made deploying static sites simple and it remains one of the best choices for Jekyll in 2026. Automatic deploys from Git, previ...\&quot;,\n          url: \&quot;/tutorial/2026/06/13/deploy-jekyll-netlify/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 13, 2026\&quot;,\n          image: \&quot;/assets/images/blog/deploy-jekyll-netlify.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Deploy a Jekyll Site to Cloudflare Pages (Step-by-Step Guide)\&quot;,\n          excerpt: \&quot;Cloudflare Pages is one of the best places to host a Jekyll site in 2026. It is free for unlimited sites, has 300+ CDN locations worldwide, deploys automatic...\&quot;,\n          url: \&quot;/tutorial/2026/06/12/deploy-jekyll-cloudflare-pages/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 12, 2026\&quot;,\n          image: \&quot;/assets/images/blog/deploy-jekyll-cloudflare-pages.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Grow Traffic to Your Jekyll Blog (A Practical Guide for 2026)\&quot;,\n          excerpt: \&quot;A Jekyll blog with zero visitors is just a collection of Markdown files. Getting consistent organic traffic requires deliberate effort β€” but it is not myster...\&quot;,\n          url: \&quot;/tutorial/2026/06/11/grow-jekyll-blog-traffic/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 11, 2026\&quot;,\n          image: \&quot;/assets/images/blog/grow-jekyll-blog-traffic.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Monetize a Jekyll Blog in 2026 (7 Strategies That Actually Work)\&quot;,\n          excerpt: \&quot;Jekyll is a static site β€” it has no built-in monetization features. But that does not mean you cannot make money from it. The absence of a CMS or plugin mark...\&quot;,\n          url: \&quot;/tutorial/2026/06/10/jekyll-blog-monetization/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 10, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-blog-monetization.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add a Custom 404 Page to Your Jekyll Site\&quot;,\n          excerpt: \&quot;A default 404 page is a dead end. A custom 404 page turns a broken link into an opportunity β€” pointing visitors to your most popular content, your search pag...\&quot;,\n          url: \&quot;/tutorial/2026/06/09/jekyll-custom-404-page/\&quot;,\n          tags: [\&quot;jekyll 404 page\&quot;,\&quot;custom 404 jekyll\&quot;,\&quot;jekyll error page\&quot;,\&quot;jekyll not found page\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 9, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-custom-404.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Using Jekyll for Open Source Project Documentation\&quot;,\n          excerpt: \&quot;Jekyll powers documentation for thousands of open source projects β€” Bootstrap, Jekyll itself, GitHub’s own docs, and hundreds of others. It is the natural ch...\&quot;,\n          url: \&quot;/tutorial/2026/06/08/jekyll-open-source-documentation/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 8, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-open-source-documentation.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Build a Resume or CV Website with Jekyll\&quot;,\n          excerpt: \&quot;An online resume or CV is one of the most valuable things a developer, designer, academic, or job seeker can have. A Jekyll-based CV gives you full control o...\&quot;,\n          url: \&quot;/tutorial/2026/06/07/jekyll-resume-cv-website/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 7, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-resume-cv-website.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Core Web Vitals for Jekyll Sites: A Practical Optimisation Guide (2026)\&quot;,\n          excerpt: \&quot;Jekyll sites start with an inherent performance advantage β€” no database, no server-side rendering, no PHP. But Core Web Vitals are not just about server spee...\&quot;,\n          url: \&quot;/tutorial/2026/06/06/jekyll-core-web-vitals/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 6, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-core-web-vitals.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll with a Headless CMS: Contentful, Sanity, and Decap Compared\&quot;,\n          excerpt: \&quot;Jekyll stores content as Markdown files β€” ideal for developers, frustrating for non-technical editors who want a visual dashboard. A headless CMS solves this...\&quot;,\n          url: \&quot;/tutorial/2026/06/05/jekyll-headless-cms/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 5, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-headless-cms.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add a CMS to Jekyll with Decap CMS (Formerly Netlify CMS)\&quot;,\n          excerpt: \&quot;Jekyll is code-first β€” posts are Markdown files, publishing means a Git commit. That’s great for developers but a barrier for non-technical collaborators. De...\&quot;,\n          url: \&quot;/tutorial/2026/06/04/jekyll-decap-cms/\&quot;,\n          tags: [\&quot;jekyll cms\&quot;,\&quot;decap cms jekyll\&quot;,\&quot;netlify cms jekyll\&quot;,\&quot;jekyll headless cms\&quot;,\&quot;jekyll admin panel\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 4, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-decap-cms.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Interactivity to Jekyll with Alpine.js\&quot;,\n          excerpt: \&quot;Jekyll produces static HTML β€” no JavaScript framework, no reactive state, just pages. That is a feature, not a bug. But sometimes you need a little interacti...\&quot;,\n          url: \&quot;/tutorial/2026/06/03/jekyll-alpine-js/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 3, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-alpine-js.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Use Tailwind CSS with Jekyll (2026 Guide)\&quot;,\n          excerpt: \&quot;Tailwind CSS and Jekyll are a natural combination β€” Tailwind’s utility-first approach works beautifully in Liquid templates, and the purging process eliminat...\&quot;,\n          url: \&quot;/tutorial/2026/06/02/jekyll-tailwind-css/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;June 2, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-tailwind-css.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs Webflow: Which Is Right for Your Website in 2026?\&quot;,\n          excerpt: \&quot;Jekyll and Webflow represent two very different approaches to building websites. Jekyll is a code-first static site generator. Webflow is a visual design too...\&quot;,\n          url: \&quot;/comparison/2026/06/01/jekyll-vs-webflow/\&quot;,\n          tags: [],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;June 1, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-webflow.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs Ghost: Which Platform Is Right for Your Blog in 2026?\&quot;,\n          excerpt: \&quot;Jekyll and Ghost are both popular choices for bloggers and writers, but they come from opposite ends of the web publishing spectrum. Jekyll is a static site ...\&quot;,\n          url: \&quot;/comparison/2026/05/31/jekyll-vs-ghost/\&quot;,\n          tags: [],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;May 31, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-ghost.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs Astro: Which Static Site Generator Should You Use in 2026?\&quot;,\n          excerpt: \&quot;Astro launched in 2021 and quickly became one of the most talked-about static site generators. Jekyll has been around since 2008 and remains one of the most ...\&quot;,\n          url: \&quot;/comparison/2026/05/30/jekyll-vs-astro/\&quot;,\n          tags: [],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;May 30, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-astro.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Accessibility Best Practices for Jekyll Themes (WCAG 2.2 Guide)\&quot;,\n          excerpt: \&quot;Accessibility is not a nice-to-have β€” it determines whether your content reaches everyone. An inaccessible Jekyll theme excludes users with visual, motor, an...\&quot;,\n          url: \&quot;/tutorial/2026/05/29/jekyll-accessibility-wcag/\&quot;,\n          tags: [\&quot;jekyll accessibility\&quot;,\&quot;wcag jekyll\&quot;,\&quot;accessible jekyll theme\&quot;,\&quot;jekyll aria\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 29, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-accessibility.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Sell a Jekyll Theme: A Complete Guide for Developers\&quot;,\n          excerpt: \&quot;Building a great Jekyll theme is one thing. Turning it into a product people will pay for is another. This guide covers everything β€” from what buyers expect ...\&quot;,\n          url: \&quot;/tutorial/2026/05/28/how-to-sell-jekyll-theme/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 28, 2026\&quot;,\n          image: \&quot;/assets/images/blog/how-to-sell-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Best Jekyll Themes for Writers and Bloggers in 2026\&quot;,\n          excerpt: \&quot;Writers have different needs from developers. You want beautiful typography, generous line spacing, a clean reading experience, and a design that makes your ...\&quot;,\n          url: \&quot;/themes/2026/05/27/jekyll-themes-for-writers/\&quot;,\n          tags: [],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;May 27, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-themes-for-writers.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Set Up a Multi-Author Jekyll Blog\&quot;,\n          excerpt: \&quot;Jekyll does not have user accounts or a login system, but it handles multiple authors elegantly using collections. You define each author as a data file or c...\&quot;,\n          url: \&quot;/tutorial/2026/05/26/jekyll-multi-author-blog/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 26, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-multi-author-blog.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Best Jekyll Themes for Small Business Websites in 2026\&quot;,\n          excerpt: \&quot;Jekyll is an excellent choice for small business websites. Pages load in milliseconds, hosting is free or nearly free, and there is no database to hack or Wo...\&quot;,\n          url: \&quot;/themes/2026/05/25/best-jekyll-themes-small-business/\&quot;,\n          tags: [],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;May 25, 2026\&quot;,\n          image: \&quot;/assets/images/blog/best-jekyll-themes-small-business.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add an Email Newsletter Signup to Your Jekyll Site\&quot;,\n          excerpt: \&quot;Building an email list is one of the highest-value things you can do for a content site β€” owned audience, no algorithm dependency. Jekyll doesn’t have a buil...\&quot;,\n          url: \&quot;/tutorial/2026/05/24/jekyll-newsletter-signup/\&quot;,\n          tags: [\&quot;jekyll newsletter\&quot;,\&quot;mailchimp jekyll\&quot;,\&quot;convertkit jekyll\&quot;,\&quot;jekyll email signup\&quot;,\&quot;static site newsletter\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 24, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-newsletter-signup.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll E-commerce with Snipcart: Add a Shopping Cart to Your Static Site\&quot;,\n          excerpt: \&quot;Jekyll is a static site generator β€” it does not have a database, a server, or a shopping cart. But that does not mean you cannot sell online. Snipcart is a J...\&quot;,\n          url: \&quot;/tutorial/2026/05/23/jekyll-ecommerce-snipcart/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 23, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-ecommerce-snipcart.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Environment Variables: The Complete Guide\&quot;,\n          excerpt: \&quot;Environment variables in Jekyll are simpler than you might expect β€” but also more limited than many developers assume coming from Node.js or Python. Here is ...\&quot;,\n          url: \&quot;/tutorial/2026/05/22/jekyll-environment-variables/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 22, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-environment-variables.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Liquid Filters: The Complete Cheatsheet (2026)\&quot;,\n          excerpt: \&quot;Liquid filters transform output in Jekyll templates. They are chained with the pipe character | and applied to variables, strings, numbers, arrays, and dates...\&quot;,\n          url: \&quot;/tutorial/2026/05/21/jekyll-liquid-filters-cheatsheet/\&quot;,\n          tags: [],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 21, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-liquid-filters-cheatsheet.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)\&quot;,\n          excerpt: \&quot;Minimal themes are the most popular category in the Jekyll ecosystem β€” and for good reason. A minimal design puts the focus on your content, loads in millise...\&quot;,\n          url: \&quot;/themes/2026/05/20/jekyll-minimal-themes/\&quot;,\n          tags: [],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;May 20, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-minimal-themes.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs Next.js: A Practical Comparison for 2026\&quot;,\n          excerpt: \&quot;Jekyll and Next.js are both capable of producing fast, statically-generated websites. But comparing them is a bit like comparing a bicycle to a car β€” they ar...\&quot;,\n          url: \&quot;/comparison/2026/05/19/jekyll-vs-nextjs/\&quot;,\n          tags: [],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;May 19, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-nextjs.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Set Up a Custom Domain for Your Jekyll Site\&quot;,\n          excerpt: \&quot;Getting your Jekyll site onto a custom domain takes about 10–30 minutes. The process is the same regardless of which registrar you use β€” you update DNS recor...\&quot;,\n          url: \&quot;/tutorial/2026/05/18/jekyll-custom-domain/\&quot;,\n          tags: [\&quot;jekyll custom domain\&quot;,\&quot;github pages custom domain\&quot;,\&quot;netlify custom domain\&quot;,\&quot;jekyll domain setup\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 18, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-custom-domain.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add a Table of Contents to Jekyll Posts\&quot;,\n          excerpt: \&quot;A table of contents helps readers navigate long posts and signals to Google that your content is structured and comprehensive. Jekyll has three ways to add o...\&quot;,\n          url: \&quot;/tutorial/2026/05/13/jekyll-table-of-contents/\&quot;,\n          tags: [\&quot;jekyll table of contents\&quot;,\&quot;jekyll toc\&quot;,\&quot;jekyll kramdown toc\&quot;,\&quot;jekyll post navigation\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 13, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-table-of-contents.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Data Files: The Complete Guide to _data\&quot;,\n          excerpt: \&quot;The _data folder is one of Jekyll’s most underused features. It lets you store structured content β€” navigation menus, team members, FAQs, pricing tables, soc...\&quot;,\n          url: \&quot;/tutorial/2026/05/07/jekyll-data-files/\&quot;,\n          tags: [\&quot;jekyll data files\&quot;,\&quot;jekyll _data\&quot;,\&quot;jekyll yaml\&quot;,\&quot;jekyll liquid data\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;May 7, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-data-files.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs WordPress: Should You Switch in 2026?\&quot;,\n          excerpt: \&quot;WordPress powers 43% of the web. Jekyll powers a fraction of that. So why would anyone switch? For the right kind of site, Jekyll is dramatically better β€” fa...\&quot;,\n          url: \&quot;/comparison/2026/05/02/jekyll-vs-wordpress/\&quot;,\n          tags: [\&quot;jekyll vs wordpress\&quot;,\&quot;switch wordpress to jekyll\&quot;,\&quot;wordpress alternative\&quot;,\&quot;static site vs wordpress\&quot;],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;May 2, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-wordpress.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add a Contact Form to Your Jekyll Site\&quot;,\n          excerpt: \&quot;Jekyll generates static HTML β€” there’s no server-side code to process form submissions. But you don’t need one. Three services handle form submissions for st...\&quot;,\n          url: \&quot;/tutorial/2026/04/26/jekyll-contact-form/\&quot;,\n          tags: [\&quot;jekyll contact form\&quot;,\&quot;formspree jekyll\&quot;,\&quot;netlify forms jekyll\&quot;,\&quot;static site contact form\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;April 26, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-contact-form.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Google Analytics to Your Jekyll Site\&quot;,\n          excerpt: \&quot;Adding Google Analytics to Jekyll takes about 5 minutes. This guide covers Google Analytics 4 (GA4), the only version Google currently supports, plus tips fo...\&quot;,\n          url: \&quot;/tutorial/2026/04/21/add-google-analytics-jekyll/\&quot;,\n          tags: [\&quot;jekyll google analytics\&quot;,\&quot;google analytics 4 jekyll\&quot;,\&quot;jekyll analytics\&quot;,\&quot;jekyll tracking\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;April 21, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-google-analytics.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Hosting Comparison: GitHub Pages vs Netlify vs Cloudflare Pages vs Vercel\&quot;,\n          excerpt: \&quot;Choosing where to host your Jekyll site is one of the first decisions you’ll make β€” and all four major platforms are free for personal projects. The differen...\&quot;,\n          url: \&quot;/tutorial/2026/04/15/jekyll-hosting-comparison/\&quot;,\n          tags: [\&quot;jekyll hosting\&quot;,\&quot;github pages vs netlify\&quot;,\&quot;cloudflare pages jekyll\&quot;,\&quot;vercel jekyll\&quot;,\&quot;static site hosting\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;April 15, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-hosting-comparison.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Migrate from WordPress to Jekyll Without Losing SEO\&quot;,\n          excerpt: \&quot;Migrating from WordPress to Jekyll can destroy your search rankings if done carelessly β€” or preserve them completely if done right. The difference is almost ...\&quot;,\n          url: \&quot;/tutorial/2026/04/10/migrate-wordpress-to-jekyll-seo/\&quot;,\n          tags: [\&quot;wordpress to jekyll\&quot;,\&quot;migrate without losing seo\&quot;,\&quot;jekyll seo migration\&quot;,\&quot;301 redirects jekyll\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;April 10, 2026\&quot;,\n          image: \&quot;/assets/images/blog/migrate-wordpress-jekyll-seo.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Create Dynamic Navigation and Smart Sidebars in Jekyll\&quot;,\n          excerpt: \&quot;Hard-coded navigation and static sidebars are the first thing that makes a Jekyll theme feel unpolished. This guide covers building dynamic navigation driven...\&quot;,\n          url: \&quot;/tutorial/2026/04/05/jekyll-navigation-sidebars/\&quot;,\n          tags: [\&quot;jekyll navigation\&quot;,\&quot;jekyll sidebar\&quot;,\&quot;jekyll menu\&quot;,\&quot;jekyll liquid\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;April 5, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-navigation-sidebars.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Theme Architecture: Best Practices for Clean &amp; Scalable Code\&quot;,\n          excerpt: \&quot;Most Jekyll sites start as a quick setup and slowly become hard to maintain β€” styles scattered across files, layouts duplicating logic, includes tangled with...\&quot;,\n          url: \&quot;/tutorial/2026/03/30/jekyll-theme-architecture/\&quot;,\n          tags: [\&quot;jekyll theme development\&quot;,\&quot;jekyll architecture\&quot;,\&quot;jekyll best practices\&quot;,\&quot;jekyll sass structure\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;March 30, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-theme-architecture.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Build a Jekyll Theme from Scratch\&quot;,\n          excerpt: \&quot;Building a Jekyll theme from scratch is the fastest way to deeply understand Jekyll β€” and it’s more achievable than it sounds. This guide walks through build...\&quot;,\n          url: \&quot;/tutorial/2026/03/25/build-jekyll-theme-from-scratch/\&quot;,\n          tags: [\&quot;jekyll theme development\&quot;,\&quot;create jekyll theme\&quot;,\&quot;jekyll gem theme\&quot;,\&quot;build jekyll theme\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;March 25, 2026\&quot;,\n          image: \&quot;/assets/images/blog/build-jekyll-theme-scratch.webp\&quot;\n        },\n        \n        {\n          title: \&quot;25 Best Jekyll Themes for Blogs and Portfolios in 2026\&quot;,\n          excerpt: \&quot;Looking for a Jekyll theme in 2026? There are thousands on GitHub, but most are outdated, poorly maintained, or just not that good. This list covers the 25 b...\&quot;,\n          url: \&quot;/themes/2026/03/19/best-jekyll-themes-blogs-portfolios/\&quot;,\n          tags: [\&quot;best jekyll themes\&quot;,\&quot;jekyll blog themes\&quot;,\&quot;jekyll portfolio themes\&quot;,\&quot;jekyll themes 2026\&quot;],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;March 19, 2026\&quot;,\n          image: \&quot;/assets/images/blog/best-jekyll-themes-2026.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs Hugo vs Eleventy: Which Static Site Generator in 2026?\&quot;,\n          excerpt: \&quot;Jekyll, Hugo, and Eleventy are the three most popular static site generators in 2026. They all produce fast, secure static sites β€” but they make very differe...\&quot;,\n          url: \&quot;/comparison/2026/03/14/jekyll-vs-hugo-eleventy/\&quot;,\n          tags: [\&quot;jekyll vs hugo\&quot;,\&quot;jekyll vs eleventy\&quot;,\&quot;static site generators 2026\&quot;,\&quot;best static site generator\&quot;],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;March 14, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-hugo-vs-eleventy.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Build a Portfolio Website with Jekyll\&quot;,\n          excerpt: \&quot;A Jekyll portfolio site is fast, free to host, and lives in a GitHub repository β€” which itself signals professionalism to employers and clients. This guide c...\&quot;,\n          url: \&quot;/tutorial/2026/03/08/jekyll-portfolio-website/\&quot;,\n          tags: [\&quot;jekyll portfolio\&quot;,\&quot;portfolio website jekyll\&quot;,\&quot;jekyll developer portfolio\&quot;,\&quot;github pages portfolio\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;March 8, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-portfolio.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Convert an HTML Template to a Jekyll Theme\&quot;,\n          excerpt: \&quot;You have an HTML template you like β€” clean design, good structure β€” but you want to run it as a Jekyll site so you can write in Markdown and deploy to GitHub...\&quot;,\n          url: \&quot;/tutorial/2026/03/03/convert-html-to-jekyll-theme/\&quot;,\n          tags: [\&quot;jekyll theme development\&quot;,\&quot;html to jekyll\&quot;,\&quot;create jekyll theme\&quot;,\&quot;jekyll tutorial\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;March 3, 2026\&quot;,\n          image: \&quot;/assets/images/blog/convert-html-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Auto-Generate Tag and Category Pages in Jekyll\&quot;,\n          excerpt: \&quot;If you click a tag on most Jekyll blogs, you get a 404. That’s because Jekyll doesn’t generate tag or category pages by default. The jekyll-archives plugin f...\&quot;,\n          url: \&quot;/tutorial/2026/02/25/jekyll-tag-category-pages/\&quot;,\n          tags: [\&quot;jekyll tags\&quot;,\&quot;jekyll categories\&quot;,\&quot;jekyll archives\&quot;,\&quot;jekyll tag pages\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;February 25, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-tag-category-pages.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Schema Markup to Your Jekyll Site\&quot;,\n          excerpt: \&quot;Schema markup tells search engines what your content is about β€” not just the words, but the type of content. It can earn your site rich snippets in Google’s ...\&quot;,\n          url: \&quot;/seo/2026/02/20/jekyll-schema-markup/\&quot;,\n          tags: [\&quot;jekyll schema markup\&quot;,\&quot;json-ld jekyll\&quot;,\&quot;structured data jekyll\&quot;,\&quot;jekyll rich snippets\&quot;],\n          category: \&quot;SEO\&quot;,\n          date: \&quot;February 20, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-schema-markup.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Make Your Jekyll Site Load Under 1 Second\&quot;,\n          excerpt: \&quot;Jekyll sites are inherently fast β€” there’s no PHP, no database, no server-side rendering. But β€œfast” isn’t automatic. Poor image handling, unminified CSS, an...\&quot;,\n          url: \&quot;/tutorial/2026/02/14/jekyll-performance/\&quot;,\n          tags: [\&quot;jekyll performance\&quot;,\&quot;jekyll speed\&quot;,\&quot;static site performance\&quot;,\&quot;core web vitals jekyll\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;February 14, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-performance.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Pagination to Your Jekyll Blog\&quot;,\n          excerpt: \&quot;By default, Jekyll lists all your posts on a single page. Once you have 20+ posts, that page becomes slow and hard to navigate. Pagination splits posts acros...\&quot;,\n          url: \&quot;/tutorial/2026/02/09/jekyll-pagination/\&quot;,\n          tags: [\&quot;jekyll pagination\&quot;,\&quot;jekyll paginate\&quot;,\&quot;jekyll blog pagination\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;February 9, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-pagination.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Collections: The Complete Guide\&quot;,\n          excerpt: \&quot;Collections are one of Jekyll’s most powerful features β€” and one of the most underused. They let you create custom content types beyond posts and pages: prod...\&quot;,\n          url: \&quot;/tutorial/2026/02/04/jekyll-collections-guide/\&quot;,\n          tags: [\&quot;jekyll collections\&quot;,\&quot;jekyll custom content types\&quot;,\&quot;jekyll _config.yml\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;February 4, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-collections.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Search to a Jekyll Site (Lunr.js vs Algolia)\&quot;,\n          excerpt: \&quot;Jekyll doesn’t include search out of the box β€” but adding it is simpler than you might think. This guide covers the two best options: Lunr.js for a free, no-...\&quot;,\n          url: \&quot;/tutorial/2026/01/29/add-search-jekyll/\&quot;,\n          tags: [\&quot;jekyll search\&quot;,\&quot;lunr.js jekyll\&quot;,\&quot;algolia jekyll\&quot;,\&quot;static site search\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;January 29, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-search.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Automate Jekyll Builds with GitHub Actions\&quot;,\n          excerpt: \&quot;GitHub Actions can build, test, and deploy your Jekyll site automatically on every push. This guide covers everything from the basic setup to advanced workfl...\&quot;,\n          url: \&quot;/tutorial/2026/01/24/jekyll-github-actions/\&quot;,\n          tags: [\&quot;jekyll github actions\&quot;,\&quot;jekyll ci cd\&quot;,\&quot;github actions jekyll\&quot;,\&quot;jekyll deployment\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;January 24, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-github-actions.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Build a Documentation Site with Jekyll\&quot;,\n          excerpt: \&quot;Jekyll is one of the best tools for documentation sites. The result is fast, searchable, version-controllable, and free to host. This guide walks through bui...\&quot;,\n          url: \&quot;/tutorial/2026/01/18/jekyll-documentation-site/\&quot;,\n          tags: [\&quot;jekyll documentation\&quot;,\&quot;jekyll docs site\&quot;,\&quot;just the docs\&quot;,\&quot;static documentation\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;January 18, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-documentation-site.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Comments to Jekyll: Disqus vs Giscus vs Utterances\&quot;,\n          excerpt: \&quot;Jekyll doesn’t have a built-in comment system β€” it’s a static site generator. But you have three solid options that work well with static sites. Here’s how e...\&quot;,\n          url: \&quot;/tutorial/2026/01/13/add-comments-jekyll/\&quot;,\n          tags: [\&quot;jekyll comments\&quot;,\&quot;giscus jekyll\&quot;,\&quot;disqus jekyll\&quot;,\&quot;utterances jekyll\&quot;,\&quot;static site comments\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;January 13, 2026\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-comments.webp\&quot;\n        },\n        \n        {\n          title: \&quot;15 Must-Have Jekyll Plugins for 2026\&quot;,\n          excerpt: \&quot;Jekyll’s plugin ecosystem is smaller than WordPress’s, but it has everything you need. These 15 plugins cover SEO, performance, content management, and quali...\&quot;,\n          url: \&quot;/tutorial/2026/01/07/must-have-jekyll-plugins/\&quot;,\n          tags: [\&quot;jekyll plugins\&quot;,\&quot;best jekyll plugins\&quot;,\&quot;jekyll seo tag\&quot;,\&quot;jekyll sitemap\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;January 7, 2026\&quot;,\n          image: \&quot;/assets/images/blog/must-have-jekyll-plugins.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Add Dark Mode to Your Jekyll Site\&quot;,\n          excerpt: \&quot;Dark mode is no longer optional β€” it’s expected. This guide shows you how to add a proper dark mode toggle to any Jekyll site, with the user’s preference sav...\&quot;,\n          url: \&quot;/tutorial/2026/01/02/add-dark-mode-jekyll/\&quot;,\n          tags: [\&quot;jekyll dark mode\&quot;,\&quot;dark mode toggle\&quot;,\&quot;css dark mode\&quot;,\&quot;jekyll tutorial\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;January 2, 2026\&quot;,\n          image: \&quot;/assets/images/blog/add-dark-mode-jekyll.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Deploy Jekyll to GitHub Pages in 10 Minutes\&quot;,\n          excerpt: \&quot;GitHub Pages is the fastest way to get a Jekyll site online β€” and it’s completely free. This guide gets you from zero to a live site in 10 minutes.\\n\\n\&quot;,\n          url: \&quot;/tutorial/2025/12/27/deploy-jekyll-github-pages/\&quot;,\n          tags: [\&quot;deploy jekyll github pages\&quot;,\&quot;jekyll github pages\&quot;,\&quot;github pages tutorial\&quot;,\&quot;jekyll hosting\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;December 27, 2025\&quot;,\n          image: \&quot;/assets/images/blog/deploy-jekyll-github-pages.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Free vs Premium Jekyll Themes: What&apos;s Actually Worth Paying For?\&quot;,\n          excerpt: \&quot;There are thousands of free Jekyll themes on GitHub. So why would anyone pay for one? The honest answer: it depends on what you need. This post breaks down w...\&quot;,\n          url: \&quot;/themes/2025/12/22/free-vs-premium-jekyll-themes/\&quot;,\n          tags: [\&quot;free jekyll themes\&quot;,\&quot;premium jekyll themes\&quot;,\&quot;jekyll theme comparison\&quot;,\&quot;buy jekyll theme\&quot;],\n          category: \&quot;Themes\&quot;,\n          date: \&quot;December 22, 2025\&quot;,\n          image: \&quot;/assets/images/blog/free-vs-premium-jekyll-themes.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll SEO Guide: How to Rank Higher on Google\&quot;,\n          excerpt: \&quot;Jekyll gives you a significant SEO head start over WordPress β€” no bloated plugins, no slow database queries, and near-perfect Core Web Vitals out of the box....\&quot;,\n          url: \&quot;/seo/2025/12/16/jekyll-seo-guide/\&quot;,\n          tags: [\&quot;jekyll seo\&quot;,\&quot;seo for jekyll\&quot;,\&quot;jekyll meta tags\&quot;,\&quot;jekyll sitemap\&quot;,\&quot;static site seo\&quot;],\n          category: \&quot;SEO\&quot;,\n          date: \&quot;December 16, 2025\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-seo-guide.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Migrate from WordPress to Jekyll (Complete Guide)\&quot;,\n          excerpt: \&quot;Moving from WordPress to Jekyll is one of the most common migrations in the static site world β€” and for good reason. Jekyll sites are faster, cheaper to host...\&quot;,\n          url: \&quot;/tutorial/2025/12/11/migrate-wordpress-to-jekyll/\&quot;,\n          tags: [\&quot;wordpress to jekyll\&quot;,\&quot;migrate wordpress jekyll\&quot;,\&quot;jekyll migration\&quot;,\&quot;static site migration\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;December 11, 2025\&quot;,\n          image: \&quot;/assets/images/blog/migrate-wordpress-to-jekyll.webp\&quot;\n        },\n        \n        {\n          title: \&quot;25 Common Jekyll Errors and How to Fix Them Fast\&quot;,\n          excerpt: \&quot;Jekyll errors can stop your build dead in its tracks. Whether you are setting up for the first time or have been running Jekyll for years, these errors show ...\&quot;,\n          url: \&quot;/tutorial/2025/12/05/common-jekyll-errors/\&quot;,\n          tags: [\&quot;jekyll errors\&quot;,\&quot;jekyll troubleshooting\&quot;,\&quot;jekyll build errors\&quot;,\&quot;jekyll fix\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;December 5, 2025\&quot;,\n          image: \&quot;/assets/images/blog/common-jekyll-errors.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Theme Setup Tutorial: Complete Walkthrough (2026)\&quot;,\n          excerpt: \&quot;This tutorial walks you through the complete process of setting up a Jekyll theme β€” from a blank machine to a fully configured, live website. No prior Jekyll...\&quot;,\n          url: \&quot;/tutorial/2025/11/30/jekyll-theme-setup-tutorial/\&quot;,\n          tags: [\&quot;jekyll theme setup\&quot;,\&quot;jekyll tutorial\&quot;,\&quot;jekyll configuration\&quot;,\&quot;github pages\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;November 30, 2025\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-theme-setup-tutorial.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Blog Setup Guide: From Zero to Live in 30 Minutes (2026)\&quot;,\n          excerpt: \&quot;Jekyll is the most popular static site generator for personal blogs β€” and for good reason. It’s free to host on GitHub Pages, blazing fast, and once set up, ...\&quot;,\n          url: \&quot;/tutorial/2025/11/25/jekyll-blog-setup-guide/\&quot;,\n          tags: [\&quot;jekyll blog\&quot;,\&quot;jekyll setup\&quot;,\&quot;github pages\&quot;,\&quot;beginner guide\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;November 25, 2025\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-blog-setup-guide.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Best Jekyll Themes for a Portfolio Website (2026)\&quot;,\n          excerpt: \&quot;A portfolio is one of the best use cases for Jekyll. Static files load instantly, hosting is free on GitHub Pages, and the result looks as good as any dynami...\&quot;,\n          url: \&quot;/roundup/2025/11/19/jekyll-theme-portfolio-website/\&quot;,\n          tags: [\&quot;jekyll portfolio theme\&quot;,\&quot;portfolio website\&quot;,\&quot;jekyll themes\&quot;,\&quot;developer portfolio\&quot;],\n          category: \&quot;Roundup\&quot;,\n          date: \&quot;November 19, 2025\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-portfolio-themes.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll vs Hugo: Full Comparison for 2026 (Themes, Speed, Hosting)\&quot;,\n          excerpt: \&quot;Jekyll and Hugo are the two most popular static site generators. Both produce fast, secure static websites β€” but they approach it differently. This compariso...\&quot;,\n          url: \&quot;/comparison/2025/11/14/jekyll-vs-hugo-themes/\&quot;,\n          tags: [\&quot;jekyll vs hugo\&quot;,\&quot;static site generators\&quot;,\&quot;jekyll themes\&quot;,\&quot;hugo themes\&quot;,\&quot;github pages\&quot;],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;November 14, 2025\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-hugo-themes.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Best Static Site Themes in 2026 (Jekyll, Hugo &amp; Eleventy)\&quot;,\n          excerpt: \&quot;Static site generators have matured into a serious alternative to WordPress and other CMS platforms. Jekyll, Hugo, and Eleventy each have strong theme ecosys...\&quot;,\n          url: \&quot;/roundup/2025/11/08/best-static-site-themes/\&quot;,\n          tags: [\&quot;static site themes\&quot;,\&quot;best jekyll themes\&quot;,\&quot;hugo themes\&quot;,\&quot;eleventy themes\&quot;],\n          category: \&quot;Roundup\&quot;,\n          date: \&quot;November 8, 2025\&quot;,\n          image: \&quot;/assets/images/blog/best-static-site-themes.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Jekyll Theme vs WordPress Theme: Which Should You Choose in 2026?\&quot;,\n          excerpt: \&quot;Choosing between Jekyll and WordPress is one of the most common decisions developers and bloggers face. Both power millions of websites β€” but they are fundam...\&quot;,\n          url: \&quot;/comparison/2025/11/03/jekyll-theme-vs-wordpress-theme/\&quot;,\n          tags: [\&quot;jekyll vs wordpress\&quot;,\&quot;static site vs cms\&quot;,\&quot;jekyll theme\&quot;,\&quot;wordpress theme\&quot;],\n          category: \&quot;Comparison\&quot;,\n          date: \&quot;November 3, 2025\&quot;,\n          image: \&quot;/assets/images/blog/jekyll-vs-wordpress.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Change Your Jekyll Theme (Without Losing Content)\&quot;,\n          excerpt: \&quot;Changing a Jekyll theme is straightforward if you follow the right steps. The key is understanding what belongs to the theme and what belongs to your content...\&quot;,\n          url: \&quot;/tutorial/2025/10/28/how-to-change-jekyll-theme/\&quot;,\n          tags: [\&quot;change jekyll theme\&quot;,\&quot;switch jekyll theme\&quot;,\&quot;jekyll migration\&quot;,\&quot;tutorial\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;October 28, 2025\&quot;,\n          image: \&quot;/assets/images/blog/how-to-change-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;GitHub Pages Jekyll Theme: Complete Setup Guide (2026)\&quot;,\n          excerpt: \&quot;GitHub Pages is the most popular way to host a Jekyll site β€” it’s free, integrates directly with your repository, and rebuilds automatically on every push. T...\&quot;,\n          url: \&quot;/tutorial/2025/10/23/github-pages-jekyll-theme/\&quot;,\n          tags: [\&quot;github pages\&quot;,\&quot;jekyll theme\&quot;,\&quot;github pages jekyll\&quot;,\&quot;tutorial\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;October 23, 2025\&quot;,\n          image: \&quot;/assets/images/blog/github-pages-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Customize a Jekyll Theme (Complete Guide 2026)\&quot;,\n          excerpt: \&quot;Customizing a Jekyll theme doesn’t mean editing the theme files directly β€” that approach breaks every time you update the theme. The right way is to use Jeky...\&quot;,\n          url: \&quot;/tutorial/2025/10/17/how-to-customize-jekyll-theme/\&quot;,\n          tags: [\&quot;customize jekyll theme\&quot;,\&quot;jekyll scss\&quot;,\&quot;jekyll layouts\&quot;,\&quot;tutorial\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;October 17, 2025\&quot;,\n          image: \&quot;/assets/images/blog/how-to-customize-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;How to Install a Jekyll Theme (Step-by-Step Guide for 2026)\&quot;,\n          excerpt: \&quot;Installing a Jekyll theme is one of the first things you will do when building a static site. Whether you are using GitHub Pages, a local Jekyll setup, or de...\&quot;,\n          url: \&quot;/tutorial/2025/10/12/how-to-install-jekyll-theme/\&quot;,\n          tags: [\&quot;install jekyll theme\&quot;,\&quot;jekyll setup\&quot;,\&quot;github pages\&quot;,\&quot;tutorial\&quot;],\n          category: \&quot;Tutorial\&quot;,\n          date: \&quot;October 12, 2025\&quot;,\n          image: \&quot;/assets/images/blog/how-to-install-jekyll-theme.webp\&quot;\n        },\n        \n        {\n          title: \&quot;Best Free Jekyll Themes for GitHub Pages (2026)\&quot;,\n          excerpt: \&quot;GitHub Pages is the easiest way to host a Jekyll site β€” free, reliable, and zero configuration. The catch is that it only supports a whitelist of plugins and...\&quot;,\n          url: \&quot;/blog/2025/10/06/free-jekyll-themes-github-pages/\&quot;,\n          tags: [\&quot;free jekyll themes\&quot;,\&quot;github pages\&quot;,\&quot;open source\&quot;],\n          category: \&quot;Blog\&quot;,\n          date: \&quot;October 6, 2025\&quot;,\n          image: \&quot;/assets/images/blog/free-jekyll-themes-github-pages.webp\&quot;\n        },\n        \n        {\n          title: \&quot;35 Best Jekyll Themes for 2026 (Free + Premium)\&quot;,\n          excerpt: \&quot;Jekyll remains one of the most reliable static site generators in 2026 β€” fast, GitHub Pages native, and backed by a thriving theme ecosystem. Whether you are...\&quot;,\n          url: \&quot;/blog/2025/10/01/best-jekyll-themes-2026/\&quot;,\n          tags: [\&quot;jekyll themes\&quot;,\&quot;best themes\&quot;,\&quot;free themes\&quot;,\&quot;premium themes\&quot;],\n          category: \&quot;Blog\&quot;,\n          date: \&quot;October 1, 2025\&quot;,\n          image: \&quot;/assets/images/blog/best-jekyll-themes-2026.webp\&quot;\n        }\n        \n      ],\n      testimonials: [\n        \n        {\n          name:   \&quot;Sarah Reynolds\&quot;,\n          role:   \&quot;Freelance Developer\&quot;,\n          rating: 5,\n          quote:  \&quot;Found the perfect portfolio theme in minutes. Clean code, well documented, and looks stunning out of the box. Saved me days of work.\&quot;\n        },\n        \n        {\n          name:   \&quot;Marcus Thornton\&quot;,\n          role:   \&quot;Full-Stack Engineer\&quot;,\n          rating: 5,\n          quote:  \&quot;Switched from WordPress and couldn&apos;t be happier. The themes here are modern, fast, and actually work with Jekyll without hacks.\&quot;\n        },\n        \n        {\n          name:   \&quot;James Kowalski\&quot;,\n          role:   \&quot;Open Source Maintainer\&quot;,\n          rating: 5,\n          quote:  \&quot;The documentation theme I picked made my open source project look incredibly professional. My users noticed the difference immediately.\&quot;\n        },\n        \n        {\n          name:   \&quot;Aisha Langford\&quot;,\n          role:   \&quot;Technical Writer\&quot;,\n          rating: 4.5,\n          quote:  \&quot;Great selection of blog themes. I launched my personal blog in an afternoon β€” setup was painless and the design is exactly what I wanted.\&quot;\n        },\n        \n        {\n          name:   \&quot;David Carver\&quot;,\n          role:   \&quot;Product Designer\&quot;,\n          rating: 4,\n          quote:  \&quot;Really impressed by the quality. The premium theme I bought had more features than themes costing 3Γ— the price on other marketplaces.\&quot;\n        },\n        \n        {\n          name:   \&quot;Nina Patel\&quot;,\n          role:   \&quot;UX Designer\&quot;,\n          rating: 5,\n          quote:  \&quot;Finally a Jekyll marketplace that takes design seriously. Every theme looks hand-crafted, not like a generic template with the colours swapped.\&quot;\n        },\n        \n        {\n          name:   \&quot;Tom Whitfield\&quot;,\n          role:   \&quot;Indie Hacker\&quot;,\n          rating: 5,\n          quote:  \&quot;Launched my SaaS landing page using a JekyllHub theme. Got compliments on the design before I even launched the product.\&quot;\n        },\n        \n        {\n          name:   \&quot;Elena Marchetti\&quot;,\n          role:   \&quot;Academic Researcher\&quot;,\n          rating: 4.5,\n          quote:  \&quot;The academic theme I found here is exactly what my lab website needed β€” clean, fast, and easy for non-technical colleagues to update.\&quot;\n        },\n        \n        {\n          name:   \&quot;Ryan Summers\&quot;,\n          role:   \&quot;Backend Developer\&quot;,\n          rating: 4.5,\n          quote:  \&quot;I&apos;m not a designer but my site looks like I am. The theme was drop-in ready and the customisation was straightforward.\&quot;\n        }\n        \n      ]\n    };\n  &lt;/script&gt;\n\n    &lt;main id=\&quot;main-content\&quot;&gt;\n    &lt;div class=\&quot;read-progress\&quot; id=\&quot;read-progress\&quot;&gt;&lt;/div&gt;\n\n&lt;article class=\&quot;post\&quot; itemscope itemtype=\&quot;https://schema.org/BlogPosting\&quot;&gt;\n\n  &lt;header class=\&quot;post-hero\&quot;&gt;\n    &lt;div class=\&quot;container\&quot;&gt;\n      &lt;div class=\&quot;post-hero__breadcrumb\&quot;&gt;\n        &lt;a href=\&quot;/\&quot;&gt;Home&lt;/a&gt;\n        &lt;span class=\&quot;breadcrumb-sep\&quot;&gt;β€Ί&lt;/span&gt;\n        &lt;a href=\&quot;/blog/\&quot;&gt;Blog&lt;/a&gt;\n        &lt;span class=\&quot;breadcrumb-sep\&quot;&gt;β€Ί&lt;/span&gt;\n        &lt;span&gt;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)&lt;/span&gt;\n      &lt;/div&gt;\n\n      &lt;div class=\&quot;post-hero__inner\&quot;&gt;\n        \n        &lt;span class=\&quot;post-hero__cat\&quot;&gt;Themes&lt;/span&gt;\n        \n\n        &lt;h1 class=\&quot;post-hero__title\&quot; itemprop=\&quot;name\&quot;&gt;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)&lt;/h1&gt;\n\n        \n        &lt;p class=\&quot;post-hero__desc\&quot; itemprop=\&quot;description\&quot;&gt;The best minimal Jekyll themes for blogs, portfolios, and personal sites β€” clean typography, fast load times, and zero visual clutter.&lt;/p&gt;\n        \n\n        &lt;div class=\&quot;post-hero__meta\&quot;&gt;\n          &lt;span class=\&quot;post-meta-item\&quot;&gt;\n            &lt;svg width=\&quot;15\&quot; height=\&quot;15\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M8 7V3m8 4V3m-9 8h10M5 21h14a2 2 0 002-2V7a2 2 0 00-2-2H5a2 2 0 00-2 2v12a2 2 0 002 2z\&quot;/&gt;&lt;/svg&gt;\n            Updated &lt;time itemprop=\&quot;dateModified\&quot; datetime=\&quot;2026-07-05T00:00:00+00:00\&quot;&gt;July 5, 2026&lt;/time&gt;\n          &lt;/span&gt;\n\n          &lt;span class=\&quot;post-meta-item\&quot;&gt;\n            &lt;svg width=\&quot;15\&quot; height=\&quot;15\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M12 8v4l3 3m6-3a9 9 0 11-18 0 9 9 0 0118 0z\&quot;/&gt;&lt;/svg&gt;\n            4 min read\n          &lt;/span&gt;\n        &lt;/div&gt;\n      &lt;/div&gt;\n    &lt;/div&gt;\n  &lt;/header&gt;\n\n  \n  &lt;div class=\&quot;post-cover\&quot;&gt;\n    &lt;div class=\&quot;container\&quot;&gt;\n      &lt;img src=\&quot;/assets/images/blog/jekyll-minimal-themes.webp\&quot; alt=\&quot;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)\&quot; class=\&quot;post-cover__img\&quot; itemprop=\&quot;image\&quot;&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n  \n\n  &lt;div class=\&quot;container\&quot;&gt;\n    &lt;div class=\&quot;post-body\&quot;&gt;\n      &lt;div class=\&quot;post-body__main\&quot;&gt;\n        \n        &lt;div class=\&quot;post-toc\&quot; id=\&quot;post-toc\&quot; data-collapsed=\&quot;false\&quot; style=\&quot;display:none\&quot;&gt;\n          &lt;button class=\&quot;post-toc__label\&quot; id=\&quot;toc-toggle\&quot; aria-expanded=\&quot;false\&quot; aria-controls=\&quot;toc-body\&quot;&gt;\n            &lt;span class=\&quot;post-toc__label-left\&quot;&gt;\n              &lt;svg width=\&quot;14\&quot; height=\&quot;14\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M4 6h16M4 10h16M4 14h10\&quot;/&gt;&lt;/svg&gt;\n              Table of Contents\n            &lt;/span&gt;\n            &lt;svg class=\&quot;post-toc__chevron\&quot; width=\&quot;14\&quot; height=\&quot;14\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M19 9l-7 7-7-7\&quot;/&gt;&lt;/svg&gt;\n          &lt;/button&gt;\n          &lt;nav id=\&quot;toc-body\&quot; class=\&quot;toc\&quot;&gt;&lt;/nav&gt;\n        &lt;/div&gt;\n        \n\n        &lt;div class=\&quot;prose\&quot; itemprop=\&quot;articleBody\&quot;&gt;\n          &lt;p&gt;Minimal themes are the most popular category in the Jekyll ecosystem β€” and for good reason. A minimal design puts the focus on your content, loads in milliseconds, and never goes out of style. Here are the best minimal Jekyll themes in 2026.&lt;/p&gt;\n\n&lt;h2 id=\&quot;what-makes-a-theme-truly-minimal\&quot;&gt;What makes a theme truly minimal?&lt;/h2&gt;\n\n&lt;p&gt;A minimal Jekyll theme is not just a theme with less CSS. The best ones share a few key characteristics:&lt;/p&gt;\n\n&lt;ul&gt;\n  &lt;li&gt;&lt;strong&gt;Typography-first&lt;/strong&gt; β€” the reading experience is the design&lt;/li&gt;\n  &lt;li&gt;&lt;strong&gt;No unnecessary widgets&lt;/strong&gt; β€” no popups, cookie banners, social share floods, or autoplay anything&lt;/li&gt;\n  &lt;li&gt;&lt;strong&gt;Fast by default&lt;/strong&gt; β€” no large hero images, no heavy JavaScript frameworks&lt;/li&gt;\n  &lt;li&gt;&lt;strong&gt;Easy to customise&lt;/strong&gt; β€” minimal markup means less to override&lt;/li&gt;\n  &lt;li&gt;&lt;strong&gt;Responsive&lt;/strong&gt; β€” works perfectly on mobile without a complex grid system&lt;/li&gt;\n&lt;/ul&gt;\n\n&lt;h2 id=\&quot;best-free-minimal-jekyll-themes\&quot;&gt;Best free minimal Jekyll themes&lt;/h2&gt;\n\n&lt;h3 id=\&quot;minima\&quot;&gt;Minima&lt;/h3&gt;\n\n&lt;p&gt;The default Jekyll theme and arguably the most used Jekyll theme in existence. Minima ships with every new Jekyll install. It is bare-bones by design: clean typography, a simple nav, an archive list, and not much else.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; Getting started, technical blogs, personal sites where content is everything.&lt;br /&gt;\n&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href=\&quot;https://github.com/jekyll/minima\&quot;&gt;jekyll/minima&lt;/a&gt; β€” 3,000+ stars&lt;/p&gt;\n\n&lt;h3 id=\&quot;klise\&quot;&gt;Klise&lt;/h3&gt;\n\n&lt;p&gt;Klise is a minimal, high contrast Jekyll theme with dark mode support. It focuses entirely on readability β€” clean sans-serif type, generous line height, and a subtle dark/light toggle. No hero, no sidebar, no decorative elements.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; Developer blogs, writing-focused sites.&lt;br /&gt;\n&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href=\&quot;https://github.com/piharpi/jekyll-klise\&quot;&gt;piharpi/jekyll-klise&lt;/a&gt; β€” 800+ stars&lt;/p&gt;\n\n&lt;h3 id=\&quot;chirpy\&quot;&gt;Chirpy&lt;/h3&gt;\n\n&lt;p&gt;Chirpy is minimal but feature-complete. It adds a left sidebar with categories and tags, a table of contents that follows the reader, and dark mode β€” all without visual noise. The design is calm and professional.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; Technical blogs that need categories and navigation without sacrificing simplicity.&lt;br /&gt;\n&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href=\&quot;https://github.com/cotes2020/jekyll-theme-chirpy\&quot;&gt;cotes2020/jekyll-theme-chirpy&lt;/a&gt; β€” 8,000+ stars&lt;/p&gt;\n\n&lt;h3 id=\&quot;no-style-please\&quot;&gt;No Style Please!&lt;/h3&gt;\n\n&lt;p&gt;Exactly what the name says. This theme applies almost no CSS β€” content renders in the browser’s default styles. Intentionally ugly, intentionally fast. Popular in the indie web and β€œsmall web” communities.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; Experimental sites, writers who want the ultimate zero-distraction canvas.&lt;br /&gt;\n&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href=\&quot;https://github.com/riggraz/no-style-please\&quot;&gt;riggraz/no-style-please&lt;/a&gt; β€” 800+ stars&lt;/p&gt;\n\n&lt;h3 id=\&quot;so-simple\&quot;&gt;So Simple&lt;/h3&gt;\n\n&lt;p&gt;A simple-is-better theme with a single-column layout, large readable type, and support for author profiles. The name is accurate. It is maintained by Michael Rose, who also built the excellent Minimal Mistakes theme.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; Personal sites, writing portfolios, minimalist blogs.&lt;/p&gt;\n\n&lt;h3 id=\&quot;researcher\&quot;&gt;Researcher&lt;/h3&gt;\n\n&lt;p&gt;Researcher is built for academic and research professionals who want a clean, no-frills presence online. It outputs a single-page site with sections for bio, publications, and projects. Nothing more.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; Academics, PhD students, researchers, scientists.&lt;br /&gt;\n&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href=\&quot;https://github.com/ankitsultana/researcher\&quot;&gt;ankitsultana/researcher&lt;/a&gt;&lt;/p&gt;\n\n&lt;h2 id=\&quot;what-to-look-for-when-choosing-a-minimal-theme\&quot;&gt;What to look for when choosing a minimal theme&lt;/h2&gt;\n\n&lt;p&gt;&lt;strong&gt;Typography:&lt;/strong&gt; Check the font pairing, line height, and measure (line length). The ideal measure for body text is 50–75 characters per line. If the theme stretches text full-width on desktop, skip it.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Dark mode:&lt;/strong&gt; In 2026, dark mode is expected. Look for themes with a clean system-respecting dark mode rather than a garish inverted palette.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Performance:&lt;/strong&gt; Open the theme’s demo in PageSpeed Insights. A good minimal theme should score 95+ on mobile without any optimisation from you.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Front matter support:&lt;/strong&gt; Check what fields the theme supports: &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;description&lt;/code&gt;, &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;image&lt;/code&gt;, &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;author&lt;/code&gt;, &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;toc&lt;/code&gt;. Themes that support rich front matter give you more flexibility as your site grows.&lt;/p&gt;\n\n&lt;h2 id=\&quot;premium-minimal-options\&quot;&gt;Premium minimal options&lt;/h2&gt;\n\n&lt;p&gt;Free minimal themes are excellent, but if you want something more refined β€” custom typography, polished dark mode, better SEO defaults, and actual support β€” a premium theme is worth considering.&lt;/p&gt;\n\n&lt;p&gt;Browse &lt;a href=\&quot;/themes/?category=Blog\&quot;&gt;minimal Jekyll themes on JekyllHub&lt;/a&gt; to compare free and premium options side by side.&lt;/p&gt;\n\n&lt;h2 id=\&quot;the-right-amount-of-minimal\&quot;&gt;The right amount of minimal&lt;/h2&gt;\n\n&lt;p&gt;β€œMinimal” is not the same as β€œunfinished.” The best minimal themes are the result of careful design decisions β€” every element has a reason to be there, and everything unnecessary has been removed. They are not lazy; they are deliberate.&lt;/p&gt;\n\n&lt;p&gt;When you find the right one, you will spend your time writing. That is the point.&lt;/p&gt;\n\n        &lt;/div&gt;\n\n        \n        &lt;div class=\&quot;post-tags\&quot;&gt;\n          \n        &lt;/div&gt;\n        \n\n        &lt;div class=\&quot;post-share\&quot;&gt;\n          &lt;span class=\&quot;post-share__label\&quot;&gt;Share&lt;/span&gt;\n          &lt;a href=\&quot;https://twitter.com/intent/tweet?url=https%3A%2F%2Fjekyllhub.com%2Fthemes%2F2026%2F05%2F20%2Fjekyll-minimal-themes%2F&amp;text=Best+Minimal+Jekyll+Themes+in+2026+%28Clean%2C+Fast%2C+Distraction-Free%29\&quot; target=\&quot;_blank\&quot; rel=\&quot;noopener\&quot; class=\&quot;post-share__btn post-share__btn--twitter\&quot;&gt;\n            &lt;svg width=\&quot;14\&quot; height=\&quot;14\&quot; viewBox=\&quot;0 0 24 24\&quot; fill=\&quot;currentColor\&quot;&gt;&lt;path d=\&quot;M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-4.714-6.231-5.401 6.231H2.746l7.73-8.835L1.254 2.25H8.08l4.253 5.622zm-1.161 17.52h1.833L7.084 4.126H5.117z\&quot;/&gt;&lt;/svg&gt;\n            X / Twitter\n          &lt;/a&gt;\n          &lt;a href=\&quot;https://www.linkedin.com/shareArticle?mini=true&amp;url=https%3A%2F%2Fjekyllhub.com%2Fthemes%2F2026%2F05%2F20%2Fjekyll-minimal-themes%2F&amp;title=Best+Minimal+Jekyll+Themes+in+2026+%28Clean%2C+Fast%2C+Distraction-Free%29\&quot; target=\&quot;_blank\&quot; rel=\&quot;noopener\&quot; class=\&quot;post-share__btn post-share__btn--linkedin\&quot;&gt;\n            &lt;svg width=\&quot;14\&quot; height=\&quot;14\&quot; viewBox=\&quot;0 0 24 24\&quot; fill=\&quot;currentColor\&quot;&gt;&lt;path d=\&quot;M20.447 20.452h-3.554v-5.569c0-1.328-.027-3.037-1.852-3.037-1.853 0-2.136 1.445-2.136 2.939v5.667H9.351V9h3.414v1.561h.046c.477-.9 1.637-1.85 3.37-1.85 3.601 0 4.267 2.37 4.267 5.455v6.286zM5.337 7.433a2.062 2.062 0 01-2.063-2.065 2.064 2.064 0 112.063 2.065zm1.782 13.019H3.555V9h3.564v11.452zM22.225 0H1.771C.792 0 0 .774 0 1.729v20.542C0 23.227.792 24 1.771 24h20.451C23.2 24 24 23.227 24 22.271V1.729C24 .774 23.2 0 22.222 0h.003z\&quot;/&gt;&lt;/svg&gt;\n            LinkedIn\n          &lt;/a&gt;\n          &lt;button class=\&quot;post-share__btn post-share__btn--copy\&quot; onclick=\&quot;JekyllHub.copyPostLink(this)\&quot;&gt;\n            &lt;svg width=\&quot;14\&quot; height=\&quot;14\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M8 16H6a2 2 0 01-2-2V6a2 2 0 012-2h8a2 2 0 012 2v2m-6 12h8a2 2 0 002-2v-8a2 2 0 00-2-2h-8a2 2 0 00-2 2v8a2 2 0 002 2z\&quot;/&gt;&lt;/svg&gt;\n            &lt;span&gt;Copy Link&lt;/span&gt;\n          &lt;/button&gt;\n        &lt;/div&gt;\n\n        \n\n        &lt;nav class=\&quot;post-nav\&quot; aria-label=\&quot;Post navigation\&quot;&gt;\n          &lt;div class=\&quot;post-nav__prev\&quot;&gt;\n            \n            &lt;a href=\&quot;/comparison/2026/05/19/jekyll-vs-nextjs/\&quot; class=\&quot;post-nav__link\&quot;&gt;\n              &lt;span class=\&quot;post-nav__label\&quot;&gt;← Previous&lt;/span&gt;\n              &lt;span class=\&quot;post-nav__title\&quot;&gt;Jekyll vs Next.js: A Practical Comparison for 2026&lt;/span&gt;\n            &lt;/a&gt;\n            \n          &lt;/div&gt;\n          &lt;div class=\&quot;post-nav__center\&quot;&gt;\n            &lt;a href=\&quot;/blog/\&quot; class=\&quot;btn btn--secondary btn--sm\&quot;&gt;All Posts&lt;/a&gt;\n          &lt;/div&gt;\n          &lt;div class=\&quot;post-nav__next\&quot;&gt;\n            \n            &lt;a href=\&quot;/tutorial/2026/05/21/jekyll-liquid-filters-cheatsheet/\&quot; class=\&quot;post-nav__link post-nav__link--next\&quot;&gt;\n              &lt;span class=\&quot;post-nav__label\&quot;&gt;Next β†’&lt;/span&gt;\n              &lt;span class=\&quot;post-nav__title\&quot;&gt;Jekyll Liquid Filters: The Complete Cheatsheet (2026)&lt;/span&gt;\n            &lt;/a&gt;\n            \n          &lt;/div&gt;\n        &lt;/nav&gt;\n      &lt;/div&gt;\n\n      &lt;aside class=\&quot;post-body__sidebar\&quot;&gt;\n        &lt;div class=\&quot;sidebar-card\&quot;&gt;\n          &lt;h3 class=\&quot;sidebar-card__title\&quot;&gt;Browse Themes&lt;/h3&gt;\n          &lt;ul class=\&quot;post-sidebar__links\&quot;&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-academic-themes/\&quot;&gt;πŸŽ“ Academic Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-blog-themes/\&quot;&gt;✍️ Blog Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-business-themes/\&quot;&gt;πŸ’Ό Business Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-documentation-themes/\&quot;&gt;πŸ“š Documentation Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-e-commerce-themes/\&quot;&gt;πŸ›’ E-commerce Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-landing-page-themes/\&quot;&gt;πŸš€ Landing Page Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-personal-themes/\&quot;&gt;πŸ‘€ Personal Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-portfolio-themes/\&quot;&gt;🎨 Portfolio Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-resume-cv-themes/\&quot;&gt;πŸ“„ Resume/CV Themes&lt;/a&gt;&lt;/li&gt;\n            \n            &lt;li&gt;&lt;a href=\&quot;/jekyll-github-pages-themes/\&quot;&gt;&lt;svg width=\&quot;14\&quot; height=\&quot;14\&quot; viewBox=\&quot;0 0 24 24\&quot; fill=\&quot;currentColor\&quot; style=\&quot;display:inline;vertical-align:middle;margin-right:4px\&quot;&gt;&lt;path d=\&quot;M12 0C5.374 0 0 5.373 0 12c0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.834 2.807 1.304 3.492.997.107-.775.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23A11.509 11.509 0 0 1 12 5.803c1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576C20.566 21.797 24 17.3 24 12c0-6.627-5.373-12-12-12z\&quot;/&gt;&lt;/svg&gt;GitHub Pages Themes&lt;/a&gt;&lt;/li&gt;\n          &lt;/ul&gt;\n          &lt;a href=\&quot;/themes/\&quot; class=\&quot;btn btn--primary btn--full\&quot; style=\&quot;margin-top:var(--space-5)\&quot;&gt;Browse All Themes β†’&lt;/a&gt;\n        &lt;/div&gt;\n\n        &lt;div class=\&quot;sidebar-card\&quot; style=\&quot;margin-top:var(--space-6)\&quot;&gt;\n          &lt;h3 class=\&quot;sidebar-card__title\&quot;&gt;Submit Your Theme&lt;/h3&gt;\n          &lt;p style=\&quot;font-size:0.875rem;color:var(--text-3);line-height:1.6;margin-bottom:var(--space-4)\&quot;&gt;Built a Jekyll theme? Share it with thousands of developers.&lt;/p&gt;\n          &lt;a href=\&quot;/submit/\&quot; class=\&quot;btn btn--secondary btn--full\&quot;&gt;Submit a Theme β†’&lt;/a&gt;\n        &lt;/div&gt;\n      &lt;/aside&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n\n  &lt;!-- Related Themes β€” rendered by JS from SITE_DATA, shuffled per page load --&gt;\n\n  \n\n  \n  &lt;section class=\&quot;post-related-themes\&quot; style=\&quot;display:none\&quot;&gt;\n    &lt;div class=\&quot;container\&quot;&gt;\n      &lt;h2 class=\&quot;post-related-themes__title\&quot;&gt;Themes You Might Like&lt;/h2&gt;\n      &lt;div class=\&quot;themes-grid themes-grid--4\&quot; id=\&quot;post-related-themes-grid\&quot;\n           data-tags=\&quot;[]\&quot;\n           data-related-category=\&quot;Blog\&quot;&gt;&lt;/div&gt;\n    &lt;/div&gt;\n  &lt;/section&gt;\n  \n\n&lt;/article&gt;\n\n&lt;!-- Back to top --&gt;\n&lt;button class=\&quot;back-to-top\&quot; id=\&quot;back-to-top\&quot; aria-label=\&quot;Back to top\&quot; onclick=\&quot;window.scrollTo({top:0,behavior:&apos;smooth&apos;})\&quot;&gt;\n  &lt;svg fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n    &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2.5\&quot; d=\&quot;M5 15l7-7 7 7\&quot;/&gt;\n  &lt;/svg&gt;\n&lt;/button&gt;\n&lt;script src=\&quot;/assets/js/post.js\&quot; defer&gt;&lt;/script&gt;\n\n  &lt;/main&gt;\n\n  &lt;footer class=\&quot;footer\&quot;&gt;\n  &lt;div class=\&quot;container\&quot;&gt;\n    &lt;div class=\&quot;footer__grid\&quot;&gt;\n      &lt;!-- Brand --&gt;\n      &lt;div class=\&quot;footer__brand\&quot;&gt;\n        &lt;a href=\&quot;/\&quot; class=\&quot;footer__logo\&quot;&gt;\n          &lt;svg width=\&quot;28\&quot; height=\&quot;28\&quot; viewBox=\&quot;0 0 32 32\&quot; fill=\&quot;none\&quot;&gt;\n            &lt;rect width=\&quot;32\&quot; height=\&quot;32\&quot; rx=\&quot;9\&quot; fill=\&quot;#2563EB\&quot;/&gt;\n            &lt;path d=\&quot;M19 8h-6v1h5v10c0 2.2-1.8 4-4 4s-4-1.8-4-4v-1H9v1c0 2.76 2.24 5 5 5s5-2.24 5-5V8z\&quot; fill=\&quot;white\&quot;/&gt;\n            &lt;circle cx=\&quot;23\&quot; cy=\&quot;9\&quot; r=\&quot;2.5\&quot; fill=\&quot;#F0C94B\&quot;/&gt;\n          &lt;/svg&gt;\n          Jekyll&lt;span style=\&quot;color:var(--color-brand)\&quot;&gt;Hub&lt;/span&gt;\n        &lt;/a&gt;\n        &lt;p class=\&quot;footer__tagline\&quot;&gt;The premier marketplace for Jekyll themes. Build something beautiful.&lt;/p&gt;\n        &lt;div class=\&quot;footer__social\&quot;&gt;\n          &lt;a href=\&quot;https://github.com/jekyllhub\&quot; target=\&quot;_blank\&quot; rel=\&quot;noopener\&quot; aria-label=\&quot;GitHub\&quot;&gt;\n            &lt;svg width=\&quot;18\&quot; height=\&quot;18\&quot; fill=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot; aria-hidden=\&quot;true\&quot;&gt;&lt;path d=\&quot;M12 2C6.477 2 2 6.484 2 12.017c0 4.425 2.865 8.18 6.839 9.504.5.092.682-.217.682-.483 0-.237-.008-.868-.013-1.703-2.782.605-3.369-1.343-3.369-1.343-.454-1.158-1.11-1.466-1.11-1.466-.908-.62.069-.608.069-.608 1.003.07 1.531 1.032 1.531 1.032.892 1.53 2.341 1.088 2.91.832.092-.647.35-1.088.636-1.338-2.22-.253-4.555-1.113-4.555-4.951 0-1.093.39-1.988 1.029-2.688-.103-.253-.446-1.272.098-2.65 0 0 .84-.27 2.75 1.026A9.564 9.564 0 0112 6.844c.85.004 1.705.115 2.504.337 1.909-1.296 2.747-1.027 2.747-1.027.546 1.379.202 2.398.1 2.651.64.7 1.028 1.595 1.028 2.688 0 3.848-2.339 4.695-4.566 4.943.359.309.678.92.678 1.855 0 1.338-.012 2.419-.012 2.747 0 .268.18.58.688.482A10.019 10.019 0 0022 12.017C22 6.484 17.522 2 12 2z\&quot;/&gt;&lt;/svg&gt;\n\n          &lt;/a&gt;\n          &lt;a href=\&quot;https://twitter.com/jekyllhub\&quot; target=\&quot;_blank\&quot; rel=\&quot;noopener\&quot; aria-label=\&quot;Twitter\&quot;&gt;\n            &lt;svg width=\&quot;18\&quot; height=\&quot;18\&quot; fill=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path d=\&quot;M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.835L1.254 2.25H8.08l4.713 6.231zm-1.161 17.52h1.833L7.084 4.126H5.117z\&quot;/&gt;&lt;/svg&gt;\n          &lt;/a&gt;\n          &lt;a href=\&quot;/feed.xml\&quot; aria-label=\&quot;RSS Feed\&quot;&gt;\n            &lt;svg width=\&quot;18\&quot; height=\&quot;18\&quot; fill=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;&lt;path d=\&quot;M6.18 15.64a2.18 2.18 0 0 1 2.18 2.18C8.36 19.01 7.38 20 6.18 20C4.98 20 4 19.01 4 17.82a2.18 2.18 0 0 1 2.18-2.18M4 4.44A15.56 15.56 0 0 1 19.56 20h-2.83A12.73 12.73 0 0 0 4 7.27V4.44m0 5.66a9.9 9.9 0 0 1 9.9 9.9h-2.83A7.07 7.07 0 0 0 4 12.93V10.1z\&quot;/&gt;&lt;/svg&gt;\n          &lt;/a&gt;\n        &lt;/div&gt;\n      &lt;/div&gt;\n\n      &lt;!-- Explore --&gt;\n      &lt;div class=\&quot;footer__col\&quot;&gt;\n        &lt;h3 class=\&quot;footer__heading\&quot;&gt;Explore&lt;/h3&gt;\n        &lt;ul class=\&quot;footer__links\&quot; role=\&quot;list\&quot;&gt;\n          &lt;li&gt;&lt;a href=\&quot;/themes/\&quot;&gt;All Themes&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/themes/?price=premium\&quot;&gt;Premium Themes&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/themes/?price=free\&quot;&gt;Free Themes&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/themes/?sort=newest\&quot;&gt;Newest&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/themes/?sort=updated\&quot;&gt;Recently Updated&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/themes/?featured=true\&quot;&gt;Featured&lt;/a&gt;&lt;/li&gt;\n        &lt;/ul&gt;\n      &lt;/div&gt;\n\n      &lt;!-- Categories --&gt;\n      &lt;div class=\&quot;footer__col\&quot;&gt;\n        &lt;h3 class=\&quot;footer__heading\&quot;&gt;Categories&lt;/h3&gt;\n        &lt;ul class=\&quot;footer__links\&quot; role=\&quot;list\&quot;&gt;\n          \n          &lt;li&gt;&lt;a href=\&quot;/jekyll-academic-themes/\&quot;&gt;Academic&lt;/a&gt;&lt;/li&gt;\n          \n          &lt;li&gt;&lt;a href=\&quot;/jekyll-blog-themes/\&quot;&gt;Blog&lt;/a&gt;&lt;/li&gt;\n          \n          &lt;li&gt;&lt;a href=\&quot;/jekyll-business-themes/\&quot;&gt;Business&lt;/a&gt;&lt;/li&gt;\n          \n          &lt;li&gt;&lt;a href=\&quot;/jekyll-documentation-themes/\&quot;&gt;Documentation&lt;/a&gt;&lt;/li&gt;\n          \n          &lt;li&gt;&lt;a href=\&quot;/jekyll-e-commerce-themes/\&quot;&gt;E-commerce&lt;/a&gt;&lt;/li&gt;\n          \n          &lt;li&gt;&lt;a href=\&quot;/jekyll-github-pages-themes/\&quot;&gt;GitHub Pages Themes&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/categories/\&quot;&gt;View all β†’&lt;/a&gt;&lt;/li&gt;\n        &lt;/ul&gt;\n      &lt;/div&gt;\n\n      &lt;!-- Resources --&gt;\n      &lt;div class=\&quot;footer__col\&quot;&gt;\n        &lt;h3 class=\&quot;footer__heading\&quot;&gt;Learn&lt;/h3&gt;\n        &lt;ul class=\&quot;footer__links\&quot; role=\&quot;list\&quot;&gt;\n          &lt;li&gt;&lt;a href=\&quot;/jekyll-resources/\&quot;&gt;Jekyll Resources&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/installation/\&quot;&gt;Installation Guide&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/submit/\&quot;&gt;Submit a Theme&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;https://jekyllrb.com\&quot; target=\&quot;_blank\&quot; rel=\&quot;noopener\&quot;&gt;Jekyll Docs&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/faq/\&quot;&gt;FAQ&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/authors/\&quot;&gt;Authors&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/about/\&quot;&gt;About&lt;/a&gt;&lt;/li&gt;\n          &lt;li&gt;&lt;a href=\&quot;/contact/\&quot;&gt;Contact&lt;/a&gt;&lt;/li&gt;\n        &lt;/ul&gt;\n      &lt;/div&gt;\n    &lt;/div&gt;\n\n    &lt;div class=\&quot;footer__bottom\&quot;&gt;\n      &lt;p class=\&quot;footer__copy\&quot;&gt;Β© 2026 JekyllHub. Built with ❀️ and &lt;a href=\&quot;https://jekyllrb.com\&quot; target=\&quot;_blank\&quot; rel=\&quot;noopener\&quot;&gt;Jekyll&lt;/a&gt;.&lt;/p&gt;\n      &lt;div class=\&quot;footer__legal\&quot;&gt;\n        &lt;a href=\&quot;/privacy/\&quot;&gt;Privacy&lt;/a&gt;\n        &lt;a href=\&quot;/terms/\&quot;&gt;Terms&lt;/a&gt;\n        &lt;a href=\&quot;/refunds/\&quot;&gt;Refunds&lt;/a&gt;\n        &lt;a href=\&quot;/sitemap.xml\&quot;&gt;Sitemap&lt;/a&gt;\n      &lt;/div&gt;\n    &lt;/div&gt;\n  &lt;/div&gt;\n&lt;/footer&gt;\n\n\n  &lt;!-- Alpine.js β€” pinned to 3.13.5 for stability (handles mobile nav toggle) --&gt;\n  &lt;script defer src=\&quot;https://unpkg.com/alpinejs@3.13.5/dist/cdn.min.js\&quot;&gt;&lt;/script&gt;\n\n  &lt;!-- Main JS --&gt;\n  &lt;script src=\&quot;/assets/js/main.js\&quot;&gt;&lt;/script&gt;\n\n  &lt;!-- Page-specific scripts --&gt;\n  \n&lt;/body&gt;\n&lt;/html&gt;\n&quot;,
    &quot;content&quot;: &quot;&lt;p&gt;Minimal themes are the most popular category in the Jekyll ecosystem β€” and for good reason. A minimal design puts the focus on your content, loads in milliseconds, and never goes out of style. Here are the best minimal Jekyll themes in 2026.&lt;/p&gt;\n\n&lt;h2 id=\&quot;what-makes-a-theme-truly-minimal\&quot;&gt;What makes a theme truly minimal?&lt;/h2&gt;\n\n&lt;p&gt;A minimal Jekyll theme is not just a theme with less CSS. The best ones share a few key characteristics:&lt;/p&gt;\n\n&lt;ul&gt;\n  &lt;li&gt;&lt;strong&gt;Typography-first&lt;/strong&gt; β€” the reading experience is the design&lt;/li&gt;\n  &lt;li&gt;&lt;strong&gt;No unnecessary widgets&lt;/strong&gt; β€” no popups, cookie banners, social share floods, or autoplay anything&lt;/li&gt;\n  &lt;li&gt;&lt;strong&gt;Fast by default&lt;/strong&gt; β€” no large hero images, no heavy JavaScript frameworks&lt;/li&gt;\n  &lt;li&gt;&lt;strong&gt;Easy to customise&lt;/strong&gt; β€” minimal markup means less to override&lt;/li&gt;\n  &lt;li&gt;&lt;strong&gt;Responsive&lt;/strong&gt; β€” works perfectly on mobile without a complex grid system&lt;/li&gt;\n&lt;/ul&gt;\n\n&lt;h2 id=\&quot;best-free-minimal-jekyll-themes\&quot;&gt;Best free minimal Jekyll themes&lt;/h2&gt;\n\n&lt;h3 id=\&quot;minima\&quot;&gt;Minima&lt;/h3&gt;\n\n&lt;p&gt;The default Jekyll theme and arguably the most used Jekyll theme in existence. Minima ships with every new Jekyll install. It is bare-bones by design: clean typography, a simple nav, an archive list, and not much else.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; Getting started, technical blogs, personal sites where content is everything.&lt;br /&gt;\n&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href=\&quot;https://github.com/jekyll/minima\&quot;&gt;jekyll/minima&lt;/a&gt; β€” 3,000+ stars&lt;/p&gt;\n\n&lt;h3 id=\&quot;klise\&quot;&gt;Klise&lt;/h3&gt;\n\n&lt;p&gt;Klise is a minimal, high contrast Jekyll theme with dark mode support. It focuses entirely on readability β€” clean sans-serif type, generous line height, and a subtle dark/light toggle. No hero, no sidebar, no decorative elements.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; Developer blogs, writing-focused sites.&lt;br /&gt;\n&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href=\&quot;https://github.com/piharpi/jekyll-klise\&quot;&gt;piharpi/jekyll-klise&lt;/a&gt; β€” 800+ stars&lt;/p&gt;\n\n&lt;h3 id=\&quot;chirpy\&quot;&gt;Chirpy&lt;/h3&gt;\n\n&lt;p&gt;Chirpy is minimal but feature-complete. It adds a left sidebar with categories and tags, a table of contents that follows the reader, and dark mode β€” all without visual noise. The design is calm and professional.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; Technical blogs that need categories and navigation without sacrificing simplicity.&lt;br /&gt;\n&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href=\&quot;https://github.com/cotes2020/jekyll-theme-chirpy\&quot;&gt;cotes2020/jekyll-theme-chirpy&lt;/a&gt; β€” 8,000+ stars&lt;/p&gt;\n\n&lt;h3 id=\&quot;no-style-please\&quot;&gt;No Style Please!&lt;/h3&gt;\n\n&lt;p&gt;Exactly what the name says. This theme applies almost no CSS β€” content renders in the browser’s default styles. Intentionally ugly, intentionally fast. Popular in the indie web and β€œsmall web” communities.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; Experimental sites, writers who want the ultimate zero-distraction canvas.&lt;br /&gt;\n&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href=\&quot;https://github.com/riggraz/no-style-please\&quot;&gt;riggraz/no-style-please&lt;/a&gt; β€” 800+ stars&lt;/p&gt;\n\n&lt;h3 id=\&quot;so-simple\&quot;&gt;So Simple&lt;/h3&gt;\n\n&lt;p&gt;A simple-is-better theme with a single-column layout, large readable type, and support for author profiles. The name is accurate. It is maintained by Michael Rose, who also built the excellent Minimal Mistakes theme.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; Personal sites, writing portfolios, minimalist blogs.&lt;/p&gt;\n\n&lt;h3 id=\&quot;researcher\&quot;&gt;Researcher&lt;/h3&gt;\n\n&lt;p&gt;Researcher is built for academic and research professionals who want a clean, no-frills presence online. It outputs a single-page site with sections for bio, publications, and projects. Nothing more.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Best for:&lt;/strong&gt; Academics, PhD students, researchers, scientists.&lt;br /&gt;\n&lt;strong&gt;GitHub:&lt;/strong&gt; &lt;a href=\&quot;https://github.com/ankitsultana/researcher\&quot;&gt;ankitsultana/researcher&lt;/a&gt;&lt;/p&gt;\n\n&lt;h2 id=\&quot;what-to-look-for-when-choosing-a-minimal-theme\&quot;&gt;What to look for when choosing a minimal theme&lt;/h2&gt;\n\n&lt;p&gt;&lt;strong&gt;Typography:&lt;/strong&gt; Check the font pairing, line height, and measure (line length). The ideal measure for body text is 50–75 characters per line. If the theme stretches text full-width on desktop, skip it.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Dark mode:&lt;/strong&gt; In 2026, dark mode is expected. Look for themes with a clean system-respecting dark mode rather than a garish inverted palette.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Performance:&lt;/strong&gt; Open the theme’s demo in PageSpeed Insights. A good minimal theme should score 95+ on mobile without any optimisation from you.&lt;/p&gt;\n\n&lt;p&gt;&lt;strong&gt;Front matter support:&lt;/strong&gt; Check what fields the theme supports: &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;description&lt;/code&gt;, &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;image&lt;/code&gt;, &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;author&lt;/code&gt;, &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;toc&lt;/code&gt;. Themes that support rich front matter give you more flexibility as your site grows.&lt;/p&gt;\n\n&lt;h2 id=\&quot;premium-minimal-options\&quot;&gt;Premium minimal options&lt;/h2&gt;\n\n&lt;p&gt;Free minimal themes are excellent, but if you want something more refined β€” custom typography, polished dark mode, better SEO defaults, and actual support β€” a premium theme is worth considering.&lt;/p&gt;\n\n&lt;p&gt;Browse &lt;a href=\&quot;/themes/?category=Blog\&quot;&gt;minimal Jekyll themes on JekyllHub&lt;/a&gt; to compare free and premium options side by side.&lt;/p&gt;\n\n&lt;h2 id=\&quot;the-right-amount-of-minimal\&quot;&gt;The right amount of minimal&lt;/h2&gt;\n\n&lt;p&gt;β€œMinimal” is not the same as β€œunfinished.” The best minimal themes are the result of careful design decisions β€” every element has a reason to be there, and everything unnecessary has been removed. They are not lazy; they are deliberate.&lt;/p&gt;\n\n&lt;p&gt;When you find the right one, you will spend your time writing. That is the point.&lt;/p&gt;\n&quot;,
    &quot;url&quot;: &quot;/themes/2026/05/20/jekyll-minimal-themes/&quot;,
    &quot;draft&quot;: false,
    &quot;categories&quot;: [
      &quot;Themes&quot;
    ],
    &quot;layout&quot;: &quot;post&quot;,
    &quot;title&quot;: &quot;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)&quot;,
    &quot;description&quot;: &quot;The best minimal Jekyll themes for blogs, portfolios, and personal sites β€” clean typography, fast load times, and zero visual clutter.&quot;,
    &quot;date&quot;: &quot;2026-05-20 00:00:00 +0000&quot;,
    &quot;last_modified_at&quot;: &quot;2026-07-05&quot;,
    &quot;image&quot;: &quot;/assets/images/blog/jekyll-minimal-themes.webp&quot;,
    &quot;author&quot;: &quot;Marcus Webb&quot;,
    &quot;category&quot;: &quot;Themes&quot;,
    &quot;featured&quot;: false,
    &quot;related_category&quot;: &quot;Blog&quot;,
    &quot;toc&quot;: true,
    &quot;slug&quot;: &quot;jekyll-minimal-themes&quot;,
    &quot;ext&quot;: &quot;.md&quot;,
    &quot;tags&quot;: [

    ]
  },
  &quot;id&quot;: &quot;/tutorial/2026/05/21/jekyll-liquid-filters-cheatsheet&quot;,
  &quot;collection&quot;: &quot;posts&quot;,
  &quot;next&quot;: {
    &quot;path&quot;: &quot;_posts/2026-05-22-jekyll-environment-variables.md&quot;,
    &quot;relative_path&quot;: &quot;_posts/2026-05-22-jekyll-environment-variables.md&quot;,
    &quot;excerpt&quot;: &quot;&lt;p&gt;Environment variables in Jekyll are simpler than you might expect β€” but also more limited than many developers assume coming from Node.js or Python. Here is everything you need to know.&lt;/p&gt;\n\n&quot;,
    &quot;previous&quot;: {
      &quot;path&quot;: &quot;_posts/2026-05-21-jekyll-liquid-filters-cheatsheet.md&quot;,
      &quot;relative_path&quot;: &quot;_posts/2026-05-21-jekyll-liquid-filters-cheatsheet.md&quot;,
      &quot;excerpt&quot;: &quot;&lt;p&gt;Liquid filters transform output in Jekyll templates. They are chained with the pipe character &lt;code class=\&quot;language-plaintext highlighter-rouge\&quot;&gt;|&lt;/code&gt; and applied to variables, strings, numbers, arrays, and dates. This cheatsheet covers every filter you will actually use, with real examples.&lt;/p&gt;\n\n&quot;,
      &quot;previous&quot;: {
        &quot;path&quot;: &quot;_posts/2026-05-20-jekyll-minimal-themes.md&quot;,
        &quot;relative_path&quot;: &quot;_posts/2026-05-20-jekyll-minimal-themes.md&quot;,
        &quot;id&quot;: &quot;/themes/2026/05/20/jekyll-minimal-themes&quot;,
        &quot;collection&quot;: &quot;posts&quot;,
        &quot;url&quot;: &quot;/themes/2026/05/20/jekyll-minimal-themes/&quot;,
        &quot;draft&quot;: false,
        &quot;categories&quot;: [
          &quot;Themes&quot;
        ],
        &quot;layout&quot;: &quot;post&quot;,
        &quot;title&quot;: &quot;Best Minimal Jekyll Themes in 2026 (Clean, Fast, Distraction-Free)&quot;,
        &quot;description&quot;: &quot;The best minimal Jekyll themes for blogs, portfolios, and personal sites β€” clean typography, fast load times, and zero visual clutter.&quot;,
        &quot;date&quot;: &quot;2026-05-20 00:00:00 +0000&quot;,
        &quot;last_modified_at&quot;: &quot;2026-07-05&quot;,
        &quot;image&quot;: &quot;/assets/images/blog/jekyll-minimal-themes.webp&quot;,
        &quot;author&quot;: &quot;Marcus Webb&quot;,
        &quot;category&quot;: &quot;Themes&quot;,
        &quot;featured&quot;: false,
        &quot;related_category&quot;: &quot;Blog&quot;,
        &quot;toc&quot;: true,
        &quot;slug&quot;: &quot;jekyll-minimal-themes&quot;,
        &quot;ext&quot;: &quot;.md&quot;,
        &quot;tags&quot;: [

        ]
      },
      &quot;id&quot;: &quot;/tutorial/2026/05/21/jekyll-liquid-filters-cheatsheet&quot;,
      &quot;collection&quot;: &quot;posts&quot;,
      &quot;next&quot;: {
        &quot;path&quot;: &quot;_posts/2026-05-22-jekyll-environment-variables.md&quot;,
        &quot;relative_path&quot;: &quot;_posts/2026-05-22-jekyll-environment-variables.md&quot;,
        &quot;id&quot;: &quot;/tutorial/2026/05/22/jekyll-environment-variables&quot;,
        &quot;collection&quot;: &quot;posts&quot;,
        &quot;url&quot;: &quot;/tutorial/2026/05/22/jekyll-environment-variables/&quot;,
        &quot;draft&quot;: false,
        &quot;categories&quot;: [
          &quot;Tutorial&quot;
        ],
        &quot;layout&quot;: &quot;post&quot;,
        &quot;title&quot;: &quot;Jekyll Environment Variables: The Complete Guide&quot;,
        &quot;description&quot;: &quot;How to use environment variables in Jekyll β€” JEKYLL_ENV, accessing env vars in config, conditional builds, and best practices for managing secrets.&quot;,
        &quot;date&quot;: &quot;2026-05-22 00:00:00 +0000&quot;,
        &quot;last_modified_at&quot;: &quot;2026-07-07&quot;,
        &quot;image&quot;: &quot;/assets/images/blog/jekyll-environment-variables.webp&quot;,
        &quot;author&quot;: &quot;Marcus Webb&quot;,
        &quot;category&quot;: &quot;Tutorial&quot;,
        &quot;featured&quot;: false,
        &quot;related_category&quot;: &quot;Blog&quot;,
        &quot;toc&quot;: true,
        &quot;slug&quot;: &quot;jekyll-environment-variables&quot;,
        &quot;ext&quot;: &quot;.md&quot;,
        &quot;tags&quot;: [

        ]
      },
      &quot;output&quot;: null,
      &quot;content&quot;: &quot;Liquid filters transform output in Jekyll templates. They are chained with the pipe character `|` and applied to variables, strings, numbers, arrays, and dates. This cheatsheet covers every filter you will actually use, with real examples.\n\n## String filters\n\n### append and prepend\n\n```liquid\n{{ \&quot;Jekyll\&quot; | append: \&quot; Themes\&quot; }}\n&lt;!-- output: Jekyll Themes --&gt;\n\n{{ \&quot;Themes\&quot; | prepend: \&quot;Jekyll \&quot; }}\n&lt;!-- output: Jekyll Themes --&gt;\n```\n\n### upcase, downcase, capitalize\n\n```liquid\n{{ \&quot;hello world\&quot; | upcase }}\n&lt;!-- output: HELLO WORLD --&gt;\n\n{{ \&quot;HELLO WORLD\&quot; | downcase }}\n&lt;!-- output: hello world --&gt;\n\n{{ \&quot;hello world\&quot; | capitalize }}\n&lt;!-- output: Hello world --&gt;\n```\n\n### strip, lstrip, rstrip\n\nRemoves whitespace from both ends, left only, or right only.\n\n```liquid\n{{ \&quot;  hello  \&quot; | strip }}\n&lt;!-- output: hello --&gt;\n```\n\n### replace and replace_first\n\n```liquid\n{{ \&quot;Jekyll is great, Jekyll is fast\&quot; | replace: \&quot;Jekyll\&quot;, \&quot;JekyllHub\&quot; }}\n&lt;!-- output: JekyllHub is great, JekyllHub is fast --&gt;\n\n{{ \&quot;Jekyll is great, Jekyll is fast\&quot; | replace_first: \&quot;Jekyll\&quot;, \&quot;JekyllHub\&quot; }}\n&lt;!-- output: JekyllHub is great, Jekyll is fast --&gt;\n```\n\n### remove and remove_first\n\n```liquid\n{{ \&quot;Hello, World!\&quot; | remove: \&quot;,\&quot; }}\n&lt;!-- output: Hello World! --&gt;\n```\n\n### truncate and truncatewords\n\n```liquid\n{{ \&quot;The quick brown fox\&quot; | truncate: 10 }}\n&lt;!-- output: The qui... --&gt;\n\n{{ \&quot;The quick brown fox\&quot; | truncatewords: 3 }}\n&lt;!-- output: The quick brown... --&gt;\n```\n\n### split and join\n\n```liquid\n{% raw %}\n{% assign tags = \&quot;jekyll,blog,themes\&quot; | split: \&quot;,\&quot; %}\n{{ tags | join: \&quot; Β· \&quot; }}\n&lt;!-- output: jekyll Β· blog Β· themes --&gt;\n{% endraw %}\n```\n\n### slice\n\nReturns a substring starting at the given index.\n\n```liquid\n{{ \&quot;Jekyll\&quot; | slice: 0, 3 }}\n&lt;!-- output: Jek --&gt;\n```\n\n### strip_html\n\nRemoves all HTML tags from a string β€” useful for generating meta descriptions from post content.\n\n```liquid\n{{ post.content | strip_html | truncate: 160 }}\n```\n\n### strip_newlines\n\n```liquid\n{{ content | strip_newlines }}\n```\n\n### newline_to_br\n\nConverts newlines to `&lt;br&gt;` tags.\n\n```liquid\n{{ content | newline_to_br }}\n```\n\n### escape and escape_once\n\nHTML-encodes a string.\n\n```liquid\n{{ &apos;&lt;script&gt;&apos; | escape }}\n&lt;!-- output: &amp;lt;script&amp;gt; --&gt;\n```\n\n### url_encode and url_decode\n\n```liquid\n{{ \&quot;hello world\&quot; | url_encode }}\n&lt;!-- output: hello+world --&gt;\n```\n\n### markdownify\n\nConverts a Markdown string to HTML. Useful for front matter fields written in Markdown.\n\n```liquid\n{{ page.description | markdownify }}\n```\n\n### jsonify\n\nConverts an object to JSON. Essential for passing Jekyll data to JavaScript.\n\n```liquid\n&lt;script&gt;\n  var themes = {{ site.themes | jsonify }};\n&lt;/script&gt;\n```\n\n## Number filters\n\n### plus, minus, times, divided_by, modulo\n\n```liquid\n{{ 10 | plus: 5 }}       &lt;!-- 15 --&gt;\n{{ 10 | minus: 3 }}      &lt;!-- 7 --&gt;\n{{ 4 | times: 3 }}       &lt;!-- 12 --&gt;\n{{ 10 | divided_by: 3 }} &lt;!-- 3 (integer division) --&gt;\n{{ 10 | modulo: 3 }}     &lt;!-- 1 --&gt;\n```\n\n### ceil, floor, round, abs\n\n```liquid\n{{ 4.3 | ceil }}   &lt;!-- 5 --&gt;\n{{ 4.7 | floor }}  &lt;!-- 4 --&gt;\n{{ 4.567 | round: 2 }} &lt;!-- 4.57 --&gt;\n{{ -5 | abs }}     &lt;!-- 5 --&gt;\n```\n\n## Array filters\n\n### size\n\nWorks on strings and arrays.\n\n```liquid\n{{ site.themes | size }}\n{{ \&quot;Jekyll\&quot; | size }} &lt;!-- 6 --&gt;\n```\n\n### first and last\n\n```liquid\n{{ site.themes | first }}\n{{ site.themes | last }}\n```\n\n### push and pop, shift and unshift\n\nAdd or remove items from an array.\n\n```liquid\n{% raw %}\n{% assign updated = site.themes | push: new_theme %}\n{% endraw %}\n```\n\n### concat\n\nMerges two arrays.\n\n```liquid\n{% raw %}\n{% assign all_posts = site.posts | concat: site.pages %}\n{% endraw %}\n```\n\n### map\n\nExtracts a single property from an array of objects.\n\n```liquid\n{% raw %}\n{% assign titles = site.themes | map: \&quot;title\&quot; %}\n{{ titles | join: \&quot;, \&quot; }}\n{% endraw %}\n```\n\n### where and where_exp\n\nFilter an array by a property value.\n\n```liquid\n{% raw %}\n{% assign premium = site.themes | where: \&quot;price_type\&quot;, \&quot;premium\&quot; %}\n\n{% assign recent = site.posts | where_exp: \&quot;post\&quot;, \&quot;post.date &gt; &apos;2026-01-01&apos;\&quot; %}\n{% endraw %}\n```\n\n### sort and sort_natural\n\n```liquid\n{% raw %}\n{% assign sorted = site.themes | sort: \&quot;title\&quot; %}\n{% assign sorted = site.themes | sort_natural: \&quot;title\&quot; %}\n{% endraw %}\n```\n\n### reverse\n\n```liquid\n{% raw %}\n{% assign reversed = site.posts | reverse %}\n{% endraw %}\n```\n\n### uniq\n\nRemoves duplicate values from an array.\n\n```liquid\n{% raw %}\n{% assign unique_cats = site.themes | map: \&quot;category\&quot; | uniq %}\n{% endraw %}\n```\n\n### group_by and group_by_exp\n\nGroups an array of objects by a property.\n\n```liquid\n{% raw %}\n{% assign by_category = site.themes | group_by: \&quot;category\&quot; %}\n{% for group in by_category %}\n  &lt;h2&gt;{{ group.name }}&lt;/h2&gt;\n  {% for theme in group.items %}\n    &lt;p&gt;{{ theme.title }}&lt;/p&gt;\n  {% endfor %}\n{% endfor %}\n{% endraw %}\n```\n\n### find and find_exp\n\nReturns the first item matching a condition (Jekyll 4+).\n\n```liquid\n{% raw %}\n{% assign featured = site.themes | find: \&quot;featured\&quot;, true %}\n{% endraw %}\n```\n\n### sum\n\nAdds up a numeric property across an array.\n\n```liquid\n{{ site.themes | map: \&quot;stars\&quot; | sum }}\n```\n\n### compact\n\nRemoves nil values from an array.\n\n```liquid\n{% raw %}\n{% assign clean = array | compact %}\n{% endraw %}\n```\n\n### flatten\n\nFlattens a nested array.\n\n```liquid\n{% raw %}\n{% assign flat = nested_array | flatten %}\n{% endraw %}\n```\n\n## Date filters\n\n### date\n\nFormats a date using `strftime` syntax.\n\n```liquid\n{{ page.date | date: \&quot;%B %-d, %Y\&quot; }}\n&lt;!-- output: July 3, 2026 --&gt;\n\n{{ page.date | date: \&quot;%Y-%m-%d\&quot; }}\n&lt;!-- output: 2026-07-03 --&gt;\n\n{{ page.date | date: \&quot;%d %b %Y\&quot; }}\n&lt;!-- output: 03 Jul 2026 --&gt;\n```\n\nCommon format codes:\n- `%Y` β€” four-digit year\n- `%m` β€” zero-padded month (01–12)\n- `%-m` β€” month without padding (1–12)\n- `%B` β€” full month name\n- `%b` β€” abbreviated month name\n- `%d` β€” zero-padded day\n- `%-d` β€” day without padding\n- `%A` β€” full weekday name\n- `%H:%M` β€” 24-hour time\n\n### date_to_long_string and date_to_string\n\nJekyll shortcuts for common date formats.\n\n```liquid\n{{ page.date | date_to_long_string }}\n&lt;!-- output: 03 July 2026 --&gt;\n\n{{ page.date | date_to_string }}\n&lt;!-- output: 03 Jul 2026 --&gt;\n```\n\n### date_to_xmlschema and date_to_rfc822\n\nUsed in feeds and structured data.\n\n```liquid\n{{ page.date | date_to_xmlschema }}\n&lt;!-- output: 2026-07-03T00:00:00+00:00 --&gt;\n```\n\n## URL and path filters\n\n### relative_url and absolute_url\n\nEssential β€” always use these instead of hardcoded paths.\n\n```liquid\n&lt;a href=\&quot;{{ &apos;/themes/&apos; | relative_url }}\&quot;&gt;Browse themes&lt;/a&gt;\n&lt;meta property=\&quot;og:url\&quot; content=\&quot;{{ page.url | absolute_url }}\&quot;&gt;\n```\n\n### slugify\n\nConverts a string to a URL-safe slug.\n\n```liquid\n{{ \&quot;Hello World! How are you?\&quot; | slugify }}\n&lt;!-- output: hello-world-how-are-you --&gt;\n```\n\n### uri_escape\n\nPercent-encodes a URI.\n\n```liquid\n{{ \&quot;search query\&quot; | uri_escape }}\n&lt;!-- output: search%20query --&gt;\n```\n\n### cgi_escape\n\nCGI-escapes a string (spaces become `+`).\n\n```liquid\n{{ \&quot;hello world\&quot; | cgi_escape }}\n&lt;!-- output: hello+world --&gt;\n```\n\n## Miscellaneous\n\n### default\n\nReturns a default value when the variable is nil, false, or empty.\n\n```liquid\n{{ page.author | default: site.author.name }}\n{{ page.image | default: site.og_image | relative_url }}\n```\n\n### inspect\n\nOutputs a Ruby representation of the object β€” invaluable for debugging.\n\n```liquid\n{{ page | inspect }}\n```\n\n### sample\n\nReturns a random element from an array.\n\n```liquid\n{{ site.themes | sample }}\n```\n\n### number_of_words\n\nCounts words in a string.\n\n```liquid\n{{ content | number_of_words }}\n```\n\n## Chaining filters\n\nFilters can be chained β€” output from one becomes input to the next.\n\n```liquid\n{{ page.title | downcase | replace: \&quot; \&quot;, \&quot;-\&quot; | prepend: \&quot;/blog/\&quot; }}\n\n{{ post.content | strip_html | truncatewords: 30 | append: \&quot;…\&quot; }}\n```\n\n## Quick reference card\n\n| Filter | What it does |\n|--------|-------------|\n| `append` / `prepend` | Add text before or after |\n| `upcase` / `downcase` | Change case |\n| `strip_html` | Remove HTML tags |\n| `truncate` / `truncatewords` | Shorten text |\n| `replace` | Find and replace |\n| `date` | Format a date |\n| `where` | Filter array by property |\n| `map` | Extract one property from array |\n| `sort` | Sort an array |\n| `size` | Count items |\n| `default` | Fallback value |\n| `relative_url` | Prefix baseurl |\n| `jsonify` | Convert to JSON |\n| `markdownify` | Render Markdown |\n\nBookmark this page β€” you will reference it constantly.\n&quot;,
      &quot;url&quot;: &quot;/tutorial/2026/05/21/jekyll-liquid-filters-cheatsheet/&quot;,
      &quot;draft&quot;: false,
      &quot;categories&quot;: [
        &quot;Tutorial&quot;
      ],
      &quot;layout&quot;: &quot;post&quot;,
      &quot;title&quot;: &quot;Jekyll Liquid Filters: The Complete Cheatsheet (2026)&quot;,
      &quot;description&quot;: &quot;Every Liquid filter you need for Jekyll β€” string manipulation, date formatting, array filters, URL helpers, and Jekyll-specific additions. With examples.&quot;,
      &quot;date&quot;: &quot;2026-05-21 00:00:00 +0000&quot;,
      &quot;last_modified_at&quot;: &quot;2026-07-06&quot;,
      &quot;image&quot;: &quot;/assets/images/blog/jekyll-liquid-filters-cheatsheet.webp&quot;,
      &quot;author&quot;: &quot;Marcus Webb&quot;,
      &quot;category&quot;: &quot;Tutorial&quot;,
      &quot;featured&quot;: false,
      &quot;related_category&quot;: &quot;Blog&quot;,
      &quot;toc&quot;: true,
      &quot;slug&quot;: &quot;jekyll-liquid-filters-cheatsheet&quot;,
      &quot;ext&quot;: &quot;.md&quot;,
      &quot;tags&quot;: [

      ]
    },
    &quot;id&quot;: &quot;/tutorial/2026/05/22/jekyll-environment-variables&quot;,
    &quot;collection&quot;: &quot;posts&quot;,
    &quot;next&quot;: {
      &quot;path&quot;: &quot;_posts/2026-05-23-jekyll-ecommerce-snipcart.md&quot;,
      &quot;relative_path&quot;: &quot;_posts/2026-05-23-jekyll-ecommerce-snipcart.md&quot;,
      &quot;excerpt&quot;: &quot;&lt;p&gt;Jekyll is a static site generator β€” it does not have a database, a server, or a shopping cart. But that does not mean you cannot sell online. Snipcart is a JavaScript-powered shopping cart that adds to any static site with a few lines of HTML. No backend, no database, no hosting complexity.&lt;/p&gt;\n\n&quot;,
      &quot;previous&quot;: {
        &quot;path&quot;: &quot;_posts/2026-05-22-jekyll-environment-variables.md&quot;,
        &quot;relative_path&quot;: &quot;_posts/2026-05-22-jekyll-environment-variables.md&quot;,
        &quot;id&quot;: &quot;/tutorial/2026/05/22/jekyll-environment-variables&quot;,
        &quot;collection&quot;: &quot;posts&quot;,
        &quot;url&quot;: &quot;/tutorial/2026/05/22/jekyll-environment-variables/&quot;,
        &quot;draft&quot;: false,
        &quot;categories&quot;: [
          &quot;Tutorial&quot;
        ],
        &quot;layout&quot;: &quot;post&quot;,
        &quot;title&quot;: &quot;Jekyll Environment Variables: The Complete Guide&quot;,
        &quot;description&quot;: &quot;How to use environment variables in Jekyll β€” JEKYLL_ENV, accessing env vars in config, conditional builds, and best practices for managing secrets.&quot;,
        &quot;date&quot;: &quot;2026-05-22 00:00:00 +0000&quot;,
        &quot;last_modified_at&quot;: &quot;2026-07-07&quot;,
        &quot;image&quot;: &quot;/assets/images/blog/jekyll-environment-variables.webp&quot;,
        &quot;author&quot;: &quot;Marcus Webb&quot;,
        &quot;category&quot;: &quot;Tutorial&quot;,
        &quot;featured&quot;: false,
        &quot;related_category&quot;: &quot;Blog&quot;,
        &quot;toc&quot;: true,
        &quot;slug&quot;: &quot;jekyll-environment-variables&quot;,
        &quot;ext&quot;: &quot;.md&quot;,
        &quot;tags&quot;: [

        ]
      },
      &quot;id&quot;: &quot;/tutorial/2026/05/23/jekyll-ecommerce-snipcart&quot;,
      &quot;collection&quot;: &quot;posts&quot;,
      &quot;next&quot;: {
        &quot;path&quot;: &quot;_posts/2026-05-24-jekyll-newsletter-signup.md&quot;,
        &quot;relative_path&quot;: &quot;_posts/2026-05-24-jekyll-newsletter-signup.md&quot;,
        &quot;id&quot;: &quot;/tutorial/2026/05/24/jekyll-newsletter-signup&quot;,
        &quot;collection&quot;: &quot;posts&quot;,
        &quot;url&quot;: &quot;/tutorial/2026/05/24/jekyll-newsletter-signup/&quot;,
        &quot;draft&quot;: false,
        &quot;categories&quot;: [
          &quot;Tutorial&quot;
        ],
        &quot;layout&quot;: &quot;post&quot;,
        &quot;title&quot;: &quot;How to Add an Email Newsletter Signup to Your Jekyll Site&quot;,
        &quot;description&quot;: &quot;Add a working email newsletter signup form to Jekyll β€” using Mailchimp, ConvertKit, Buttondown, or Netlify Forms. Setup guides, embedded forms, and popup options.&quot;,
        &quot;date&quot;: &quot;2026-05-24 00:00:00 +0000&quot;,
        &quot;last_modified_at&quot;: &quot;2026-05-24&quot;,
        &quot;image&quot;: &quot;/assets/images/blog/jekyll-newsletter-signup.webp&quot;,
        &quot;author&quot;: &quot;Marcus Webb&quot;,
        &quot;category&quot;: &quot;Tutorial&quot;,
        &quot;featured&quot;: false,
        &quot;related_category&quot;: &quot;Blog&quot;,
        &quot;toc&quot;: true,
        &quot;tags&quot;: [
          &quot;jekyll newsletter&quot;,
          &quot;mailchimp jekyll&quot;,
          &quot;convertkit jekyll&quot;,
          &quot;jekyll email signup&quot;,
          &quot;static site newsletter&quot;
        ],
        &quot;slug&quot;: &quot;jekyll-newsletter-signup&quot;,
        &quot;ext&quot;: &quot;.md&quot;
      },
      &quot;output&quot;: null,
      &quot;content&quot;: &quot;Jekyll is a static site generator β€” it does not have a database, a server, or a shopping cart. But that does not mean you cannot sell online. Snipcart is a JavaScript-powered shopping cart that adds to any static site with a few lines of HTML. No backend, no database, no hosting complexity.\n\nHere is how to build a fully functional Jekyll store with Snipcart.\n\n## What is Snipcart?\n\nSnipcart is a headless e-commerce platform. You add their JavaScript to your site, mark your products with HTML data attributes, and Snipcart handles the cart, checkout, payment processing (via Stripe), and order management through their dashboard.\n\nYou keep full control of your site&apos;s design. Snipcart handles everything that requires a server.\n\n**Pricing:** 2% transaction fee on sales up to $500/month, then $20/month flat fee. Free to test with a sandbox mode.\n\n## Setting up Snipcart in Jekyll\n\n### Step 1: Create a Snipcart account\n\nSign up at [snipcart.com](https://snipcart.com). You will get a public API key for testing (sandbox) and one for production.\n\n### Step 2: Add Snipcart to your Jekyll layout\n\nAdd the following to your `_layouts/default.html` before the closing `&lt;/body&gt;` tag:\n\n```html\n{% raw %}\n{% if site.snipcart_key != \&quot;\&quot; %}\n&lt;link rel=\&quot;preconnect\&quot; href=\&quot;https://app.snipcart.com\&quot;&gt;\n&lt;link rel=\&quot;preconnect\&quot; href=\&quot;https://cdn.snipcart.com\&quot;&gt;\n&lt;link rel=\&quot;stylesheet\&quot; href=\&quot;https://cdn.snipcart.com/themes/v3.3.3/default/snipcart.css\&quot; /&gt;\n&lt;div hidden id=\&quot;snipcart\&quot; data-api-key=\&quot;{{ site.snipcart_key }}\&quot;&gt;&lt;/div&gt;\n&lt;script async src=\&quot;https://cdn.snipcart.com/themes/v3.3.3/default/snipcart.js\&quot;&gt;&lt;/script&gt;\n{% endif %}\n{% endraw %}\n```\n\n### Step 3: Add your API key to _config.yml\n\n```yaml\n# _config.yml\nsnipcart_key: \&quot;\&quot;  # Add your Snipcart public API key here\n```\n\nKeep your test key for local development and your live key in your hosting platform&apos;s environment variables.\n\n### Step 4: Define products in front matter\n\nCreate a `_products` collection in `_config.yml`:\n\n```yaml\ncollections:\n  products:\n    output: true\n    permalink: /shop/:slug/\n```\n\nCreate a product file at `_products/jekyll-starter-theme.md`:\n\n```yaml\n---\nlayout: product\ntitle: \&quot;Jekyll Starter Theme\&quot;\nprice: 29.00\nsku: \&quot;JST-001\&quot;\ndescription: \&quot;A clean, minimal Jekyll theme for developers. Includes dark mode, SEO optimisation, and full documentation.\&quot;\nimage: /assets/images/products/jekyll-starter-theme.jpg\ncategory: Themes\nin_stock: true\n---\n\nYour full product description here in Markdown...\n```\n\n### Step 5: Create the Add to Cart button\n\nIn your product layout or product listing, add a button with Snipcart&apos;s data attributes:\n\n```html\n{% raw %}\n&lt;button\n  class=\&quot;snipcart-add-item btn btn--primary\&quot;\n  data-item-id=\&quot;{{ product.sku }}\&quot;\n  data-item-name=\&quot;{{ product.title }}\&quot;\n  data-item-price=\&quot;{{ product.price }}\&quot;\n  data-item-url=\&quot;{{ product.url | absolute_url }}\&quot;\n  data-item-description=\&quot;{{ product.description | strip_html | truncate: 255 }}\&quot;\n  data-item-image=\&quot;{{ product.image | absolute_url }}\&quot;\n&gt;\n  Add to Cart β€” ${{ product.price }}\n&lt;/button&gt;\n{% endraw %}\n```\n\nThe `data-item-url` must point to the live product page where Snipcart can verify the price. This is Snipcart&apos;s anti-fraud mechanism β€” it crawls the URL and confirms the price matches what was passed to the cart.\n\n### Step 6: Add the cart button to your nav\n\n```html\n&lt;button class=\&quot;snipcart-checkout navbar__icon-btn\&quot; aria-label=\&quot;Shopping cart\&quot;&gt;\n  &lt;svg width=\&quot;20\&quot; height=\&quot;20\&quot; fill=\&quot;none\&quot; stroke=\&quot;currentColor\&quot; viewBox=\&quot;0 0 24 24\&quot;&gt;\n    &lt;path stroke-linecap=\&quot;round\&quot; stroke-linejoin=\&quot;round\&quot; stroke-width=\&quot;2\&quot; d=\&quot;M3 3h2l.4 2M7 13h10l4-8H5.4M7 13L5.4 5M7 13l-2.293 2.293c-.63.63-.184 1.707.707 1.707H17m0 0a2 2 0 100 4 2 2 0 000-4zm-8 2a2 2 0 11-4 0 2 2 0 014 0z\&quot;/&gt;\n  &lt;/svg&gt;\n  &lt;span class=\&quot;snipcart-items-count\&quot;&gt;0&lt;/span&gt;\n&lt;/button&gt;\n```\n\nThe `snipcart-items-count` class is updated automatically by Snipcart with the current cart item count.\n\n## Creating a product listing page\n\nCreate `_pages/shop.html`:\n\n```html\n---\nlayout: default\ntitle: \&quot;Shop\&quot;\npermalink: /shop/\n---\n\n&lt;div class=\&quot;product-grid\&quot;&gt;\n  {% raw %}{% for product in site.products %}{% endraw %}\n  &lt;div class=\&quot;product-card\&quot;&gt;\n    &lt;img src=\&quot;{% raw %}{{ product.image | relative_url }}{% endraw %}\&quot; alt=\&quot;{% raw %}{{ product.title }}{% endraw %}\&quot;&gt;\n    &lt;h3&gt;{% raw %}{{ product.title }}{% endraw %}&lt;/h3&gt;\n    &lt;p&gt;{% raw %}{{ product.description | truncate: 120 }}{% endraw %}&lt;/p&gt;\n    &lt;p class=\&quot;price\&quot;&gt;${% raw %}{{ product.price }}{% endraw %}&lt;/p&gt;\n    &lt;button\n      class=\&quot;snipcart-add-item btn btn--primary\&quot;\n      data-item-id=\&quot;{% raw %}{{ product.sku }}{% endraw %}\&quot;\n      data-item-name=\&quot;{% raw %}{{ product.title }}{% endraw %}\&quot;\n      data-item-price=\&quot;{% raw %}{{ product.price }}{% endraw %}\&quot;\n      data-item-url=\&quot;{% raw %}{{ product.url | absolute_url }}{% endraw %}\&quot;\n      data-item-description=\&quot;{% raw %}{{ product.description | strip_html | truncate: 255 }}{% endraw %}\&quot;\n      data-item-image=\&quot;{% raw %}{{ product.image | absolute_url }}{% endraw %}\&quot;\n    &gt;\n      Add to Cart\n    &lt;/button&gt;\n  &lt;/div&gt;\n  {% raw %}{% endfor %}{% endraw %}\n&lt;/div&gt;\n```\n\n## Handling digital products\n\nSnipcart supports digital product delivery via a file URL. Add it to your button:\n\n```html\ndata-item-file-guid=\&quot;YOUR_FILE_GUID\&quot;\n```\n\nYou upload the file in the Snipcart dashboard and get a GUID. Snipcart delivers a download link to the customer after payment. This is ideal for selling theme files, ebooks, or templates.\n\n## Tax and shipping\n\nConfigure tax rules and shipping rates in the Snipcart dashboard β€” no code changes needed. You can set rates by country, region, or product category.\n\n## Alternatives to Snipcart\n\n| Option | Best for |\n|--------|----------|\n| **Snipcart** | Most Jekyll stores β€” simplest setup |\n| **Gumroad** | Digital products only β€” embed a Gumroad button |\n| **Stripe Payment Links** | Single products, no cart needed |\n| **Shopify Buy Button** | Larger catalogues with existing Shopify store |\n| **Lemon Squeezy** | SaaS products, subscriptions, software |\n\n## Is Jekyll right for e-commerce?\n\nJekyll works well for stores with a small to medium catalogue (under a few hundred products), digital goods, or marketplaces where the product pages are mostly static content. It is not the right choice for large catalogues with complex inventory management, real-time stock levels, or customer accounts.\n\nFor selling a Jekyll theme or digital download, Jekyll plus Snipcart is a perfectly reasonable stack. For a 10,000-SKU physical goods store, reach for Shopify.\n&quot;,
      &quot;url&quot;: &quot;/tutorial/2026/05/23/jekyll-ecommerce-snipcart/&quot;,
      &quot;draft&quot;: false,
      &quot;categories&quot;: [
        &quot;Tutorial&quot;
      ],
      &quot;layout&quot;: &quot;post&quot;,
      &quot;title&quot;: &quot;Jekyll E-commerce with Snipcart: Add a Shopping Cart to Your Static Site&quot;,
      &quot;description&quot;: &quot;Learn how to add a fully functional shopping cart to a Jekyll site using Snipcart. Product listings, checkout, payments, and order management β€” no backend required.&quot;,
      &quot;date&quot;: &quot;2026-05-23 00:00:00 +0000&quot;,
      &quot;last_modified_at&quot;: &quot;2026-07-08&quot;,
      &quot;image&quot;: &quot;/assets/images/blog/jekyll-ecommerce-snipcart.webp&quot;,
      &quot;author&quot;: &quot;Marcus Webb&quot;,
      &quot;category&quot;: &quot;Tutorial&quot;,
      &quot;featured&quot;: false,
      &quot;related_category&quot;: &quot;Blog&quot;,
      &quot;toc&quot;: true,
      &quot;slug&quot;: &quot;jekyll-ecommerce-snipcart&quot;,
      &quot;ext&quot;: &quot;.md&quot;,
      &quot;tags&quot;: [

      ]
    },
    &quot;output&quot;: null,
    &quot;content&quot;: &quot;Environment variables in Jekyll are simpler than you might expect β€” but also more limited than many developers assume coming from Node.js or Python. Here is everything you need to know.\n\n## JEKYLL_ENV: the key environment variable\n\nJekyll ships with one built-in environment variable: `JEKYLL_ENV`. It defaults to `development` when you run `jekyll serve` or `jekyll build` locally. To set it to production, prefix your build command:\n\n```bash\nJEKYLL_ENV=production jekyll build\n```\n\nOn Netlify, Cloudflare Pages, and most CI platforms, this is set automatically.\n\n### Using JEKYLL_ENV in Liquid templates\n\nYou can read the environment in your templates using `jekyll.environment`:\n\n```liquid\n{% raw %}\n{% if jekyll.environment == \&quot;production\&quot; %}\n  {% include analytics.html %}\n{% endif %}\n{% endraw %}\n```\n\nThis is the standard pattern for including analytics, chat widgets, and other scripts only in production builds β€” keeping your development output clean and your test data separate from real analytics.\n\n### Common production-only includes\n\n```liquid\n{% raw %}\n{% comment %} In _layouts/default.html {% endcomment %}\n{% if jekyll.environment == \&quot;production\&quot; %}\n  {% include analytics.html %}\n  {% include cookie-banner.html %}\n{% endif %}\n{% endraw %}\n```\n\n## Can Jekyll read system environment variables?\n\nYes β€” but only through `_config.yml` using ERB interpolation, and only when Jekyll is run with the `--config` flag pointing to a `.yml` file processed as ERB. This is not supported out of the box in standard Jekyll.\n\nThe most reliable approach for secrets in Jekyll is to use your hosting platform&apos;s environment variable system and inject values at build time.\n\n## Injecting environment variables via _config.yml on Netlify\n\nNetlify lets you set environment variables in your site dashboard (Site settings β†’ Environment variables). You can then reference them in `netlify.toml`:\n\n```toml\n[build]\n  command = \&quot;JEKYLL_ENV=production jekyll build\&quot;\n  publish = \&quot;_site\&quot;\n\n[build.environment]\n  JEKYLL_ENV = \&quot;production\&quot;\n```\n\nFor values you want available in your Liquid templates, the cleanest approach is to set them in `_config.yml` directly β€” keeping non-secret config in version control and only truly secret values (API keys, tokens) in the platform&apos;s environment variable system.\n\n## Environment-specific config files\n\nJekyll supports multiple config files merged at build time. This is the recommended pattern for environment-specific settings:\n\n```bash\n# Development (default)\njekyll serve\n\n# Production\njekyll build --config _config.yml,_config.production.yml\n\n# Staging\njekyll build --config _config.yml,_config.staging.yml\n```\n\nYour `_config.production.yml` overrides only the values that differ:\n\n```yaml\n# _config.production.yml\nurl: \&quot;https://yourdomain.com\&quot;\ngoogle_analytics: \&quot;G-XXXXXXXXXX\&quot;\nshow_drafts: false\n```\n\nYour `_config.yml` keeps safe defaults:\n\n```yaml\n# _config.yml\nurl: \&quot;http://localhost:4000\&quot;\ngoogle_analytics: \&quot;\&quot;\nshow_drafts: true\n```\n\n## Practical examples\n\n### Analytics only in production\n\n```liquid\n{% raw %}\n{% comment %} _includes/analytics.html {% endcomment %}\n{% if jekyll.environment == \&quot;production\&quot; and site.google_analytics != \&quot;\&quot; %}\n&lt;script async src=\&quot;https://www.googletagmanager.com/gtag/js?id={{ site.google_analytics }}\&quot;&gt;&lt;/script&gt;\n&lt;script&gt;\n  window.dataLayer = window.dataLayer || [];\n  function gtag(){dataLayer.push(arguments);}\n  gtag(\&quot;js\&quot;, new Date());\n  gtag(\&quot;config\&quot;, \&quot;{{ site.google_analytics }}\&quot;);\n&lt;/script&gt;\n{% endif %}\n{% endraw %}\n```\n\n### Draft posts visible in development only\n\n```yaml\n# _config.yml\nshow_drafts: false\n\n# _config.development.yml  \nshow_drafts: true\n```\n\n```bash\njekyll serve --config _config.yml,_config.development.yml --drafts\n```\n\n### Different base URLs per environment\n\n```yaml\n# _config.yml\nurl: \&quot;https://jekyllhub.com\&quot;\nbaseurl: \&quot;\&quot;\n\n# _config.staging.yml\nurl: \&quot;https://staging.jekyllhub.com\&quot;\nbaseurl: \&quot;/staging\&quot;\n```\n\n### Banner or maintenance mode\n\n```yaml\n# _config.yml\nmaintenance_mode: false\n```\n\n```liquid\n{% raw %}\n{% if site.maintenance_mode %}\n  &lt;div class=\&quot;maintenance-banner\&quot;&gt;We are performing maintenance. Back shortly.&lt;/div&gt;\n{% endif %}\n{% endraw %}\n```\n\n## What you cannot do directly\n\nJekyll does not have a `.env` file loader like Node.js projects. You cannot write:\n\n```bash\n# This does NOT work in Jekyll\nAPI_KEY=abc123\n```\n\n...and then access `{{ ENV.API_KEY }}` in a template. Jekyll does not read shell environment variables into the Liquid context.\n\nIf you need to expose an API key to client-side JavaScript, remember that anything in your built `_site` folder is public. Never embed secret API keys in static HTML. Use a proxy function (Netlify Functions, Cloudflare Workers) to make authenticated requests from the server side.\n\n## Summary\n\n| Pattern | Use case |\n|---------|----------|\n| `JEKYLL_ENV=production` | Toggle analytics, ads, and scripts |\n| Multiple `_config` files | Environment-specific URLs and settings |\n| Platform env vars in `netlify.toml` | Inject build-time values |\n| `jekyll.environment` in Liquid | Conditional template logic |\n\nKeep your environment strategy simple. For most Jekyll sites, `JEKYLL_ENV` plus a production config override covers everything you need.\n&quot;,
    &quot;url&quot;: &quot;/tutorial/2026/05/22/jekyll-environment-variables/&quot;,
    &quot;draft&quot;: false,
    &quot;categories&quot;: [
      &quot;Tutorial&quot;
    ],
    &quot;layout&quot;: &quot;post&quot;,
    &quot;title&quot;: &quot;Jekyll Environment Variables: The Complete Guide&quot;,
    &quot;description&quot;: &quot;How to use environment variables in Jekyll β€” JEKYLL_ENV, accessing env vars in config, conditional builds, and best practices for managing secrets.&quot;,
    &quot;date&quot;: &quot;2026-05-22 00:00:00 +0000&quot;,
    &quot;last_modified_at&quot;: &quot;2026-07-07&quot;,
    &quot;image&quot;: &quot;/assets/images/blog/jekyll-environment-variables.webp&quot;,
    &quot;author&quot;: &quot;Marcus Webb&quot;,
    &quot;category&quot;: &quot;Tutorial&quot;,
    &quot;featured&quot;: false,
    &quot;related_category&quot;: &quot;Blog&quot;,
    &quot;toc&quot;: true,
    &quot;slug&quot;: &quot;jekyll-environment-variables&quot;,
    &quot;ext&quot;: &quot;.md&quot;,
    &quot;tags&quot;: [

    ]
  },
  &quot;output&quot;: null,
  &quot;content&quot;: &quot;Liquid filters transform output in Jekyll templates. They are chained with the pipe character `|` and applied to variables, strings, numbers, arrays, and dates. This cheatsheet covers every filter you will actually use, with real examples.\n\n## String filters\n\n### append and prepend\n\n```liquid\n{{ \&quot;Jekyll\&quot; | append: \&quot; Themes\&quot; }}\n&lt;!-- output: Jekyll Themes --&gt;\n\n{{ \&quot;Themes\&quot; | prepend: \&quot;Jekyll \&quot; }}\n&lt;!-- output: Jekyll Themes --&gt;\n```\n\n### upcase, downcase, capitalize\n\n```liquid\n{{ \&quot;hello world\&quot; | upcase }}\n&lt;!-- output: HELLO WORLD --&gt;\n\n{{ \&quot;HELLO WORLD\&quot; | downcase }}\n&lt;!-- output: hello world --&gt;\n\n{{ \&quot;hello world\&quot; | capitalize }}\n&lt;!-- output: Hello world --&gt;\n```\n\n### strip, lstrip, rstrip\n\nRemoves whitespace from both ends, left only, or right only.\n\n```liquid\n{{ \&quot;  hello  \&quot; | strip }}\n&lt;!-- output: hello --&gt;\n```\n\n### replace and replace_first\n\n```liquid\n{{ \&quot;Jekyll is great, Jekyll is fast\&quot; | replace: \&quot;Jekyll\&quot;, \&quot;JekyllHub\&quot; }}\n&lt;!-- output: JekyllHub is great, JekyllHub is fast --&gt;\n\n{{ \&quot;Jekyll is great, Jekyll is fast\&quot; | replace_first: \&quot;Jekyll\&quot;, \&quot;JekyllHub\&quot; }}\n&lt;!-- output: JekyllHub is great, Jekyll is fast --&gt;\n```\n\n### remove and remove_first\n\n```liquid\n{{ \&quot;Hello, World!\&quot; | remove: \&quot;,\&quot; }}\n&lt;!-- output: Hello World! --&gt;\n```\n\n### truncate and truncatewords\n\n```liquid\n{{ \&quot;The quick brown fox\&quot; | truncate: 10 }}\n&lt;!-- output: The qui... --&gt;\n\n{{ \&quot;The quick brown fox\&quot; | truncatewords: 3 }}\n&lt;!-- output: The quick brown... --&gt;\n```\n\n### split and join\n\n```liquid\n{% raw %}\n{% assign tags = \&quot;jekyll,blog,themes\&quot; | split: \&quot;,\&quot; %}\n{{ tags | join: \&quot; Β· \&quot; }}\n&lt;!-- output: jekyll Β· blog Β· themes --&gt;\n{% endraw %}\n```\n\n### slice\n\nReturns a substring starting at the given index.\n\n```liquid\n{{ \&quot;Jekyll\&quot; | slice: 0, 3 }}\n&lt;!-- output: Jek --&gt;\n```\n\n### strip_html\n\nRemoves all HTML tags from a string β€” useful for generating meta descriptions from post content.\n\n```liquid\n{{ post.content | strip_html | truncate: 160 }}\n```\n\n### strip_newlines\n\n```liquid\n{{ content | strip_newlines }}\n```\n\n### newline_to_br\n\nConverts newlines to `&lt;br&gt;` tags.\n\n```liquid\n{{ content | newline_to_br }}\n```\n\n### escape and escape_once\n\nHTML-encodes a string.\n\n```liquid\n{{ &apos;&lt;script&gt;&apos; | escape }}\n&lt;!-- output: &amp;lt;script&amp;gt; --&gt;\n```\n\n### url_encode and url_decode\n\n```liquid\n{{ \&quot;hello world\&quot; | url_encode }}\n&lt;!-- output: hello+world --&gt;\n```\n\n### markdownify\n\nConverts a Markdown string to HTML. Useful for front matter fields written in Markdown.\n\n```liquid\n{{ page.description | markdownify }}\n```\n\n### jsonify\n\nConverts an object to JSON. Essential for passing Jekyll data to JavaScript.\n\n```liquid\n&lt;script&gt;\n  var themes = {{ site.themes | jsonify }};\n&lt;/script&gt;\n```\n\n## Number filters\n\n### plus, minus, times, divided_by, modulo\n\n```liquid\n{{ 10 | plus: 5 }}       &lt;!-- 15 --&gt;\n{{ 10 | minus: 3 }}      &lt;!-- 7 --&gt;\n{{ 4 | times: 3 }}       &lt;!-- 12 --&gt;\n{{ 10 | divided_by: 3 }} &lt;!-- 3 (integer division) --&gt;\n{{ 10 | modulo: 3 }}     &lt;!-- 1 --&gt;\n```\n\n### ceil, floor, round, abs\n\n```liquid\n{{ 4.3 | ceil }}   &lt;!-- 5 --&gt;\n{{ 4.7 | floor }}  &lt;!-- 4 --&gt;\n{{ 4.567 | round: 2 }} &lt;!-- 4.57 --&gt;\n{{ -5 | abs }}     &lt;!-- 5 --&gt;\n```\n\n## Array filters\n\n### size\n\nWorks on strings and arrays.\n\n```liquid\n{{ site.themes | size }}\n{{ \&quot;Jekyll\&quot; | size }} &lt;!-- 6 --&gt;\n```\n\n### first and last\n\n```liquid\n{{ site.themes | first }}\n{{ site.themes | last }}\n```\n\n### push and pop, shift and unshift\n\nAdd or remove items from an array.\n\n```liquid\n{% raw %}\n{% assign updated = site.themes | push: new_theme %}\n{% endraw %}\n```\n\n### concat\n\nMerges two arrays.\n\n```liquid\n{% raw %}\n{% assign all_posts = site.posts | concat: site.pages %}\n{% endraw %}\n```\n\n### map\n\nExtracts a single property from an array of objects.\n\n```liquid\n{% raw %}\n{% assign titles = site.themes | map: \&quot;title\&quot; %}\n{{ titles | join: \&quot;, \&quot; }}\n{% endraw %}\n```\n\n### where and where_exp\n\nFilter an array by a property value.\n\n```liquid\n{% raw %}\n{% assign premium = site.themes | where: \&quot;price_type\&quot;, \&quot;premium\&quot; %}\n\n{% assign recent = site.posts | where_exp: \&quot;post\&quot;, \&quot;post.date &gt; &apos;2026-01-01&apos;\&quot; %}\n{% endraw %}\n```\n\n### sort and sort_natural\n\n```liquid\n{% raw %}\n{% assign sorted = site.themes | sort: \&quot;title\&quot; %}\n{% assign sorted = site.themes | sort_natural: \&quot;title\&quot; %}\n{% endraw %}\n```\n\n### reverse\n\n```liquid\n{% raw %}\n{% assign reversed = site.posts | reverse %}\n{% endraw %}\n```\n\n### uniq\n\nRemoves duplicate values from an array.\n\n```liquid\n{% raw %}\n{% assign unique_cats = site.themes | map: \&quot;category\&quot; | uniq %}\n{% endraw %}\n```\n\n### group_by and group_by_exp\n\nGroups an array of objects by a property.\n\n```liquid\n{% raw %}\n{% assign by_category = site.themes | group_by: \&quot;category\&quot; %}\n{% for group in by_category %}\n  &lt;h2&gt;{{ group.name }}&lt;/h2&gt;\n  {% for theme in group.items %}\n    &lt;p&gt;{{ theme.title }}&lt;/p&gt;\n  {% endfor %}\n{% endfor %}\n{% endraw %}\n```\n\n### find and find_exp\n\nReturns the first item matching a condition (Jekyll 4+).\n\n```liquid\n{% raw %}\n{% assign featured = site.themes | find: \&quot;featured\&quot;, true %}\n{% endraw %}\n```\n\n### sum\n\nAdds up a numeric property across an array.\n\n```liquid\n{{ site.themes | map: \&quot;stars\&quot; | sum }}\n```\n\n### compact\n\nRemoves nil values from an array.\n\n```liquid\n{% raw %}\n{% assign clean = array | compact %}\n{% endraw %}\n```\n\n### flatten\n\nFlattens a nested array.\n\n```liquid\n{% raw %}\n{% assign flat = nested_array | flatten %}\n{% endraw %}\n```\n\n## Date filters\n\n### date\n\nFormats a date using `strftime` syntax.\n\n```liquid\n{{ page.date | date: \&quot;%B %-d, %Y\&quot; }}\n&lt;!-- output: July 3, 2026 --&gt;\n\n{{ page.date | date: \&quot;%Y-%m-%d\&quot; }}\n&lt;!-- output: 2026-07-03 --&gt;\n\n{{ page.date | date: \&quot;%d %b %Y\&quot; }}\n&lt;!-- output: 03 Jul 2026 --&gt;\n```\n\nCommon format codes:\n- `%Y` β€” four-digit year\n- `%m` β€” zero-padded month (01–12)\n- `%-m` β€” month without padding (1–12)\n- `%B` β€” full month name\n- `%b` β€” abbreviated month name\n- `%d` β€” zero-padded day\n- `%-d` β€” day without padding\n- `%A` β€” full weekday name\n- `%H:%M` β€” 24-hour time\n\n### date_to_long_string and date_to_string\n\nJekyll shortcuts for common date formats.\n\n```liquid\n{{ page.date | date_to_long_string }}\n&lt;!-- output: 03 July 2026 --&gt;\n\n{{ page.date | date_to_string }}\n&lt;!-- output: 03 Jul 2026 --&gt;\n```\n\n### date_to_xmlschema and date_to_rfc822\n\nUsed in feeds and structured data.\n\n```liquid\n{{ page.date | date_to_xmlschema }}\n&lt;!-- output: 2026-07-03T00:00:00+00:00 --&gt;\n```\n\n## URL and path filters\n\n### relative_url and absolute_url\n\nEssential β€” always use these instead of hardcoded paths.\n\n```liquid\n&lt;a href=\&quot;{{ &apos;/themes/&apos; | relative_url }}\&quot;&gt;Browse themes&lt;/a&gt;\n&lt;meta property=\&quot;og:url\&quot; content=\&quot;{{ page.url | absolute_url }}\&quot;&gt;\n```\n\n### slugify\n\nConverts a string to a URL-safe slug.\n\n```liquid\n{{ \&quot;Hello World! How are you?\&quot; | slugify }}\n&lt;!-- output: hello-world-how-are-you --&gt;\n```\n\n### uri_escape\n\nPercent-encodes a URI.\n\n```liquid\n{{ \&quot;search query\&quot; | uri_escape }}\n&lt;!-- output: search%20query --&gt;\n```\n\n### cgi_escape\n\nCGI-escapes a string (spaces become `+`).\n\n```liquid\n{{ \&quot;hello world\&quot; | cgi_escape }}\n&lt;!-- output: hello+world --&gt;\n```\n\n## Miscellaneous\n\n### default\n\nReturns a default value when the variable is nil, false, or empty.\n\n```liquid\n{{ page.author | default: site.author.name }}\n{{ page.image | default: site.og_image | relative_url }}\n```\n\n### inspect\n\nOutputs a Ruby representation of the object β€” invaluable for debugging.\n\n```liquid\n{{ page | inspect }}\n```\n\n### sample\n\nReturns a random element from an array.\n\n```liquid\n{{ site.themes | sample }}\n```\n\n### number_of_words\n\nCounts words in a string.\n\n```liquid\n{{ content | number_of_words }}\n```\n\n## Chaining filters\n\nFilters can be chained β€” output from one becomes input to the next.\n\n```liquid\n{{ page.title | downcase | replace: \&quot; \&quot;, \&quot;-\&quot; | prepend: \&quot;/blog/\&quot; }}\n\n{{ post.content | strip_html | truncatewords: 30 | append: \&quot;…\&quot; }}\n```\n\n## Quick reference card\n\n| Filter | What it does |\n|--------|-------------|\n| `append` / `prepend` | Add text before or after |\n| `upcase` / `downcase` | Change case |\n| `strip_html` | Remove HTML tags |\n| `truncate` / `truncatewords` | Shorten text |\n| `replace` | Find and replace |\n| `date` | Format a date |\n| `where` | Filter array by property |\n| `map` | Extract one property from array |\n| `sort` | Sort an array |\n| `size` | Count items |\n| `default` | Fallback value |\n| `relative_url` | Prefix baseurl |\n| `jsonify` | Convert to JSON |\n| `markdownify` | Render Markdown |\n\nBookmark this page β€” you will reference it constantly.\n&quot;,
  &quot;url&quot;: &quot;/tutorial/2026/05/21/jekyll-liquid-filters-cheatsheet/&quot;,
  &quot;draft&quot;: false,
  &quot;categories&quot;: [
    &quot;Tutorial&quot;
  ],
  &quot;layout&quot;: &quot;post&quot;,
  &quot;title&quot;: &quot;Jekyll Liquid Filters: The Complete Cheatsheet (2026)&quot;,
  &quot;description&quot;: &quot;Every Liquid filter you need for Jekyll β€” string manipulation, date formatting, array filters, URL helpers, and Jekyll-specific additions. With examples.&quot;,
  &quot;date&quot;: &quot;2026-05-21 00:00:00 +0000&quot;,
  &quot;last_modified_at&quot;: &quot;2026-07-06&quot;,
  &quot;image&quot;: &quot;/assets/images/blog/jekyll-liquid-filters-cheatsheet.webp&quot;,
  &quot;author&quot;: &quot;Marcus Webb&quot;,
  &quot;category&quot;: &quot;Tutorial&quot;,
  &quot;featured&quot;: false,
  &quot;related_category&quot;: &quot;Blog&quot;,
  &quot;toc&quot;: true,
  &quot;slug&quot;: &quot;jekyll-liquid-filters-cheatsheet&quot;,
  &quot;ext&quot;: &quot;.md&quot;,
  &quot;tags&quot;: [

  ]
}

sample

Returns a random element from an array.

Millennial is a clean, straightforward Jekyll blog theme designed for writers who want a no-nonsense publishing platform. The layout is minimal by design β€” no sidebars, no clutter, just posts.

Tag archive pages organise content for readers, and pagination handles large archives gracefully.

**Who is it for?** Bloggers who want a lean, focused reading experience without any distracting design elements.

number_of_words

Counts words in a string.

1318

Chaining filters

Filters can be chained β€” output from one becomes input to the next.

/blog/jekyll-liquid-filters:-the-complete-cheatsheet-(2026)

…

Quick reference card

Filter What it does
append / prepend Add text before or after
upcase / downcase Change case
strip_html Remove HTML tags
truncate / truncatewords Shorten text
replace Find and replace
date Format a date
where Filter array by property
map Extract one property from array
sort Sort an array
size Count items
default Fallback value
relative_url Prefix baseurl
jsonify Convert to JSON
markdownify Render Markdown

Bookmark this page β€” you will reference it constantly.

Share LinkedIn