<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
  
  <title>Eleventy Documentation</title>
  <subtitle>Updates to the Eleventy Documentation, sorted by recent git commits.</subtitle>
  <link href="https://www.11ty.dev/docs/feed.xml" rel="self" />
  <link href="https://www.11ty.dev/" />
  <updated>2026-05-05T14:21:06Z</updated>
  <id>https://www.11ty.dev/</id>
  <author>
    <name>Zach Leatherman</name>
  </author>
  <entry>
    <title>Watch and Serve</title>
    <link href="https://www.11ty.dev/docs/watch-serve/" />
    <updated>2026-05-05T14:21:06Z</updated>
    <id>https://www.11ty.dev/docs/watch-serve/</id>
    <content type="html">&lt;h1 id=&quot;watch-files-and-use-development-servers&quot;&gt;Watch Files and use Development Servers&lt;/h1&gt;
&lt;details class=&quot;toc&quot;&gt;
&lt;summary&gt;On this page&lt;/summary&gt;
&lt;div class=&quot;table-of-contents&quot;&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#eleventy-dev-server&quot;&gt;Eleventy Dev Server &lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#add-your-own-watch-targets&quot;&gt;Add Your Own Watch Targets&lt;/a&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#reset-configuration&quot;&gt;Reset configuration &lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#reload-without-running-a-build&quot;&gt;Reload without running a build&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#ignore-watching-files&quot;&gt;Ignore Watching Files&lt;/a&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#gitignore&quot;&gt;.gitignore&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#configuration-api&quot;&gt;Configuration API &lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#watch-java-script-dependencies&quot;&gt;Watch JavaScript Dependencies&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#add-delay-before-re-running&quot;&gt;Add delay before re-running&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#advanced-chokidar-configuration&quot;&gt;Advanced chokidar Configuration&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;/details&gt;
&lt;div id=&quot;browsersync&quot;&gt;&lt;/div&gt;
&lt;div id=&quot;swap-back-to-browsersync&quot;&gt;&lt;/div&gt;
&lt;p&gt;Running Eleventy with &lt;a href=&quot;https://www.11ty.dev/docs/usage/#re-run-eleventy-when-you-save&quot;&gt;&lt;code&gt;--serve&lt;/code&gt;&lt;/a&gt; starts a hot reloading local development server for you.&lt;/p&gt;
&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/dev-server/&quot;&gt;Eleventy Dev Server&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/server-browsersync/&quot;&gt;Browsersync&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/server-vite/&quot;&gt;Vite&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;
&lt;p&gt;A development server is optional! Using &lt;a href=&quot;https://www.11ty.dev/docs/usage/#re-run-eleventy-when-you-save&quot;&gt;&lt;code&gt;--watch&lt;/code&gt;&lt;/a&gt; will run Eleventy (and re-run when you save your files) without a server.&lt;/p&gt;
&lt;h2 id=&quot;eleventy-dev-server&quot;&gt;Eleventy Dev Server &lt;span data-pagefind-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;2.0.0&quot;&gt;Added in v2.0.0&lt;/span&gt;&lt;/h2&gt;
&lt;p&gt;Eleventy bundles its own &lt;a href=&quot;https://www.11ty.dev/docs/dev-server/&quot;&gt;dedicated Development Server&lt;/a&gt;. In versions prior to v2, we used &lt;a href=&quot;https://www.11ty.dev/docs/server-browsersync/&quot;&gt;Browsersync, which you can still use with Eleventy if you’d like&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;For most use cases, the default behavior of this server should handle most things automatically. Changing files in your local environment will re-run an Eleventy build and refresh any active web browser sessions on the local site.&lt;/p&gt;
&lt;h2 id=&quot;add-your-own-watch-targets&quot;&gt;Add Your Own Watch Targets&lt;/h2&gt;
&lt;p&gt;The &lt;code&gt;addWatchTarget&lt;/code&gt; config method allows you to manually add a file or directory for Eleventy to watch. When the file or the files in this directory change Eleventy will trigger a build. This is useful if Eleventy is not aware of your project-specific external dependencies.&lt;/p&gt;
&lt;div class=&quot;codetitle codetitle-right-md&quot;&gt;eleventy.config.js&lt;/div&gt;
&lt;is-land on:visible import=&quot;/js/seven-minute-tabs.js&quot;&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush&quot; persist sync autoheight&gt;
&lt;div role=&quot;tablist&quot; aria-label=&quot;Template Language Chooser&quot;&gt;
	&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#tab-id-142-jsesm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jsesm&quot;&gt;ESM&lt;/a&gt;
&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#tab-id-142-jscjs&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jscjs&quot;&gt;CommonJS&lt;/a&gt;
&lt;/div&gt;
  &lt;div id=&quot;tab-id-142-jsesm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-575&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-575&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;&lt;span class=&quot;token keyword&quot;&gt;export&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;default&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addWatchTarget&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;./src/scss/&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div id=&quot;tab-id-142-jscjs&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-576&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-576&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;module&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function-variable function&quot;&gt;exports&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addWatchTarget&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;./src/scss/&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;/is-land&gt;
&lt;p&gt;&lt;strong&gt;Advanced usage note:&lt;/strong&gt; This works with &lt;a href=&quot;https://github.com/paulmillr/chokidar#api&quot;&gt;&lt;code&gt;chokidar&lt;/code&gt; under the hood&lt;/a&gt; and chokidar uses &lt;a href=&quot;https://github.com/micromatch/picomatch&quot;&gt;&lt;code&gt;picomatch&lt;/code&gt; for globbing&lt;/a&gt;:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Both &lt;code&gt;**/*.(png|jpeg)&lt;/code&gt; and &lt;code&gt;**/*.{png,jpeg}&lt;/code&gt; are valid globs to matches any &lt;code&gt;png&lt;/code&gt; or &lt;code&gt;jpeg&lt;/code&gt; file in your project.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;reset-configuration&quot;&gt;Reset configuration &lt;span data-pagefind-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;3.0.0&quot;&gt;Added in v3.0.0&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;We do automatically look for dependencies in your configuration file based on JavaScript &lt;code&gt;require&lt;/code&gt; or &lt;code&gt;import&lt;/code&gt;—watch targets not included in that dependency graph will not reset or re-run your configuration automatically.&lt;/p&gt;
&lt;p&gt;To reset your configuration for a specific watch target, use the &lt;code&gt;resetConfig&lt;/code&gt; option.&lt;/p&gt;
&lt;div class=&quot;codetitle codetitle-right-md&quot;&gt;eleventy.config.js&lt;/div&gt;
&lt;is-land on:visible import=&quot;/js/seven-minute-tabs.js&quot;&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush&quot; persist sync autoheight&gt;
&lt;div role=&quot;tablist&quot; aria-label=&quot;Template Language Chooser&quot;&gt;
	&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#tab-id-143-jsesm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jsesm&quot;&gt;ESM&lt;/a&gt;
&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#tab-id-143-jscjs&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jscjs&quot;&gt;CommonJS&lt;/a&gt;
&lt;/div&gt;
  &lt;div id=&quot;tab-id-143-jsesm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-577&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-577&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;&lt;span class=&quot;token keyword&quot;&gt;export&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;default&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// You probably don’t need this&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addWatchTarget&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;./_config/**&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;token literal-property property&quot;&gt;resetConfig&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token boolean&quot;&gt;true&lt;/span&gt;
	&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div id=&quot;tab-id-143-jscjs&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-578&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-578&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;module&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function-variable function&quot;&gt;exports&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// You probably don’t need this&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addWatchTarget&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;./_config/**&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;token literal-property property&quot;&gt;resetConfig&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token boolean&quot;&gt;true&lt;/span&gt;
	&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;/is-land&gt;
&lt;h3 id=&quot;reload-without-running-a-build&quot;&gt;Reload without running a build&lt;/h3&gt;
&lt;p&gt;Use the &lt;a href=&quot;https://www.11ty.dev/docs/dev-server/#options&quot;&gt;&lt;code&gt;watch&lt;/code&gt; option configurable with Eleventy Dev Server&lt;/a&gt; to refresh your local browser when local files change &lt;em&gt;without&lt;/em&gt; triggering an Eleventy build. This is useful to decouple build processes outside of Eleventy.&lt;/p&gt;
&lt;h2 id=&quot;ignore-watching-files&quot;&gt;Ignore Watching Files&lt;/h2&gt;
&lt;h3 id=&quot;gitignore&quot;&gt;&lt;code&gt;.gitignore&lt;/code&gt;&lt;/h3&gt;
&lt;p&gt;Eleventy will ignore changes to files or folders listed in your &lt;code&gt;.gitignore&lt;/code&gt; file by default, &lt;a href=&quot;https://www.11ty.dev/docs/ignores/#opt-out-of-using-gitignore&quot;&gt;unless &lt;code&gt;setUseGitIgnore&lt;/code&gt; is turned off&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;configuration-api&quot;&gt;Configuration API &lt;span data-pagefind-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;2.0.0-canary.18&quot;&gt;Added in v2.0.0&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;Previously, &lt;a href=&quot;https://www.11ty.dev/docs/ignores/#configuration-api&quot;&gt;the configuration API ignores for template processing&lt;/a&gt; were also used as ignores for watching (e.g. &lt;code&gt;eleventyConfig.ignores.add(&amp;quot;README.md&amp;quot;)&lt;/code&gt;).&lt;/p&gt;
&lt;p&gt;New in v2.0.0, watch target ignores now have their own dedicated API:&lt;/p&gt;
&lt;div class=&quot;codetitle codetitle-right-md&quot;&gt;eleventy.config.js&lt;/div&gt;
&lt;is-land on:visible import=&quot;/js/seven-minute-tabs.js&quot;&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush&quot; persist sync autoheight&gt;
&lt;div role=&quot;tablist&quot; aria-label=&quot;Template Language Chooser&quot;&gt;
	&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#tab-id-144-jsesm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jsesm&quot;&gt;ESM&lt;/a&gt;
&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#tab-id-144-jscjs&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jscjs&quot;&gt;CommonJS&lt;/a&gt;
&lt;/div&gt;
  &lt;div id=&quot;tab-id-144-jsesm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-579&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-579&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;&lt;span class=&quot;token keyword&quot;&gt;export&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;default&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// Do not rebuild when README.md changes (You can use a glob here too)&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;watchIgnores&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;add&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;README.md&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;

	&lt;span class=&quot;token comment&quot;&gt;// Or delete entries too&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;watchIgnores&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;delete&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;README.md&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div id=&quot;tab-id-144-jscjs&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-580&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-580&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;module&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function-variable function&quot;&gt;exports&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// Do not rebuild when README.md changes (You can use a glob here too)&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;watchIgnores&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;add&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;README.md&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;

	&lt;span class=&quot;token comment&quot;&gt;// Or delete entries too&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;watchIgnores&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;delete&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;README.md&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;/is-land&gt;
&lt;p&gt;The &lt;code&gt;watchIgnores&lt;/code&gt; Set starts with a default &lt;code&gt;**/node_modules/**&lt;/code&gt; entry.&lt;/p&gt;
&lt;h2 id=&quot;watch-java-script-dependencies&quot;&gt;Watch JavaScript Dependencies&lt;/h2&gt;
&lt;p&gt;When in &lt;code&gt;--watch&lt;/code&gt; mode, Eleventy will spider the dependencies of your &lt;a href=&quot;https://www.11ty.dev/docs/languages/javascript/&quot;&gt;JavaScript Templates&lt;/a&gt; (&lt;code&gt;.11ty.js&lt;/code&gt;), &lt;a href=&quot;https://www.11ty.dev/docs/data-js/&quot;&gt;JavaScript Data Files&lt;/a&gt; (&lt;code&gt;.11tydata.js&lt;/code&gt; or &lt;code&gt;_data/**/*.js&lt;/code&gt;), or Configuration File (usually &lt;code&gt;eleventy.config.js&lt;/code&gt;) to watch those files too. Files in &lt;code&gt;node_modules&lt;/code&gt; directories are ignored. This feature is &lt;em&gt;enabled by default&lt;/em&gt;.&lt;/p&gt;
&lt;div class=&quot;codetitle codetitle-right-md&quot;&gt;eleventy.config.js&lt;/div&gt;
&lt;is-land on:visible import=&quot;/js/seven-minute-tabs.js&quot;&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush&quot; persist sync autoheight&gt;
&lt;div role=&quot;tablist&quot; aria-label=&quot;Template Language Chooser&quot;&gt;
	&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#tab-id-145-jsesm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jsesm&quot;&gt;ESM&lt;/a&gt;
&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#tab-id-145-jscjs&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jscjs&quot;&gt;CommonJS&lt;/a&gt;
&lt;/div&gt;
  &lt;div id=&quot;tab-id-145-jsesm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-581&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-581&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;&lt;span class=&quot;token keyword&quot;&gt;export&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;default&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// Enabled by default&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;setWatchJavaScriptDependencies&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token boolean&quot;&gt;false&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div id=&quot;tab-id-145-jscjs&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-582&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-582&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;module&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function-variable function&quot;&gt;exports&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// Enabled by default&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;setWatchJavaScriptDependencies&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token boolean&quot;&gt;false&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;/is-land&gt;
&lt;h2 id=&quot;add-delay-before-re-running&quot;&gt;Add delay before re-running&lt;/h2&gt;
&lt;p&gt;A hardcoded amount of time Eleventy will wait before triggering a new build when files have changes during &lt;code&gt;--watch&lt;/code&gt; or &lt;code&gt;--serve&lt;/code&gt; modes. You probably won’t need this, but is useful in some edge cases with other task runners (Gulp, Grunt, etc).&lt;/p&gt;
&lt;div class=&quot;codetitle codetitle-right-md&quot;&gt;eleventy.config.js&lt;/div&gt;
&lt;is-land on:visible import=&quot;/js/seven-minute-tabs.js&quot;&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush&quot; persist sync autoheight&gt;
&lt;div role=&quot;tablist&quot; aria-label=&quot;Template Language Chooser&quot;&gt;
	&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#tab-id-146-jsesm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jsesm&quot;&gt;ESM&lt;/a&gt;
&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#tab-id-146-jscjs&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jscjs&quot;&gt;CommonJS&lt;/a&gt;
&lt;/div&gt;
  &lt;div id=&quot;tab-id-146-jsesm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-583&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-583&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;&lt;span class=&quot;token keyword&quot;&gt;export&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;default&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// default is 0&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;setWatchThrottleWaitTime&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;token comment&quot;&gt;// in milliseconds&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div id=&quot;tab-id-146-jscjs&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-584&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-584&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;module&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function-variable function&quot;&gt;exports&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// default is 0&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;setWatchThrottleWaitTime&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token number&quot;&gt;100&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt; &lt;span class=&quot;token comment&quot;&gt;// in milliseconds&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;/is-land&gt;
&lt;h2 id=&quot;advanced-chokidar-configuration&quot;&gt;Advanced &lt;code&gt;chokidar&lt;/code&gt; Configuration&lt;/h2&gt;
&lt;p&gt;Advanced &lt;a href=&quot;https://github.com/paulmillr/chokidar&quot;&gt;&lt;code&gt;chokidar&lt;/code&gt; options&lt;/a&gt; can be defined using the &lt;code&gt;setChokidarConfig&lt;/code&gt; configuration API method:&lt;/p&gt;
&lt;div class=&quot;codetitle codetitle-right-md&quot;&gt;eleventy.config.js&lt;/div&gt;
&lt;is-land on:visible import=&quot;/js/seven-minute-tabs.js&quot;&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush&quot; persist sync autoheight&gt;
&lt;div role=&quot;tablist&quot; aria-label=&quot;Template Language Chooser&quot;&gt;
	&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#tab-id-147-jsesm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jsesm&quot;&gt;ESM&lt;/a&gt;
&lt;a href=&quot;https://www.11ty.dev/docs/watch-serve/#tab-id-147-jscjs&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jscjs&quot;&gt;CommonJS&lt;/a&gt;
&lt;/div&gt;
  &lt;div id=&quot;tab-id-147-jsesm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-585&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-585&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;&lt;span class=&quot;token keyword&quot;&gt;export&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;default&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;setChokidarConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;token literal-property property&quot;&gt;usePolling&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token boolean&quot;&gt;true&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
		&lt;span class=&quot;token literal-property property&quot;&gt;interval&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token number&quot;&gt;500&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
	&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div id=&quot;tab-id-147-jscjs&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-586&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-586&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;module&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function-variable function&quot;&gt;exports&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;setChokidarConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;token literal-property property&quot;&gt;usePolling&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token boolean&quot;&gt;true&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
		&lt;span class=&quot;token literal-property property&quot;&gt;interval&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token number&quot;&gt;500&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
	&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;/is-land&gt;
&lt;div class=&quot;elv-callout elv-callout-warn&quot;&gt;&lt;div class=&quot;elv-callout-label&quot;&gt;WARNING&lt;/div&gt;&lt;div class=&quot;elv-callout-c&quot;&gt;If you’re using &lt;a href=&quot;https://learn.microsoft.com/en-us/windows/wsl/&quot;&gt;Windows Subsystem for Linux (WSL)&lt;/a&gt; and your project exists &lt;em&gt;outside&lt;/em&gt; of your home directory (&lt;code&gt;~&lt;/code&gt;), you will likely want to use the &lt;code&gt;usePolling&lt;/code&gt; feature to ensure watching works correctly. This is a WSL limitation.&lt;/div&gt;&lt;/div&gt;
</content>
  </entry>
  <entry>
    <title>Virtual Templates</title>
    <link href="https://www.11ty.dev/docs/virtual-templates/" />
    <updated>2026-05-05T14:21:06Z</updated>
    <id>https://www.11ty.dev/docs/virtual-templates/</id>
    <content type="html">&lt;h1 id=&quot;virtual-templates&quot;&gt;Virtual Templates &lt;span data-pagefind-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;3.0.0-alpha.15&quot;&gt;Added in v3.0.0&lt;/span&gt;&lt;/h1&gt;
&lt;p&gt;In addition to template files in your input directory, Eleventy can also process virtual templates defined in your configuration file (or plugins). Related &lt;a href=&quot;https://github.com/11ty/eleventy/issues/1612&quot;&gt;GitHub #1612&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;The &lt;a href=&quot;https://www.11ty.dev/docs/plugins/rss/#virtual-template&quot;&gt;RSS plugin offers a virtual template&lt;/a&gt; to add feeds to your project.&lt;/p&gt;
&lt;h2 id=&quot;api&quot;&gt;API&lt;/h2&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTemplate&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;virtualPath&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; content&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; data &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;virtualPath&lt;/code&gt;: used to determine the template language and data cascade for this template. This path is relative to your project’s input directory.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;content&lt;/code&gt;: usually a string, but maybe JavaScript (if using an &lt;code&gt;11ty.js&lt;/code&gt; template). Can include front matter if the template language supports it.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;data&lt;/code&gt;: a data object tied to the template. A little more ergonomic than front matter but functionally the same.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;example&quot;&gt;Example&lt;/h2&gt;
&lt;h3 id=&quot;markdown-html-via-liquid-layout&quot;&gt;Markdown, HTML (via Liquid) Layout&lt;/h3&gt;
&lt;div class=&quot;codetitle codetitle-right-md&quot;&gt;eleventy.config.js&lt;/div&gt;
&lt;is-land on:visible import=&quot;/js/seven-minute-tabs.js&quot;&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush&quot; persist sync autoheight&gt;
&lt;div role=&quot;tablist&quot; aria-label=&quot;Template Language Chooser&quot;&gt;
	&lt;a href=&quot;https://www.11ty.dev/docs/virtual-templates/#tab-id-148-jsesm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jsesm&quot;&gt;ESM&lt;/a&gt;
&lt;a href=&quot;https://www.11ty.dev/docs/virtual-templates/#tab-id-148-jscjs&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jscjs&quot;&gt;CommonJS&lt;/a&gt;
&lt;/div&gt;
  &lt;div id=&quot;tab-id-148-jsesm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-587&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-587&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;&lt;span class=&quot;token keyword&quot;&gt;export&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;default&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// Create content templates Files&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTemplate&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;virtual.md&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token template-string&quot;&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;# Hello&lt;/span&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
        	&lt;span class=&quot;token literal-property property&quot;&gt;layout&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;virtual.html&quot;&lt;/span&gt;
	&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;

	&lt;span class=&quot;token comment&quot;&gt;// Works great with Layouts too&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTemplate&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;_includes/virtual.html&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token template-string&quot;&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&amp;lt;!-- Layout --&gt;{{ content }}&lt;/span&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div id=&quot;tab-id-148-jscjs&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-588&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-588&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;module&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function-variable function&quot;&gt;exports&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// Create content templates Files&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTemplate&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;virtual.md&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token template-string&quot;&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;# Hello&lt;/span&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
        	&lt;span class=&quot;token literal-property property&quot;&gt;layout&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;virtual.html&quot;&lt;/span&gt;
	&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;

	&lt;span class=&quot;token comment&quot;&gt;// Works great with Layouts too&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTemplate&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;_includes/virtual.html&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token template-string&quot;&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&amp;lt;!-- Layout --&gt;{{ content }}&lt;/span&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;/is-land&gt;
&lt;h3 id=&quot;java-script&quot;&gt;JavaScript&lt;/h3&gt;
&lt;p&gt;Any of the JavaScript shapes on &lt;a href=&quot;https://www.11ty.dev/docs/languages/javascript/&quot;&gt;&lt;code&gt;11ty.js&lt;/code&gt; templates&lt;/a&gt; are also supported here.&lt;/p&gt;
&lt;div class=&quot;codetitle codetitle-right-md&quot;&gt;eleventy.config.js&lt;/div&gt;
&lt;is-land on:visible import=&quot;/js/seven-minute-tabs.js&quot;&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush&quot; persist sync autoheight&gt;
&lt;div role=&quot;tablist&quot; aria-label=&quot;Template Language Chooser&quot;&gt;
	&lt;a href=&quot;https://www.11ty.dev/docs/virtual-templates/#tab-id-149-jsesm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jsesm&quot;&gt;ESM&lt;/a&gt;
&lt;a href=&quot;https://www.11ty.dev/docs/virtual-templates/#tab-id-149-jscjs&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jscjs&quot;&gt;CommonJS&lt;/a&gt;
&lt;/div&gt;
  &lt;div id=&quot;tab-id-149-jsesm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-589&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-589&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;&lt;span class=&quot;token keyword&quot;&gt;export&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;default&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// Create content templates Files&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTemplate&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;virtual.11ty.js&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;token keyword&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;token template-string&quot;&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&amp;lt;h1&gt;Hello&amp;lt;/h1&gt;&lt;/span&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
	&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div id=&quot;tab-id-149-jscjs&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-590&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-590&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;module&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function-variable function&quot;&gt;exports&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// Create content templates Files&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTemplate&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;virtual.11ty.js&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;data&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;token keyword&quot;&gt;return&lt;/span&gt; &lt;span class=&quot;token template-string&quot;&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&amp;lt;h1&gt;Hello&amp;lt;/h1&gt;&lt;/span&gt;&lt;span class=&quot;token template-punctuation string&quot;&gt;`&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
	&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;/is-land&gt;
</content>
  </entry>
  <entry>
    <title>Release History</title>
    <link href="https://www.11ty.dev/docs/versions/" />
    <updated>2026-05-05T14:21:06Z</updated>
    <id>https://www.11ty.dev/docs/versions/</id>
    <content type="html">&lt;h1 id=&quot;release-history&quot;&gt;Release History&lt;/h1&gt;
&lt;p&gt;You can also browse the latest releases &lt;a href=&quot;https://www.npmjs.com/package/@11ty/eleventy?activeTab=versions&quot;&gt;on npm&lt;/a&gt; or &lt;a href=&quot;https://github.com/11ty/eleventy/releases&quot;&gt;on GitHub&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&quot;major-branches&quot;&gt;Major Branches&lt;/h2&gt;
&lt;ul&gt;
	&lt;li class=&quot;inlinelist-item&quot;&gt;&lt;a href=&quot;https://www.11ty.dev/docs/&quot;&gt;&lt;code&gt;www.11ty.dev&lt;/code&gt;&lt;/a&gt; for &lt;code&gt;v3&lt;/code&gt; (Latest, stable)&lt;/li&gt;
	&lt;li class=&quot;inlinelist-item&quot;&gt;&lt;a href=&quot;https://v2.11ty.dev/docs/&quot;&gt;&lt;code&gt;v2.11ty.dev&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li class=&quot;inlinelist-item&quot;&gt;&lt;a href=&quot;https://v1.11ty.dev/docs/&quot;&gt;&lt;code&gt;v1.11ty.dev&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
	&lt;li class=&quot;inlinelist-item&quot;&gt;&lt;a href=&quot;https://v0.11ty.dev/docs/&quot;&gt;&lt;code&gt;v0.11ty.dev&lt;/code&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;full-release-history&quot;&gt;Full Release History&lt;/h2&gt;
&lt;p&gt;&lt;em&gt;×222 releases total since &lt;a href=&quot;https://github.com/11ty/eleventy/commit/00ad9192605d5d501de6aae193701c5a2297ef2c&quot;&gt;November 26, 2017&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;
&lt;table&gt;
  &lt;thead&gt;
    &lt;tr&gt;
      &lt;th&gt;Version&lt;/th&gt;
      &lt;th&gt;Docs&lt;/th&gt;
			&lt;th&gt;Date&lt;/th&gt;
      &lt;th&gt;More…&lt;/th&gt;
    &lt;/tr&gt;
  &lt;/thead&gt;
  &lt;tbody&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v4.0.0-alpha.7&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2026 Mar 20&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v4.0.0-alpha.7&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v4.0.0-alpha.6&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Dec 11&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v4.0.0-alpha.6&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v4.0.0-alpha.5&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Dec 05&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v4.0.0-alpha.5&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v4.0.0-alpha.4&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Aug 01&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v4.0.0-alpha.4&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v4.0.0-alpha.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Jul 30&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v4.0.0-alpha.3&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v4.0.0-alpha.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Jul 30&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v4.0.0-alpha.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v4.0.0-alpha.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Jul 30&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v4.0.0-alpha.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.5&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://www.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2026 Mar 18&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.5&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.4&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v3.1.4/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2026 Mar 18&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.4&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.3&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v3.1.3/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2026 Mar 18&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.3&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.2&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://www.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Jun 24&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.2-beta.4&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Jun 23&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.2-beta.4&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.2-beta.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Jun 20&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.2-beta.3&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.2-beta.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Jun 18&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.2-beta.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.2-beta.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Jun 16&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.2-beta.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.1&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://www.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Jun 03&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.1-beta.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 May 31&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.1-beta.3&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.1-beta.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 May 31&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.1-beta.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.1-beta.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 May 30&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.1-beta.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://www.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 May 13&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.0-beta.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Apr 18&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.0-beta.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.1.0-alpha.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Apr 14&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.1.0-alpha.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.1-alpha.5&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Mar 14&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.1-alpha.5&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.1-alpha.4&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Jan 29&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.1-alpha.4&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.1-alpha.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Jan 14&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.1-alpha.3&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.1-alpha.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2025 Jan 14&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.1-alpha.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.1-alpha.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Dec 20&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.1-alpha.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://www.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Oct 01&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-beta.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Sep 30&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-beta.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-beta.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Jul 31&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-beta.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.20&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Sep 11&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.20&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.19&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Sep 04&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.19&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.18&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Jul 30&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.18&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.17&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Jul 16&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.17&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.16&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Jul 09&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.16&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.15&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Jul 09&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.15&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.14&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Jun 27&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.14&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.13&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Jun 12&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.13&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.12&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Jun 11&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.12&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.11&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2024 Jun 10&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.11&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.10&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.10&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.9&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.9&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.7&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.7&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.5&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.5&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.4&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.4&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.3&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.2&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v3.0.0-alpha.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v3.0.0-alpha.1&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.2-alpha.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.2-alpha.2&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.2-alpha.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.2-alpha.1&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.1&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v2-0-1.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2023 Mar 28&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.1-beta.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.1-beta.2&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.1-beta.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.1-beta.1&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.1-alpha.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.1-alpha.3&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.1-alpha.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.1-alpha.2&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.1-alpha.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.1-alpha.1&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v2-0-0.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2023 Feb 08&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.35&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.35&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.34&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.34&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.33&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.33&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.32&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.32&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.31&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.31&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.30&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.30&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.29&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.29&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.28&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.28&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.27&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.27&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.26&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.26&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.25&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.25&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.24&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.24&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.23&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.23&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.22&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.22&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.21&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.21&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.20&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.20&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.19&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.19&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.18&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.18&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.17&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.17&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.15&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.15&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.14&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.14&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.13&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.13&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.12&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.12&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.11&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.11&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.10&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.10&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.9&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.9&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.8&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.8&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.7&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.7&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.6&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.6&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.5&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.5&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.4&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.4&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.3&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.2&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-canary.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-canary.1&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-beta.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2023 Jan 30&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-beta.3&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-beta.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2023 Jan 26&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-beta.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v2.0.0-beta.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2023 Jan 18&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v2.0.0-beta.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.2&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v1-0-2.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2022 Aug 16&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.1&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v1-0-1.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2022 Apr 18&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.1-canary.4&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.1-canary.4&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.1-canary.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.1-canary.3&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.1-canary.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.1-canary.2&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.1-canary.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.1-canary.1&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v1-0-0.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2022 Jan 08&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.50&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.50&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.49&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.49&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.48&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.48&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.47&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.47&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.46&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.46&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.45&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.45&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.44&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.44&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.43&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.43&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.42&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.42&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.41&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.41&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.40&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.40&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.39&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.39&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.38&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.38&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.37&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.37&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.36&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.36&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.35&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.35&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.34&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.34&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.33&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.33&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.32&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.32&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.31&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.31&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.30&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.30&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.29&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.29&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.28&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.28&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.27&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.27&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.26&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.26&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.25&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.25&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.24&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.24&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.23&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.23&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.22&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.22&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.21&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.21&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.20&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.20&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.19&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.19&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.18&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.18&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.17&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.17&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.16&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.16&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.15&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.15&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.14&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.14&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.13&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.13&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.12&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.12&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.11&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.11&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.10&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.10&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.9&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.9&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.8&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.8&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.7&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.7&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.6&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.6&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.5&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.5&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.4&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.4&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.3&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-canary.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-canary.1&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-beta.10&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-beta.10&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-beta.9&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-beta.9&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-beta.8&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-beta.8&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-beta.7&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-beta.7&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-beta.6&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-beta.6&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-beta.5&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-beta.5&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-beta.4&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-beta.4&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-beta.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-beta.3&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-beta.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-beta.2&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v1.0.0-beta.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v1.0.0-beta.1&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.12.1&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-12-1.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2021 Mar 19&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.12.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.12.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-12-0.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2021 Mar 19&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.12.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.11.1&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-11-1.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2020 Oct 22&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.11.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.11.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-11-0.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2020 May 10&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.11.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.11.0-beta.4&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.11.0-beta.4&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.11.0-beta.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.11.0-beta.3&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.11.0-beta.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.11.0-beta.2&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.11.0-beta.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.11.0-beta.1&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.10.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-10-0.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2020 Jan 07&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.10.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.10.0-beta.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2020 Jan 04&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.10.0-beta.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.10.0-beta.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2019 Dec 09&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.10.0-beta.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.9.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-9-0.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2019 Aug 27&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.9.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.9.0-beta.3&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.9.0-beta.3&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.9.0-beta.2&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2019 Aug 17&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.9.0-beta.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.9.0-beta.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2019 Jul 26&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.9.0-beta.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.8.3&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-8-3.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2019 May 04&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.8.3&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.8.2&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-8-2.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2019 Apr 09&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.8.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.8.1&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-8-1.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2019 Apr 06&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.8.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.8.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-8-0.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2019 Apr 04&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.8.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.8.0-beta.1&lt;/code&gt; &lt;span class=&quot;minilink&quot;&gt;Prerelease&lt;/span&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.8.0-beta.1&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.7.1&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-7-1.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2019 Jan 12&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.7.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.7.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-7-0.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2019 Jan 11&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.7.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.6.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-6-0.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Nov 25&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.6.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.5.4&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-5-4.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Sep 28&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.5.4&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.5.3&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-5-3.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Aug 29&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.5.3&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.5.2&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-5-2.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Aug 15&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.5.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.5.1&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-5-1.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Aug 15&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.5.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.5.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-5-0.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Jul 05&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.5.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.4.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-4-0.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Jun 20&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.4.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.3.6&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://v0-3-6.11ty.dev/docs/&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Jun 07&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.3.6&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.3.5&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.3.5/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 May 22&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.3.5&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.3.4&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.3.4/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 May 11&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.3.4&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.3.3&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.3.3/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Apr 17&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.3.3&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.3.2&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.3.2&quot;&gt;GitHub Tag&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.3.1&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.3.1/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Apr 05&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.3.1&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.3.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.3.0/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Mar 26&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.3.0&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.15&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.15/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Mar 06&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.2.15&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.14&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.14/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Feb 16&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.2.14&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.13&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.13/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.12&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.12/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.11&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.11/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.10&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.10/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Jan 25&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.2.10&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.9&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.9/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.8&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.8/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.7&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.7/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Jan 17&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.2.7&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.6&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.6/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Jan 12&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.2.6&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.5&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.5/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.4&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.4/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.3&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.3/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.2&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.2/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;em&gt;2018 Jan 09&lt;/em&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/releases/tag/v0.2.2&quot;&gt;GitHub Release&lt;/a&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.1&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.1/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.2.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.2.0/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.1.9&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.1.9/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.1.8&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.1.8/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.1.7&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.1.7/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.1.6&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.1.6/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.1.5&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.1.5/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.1.4&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.1.4/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.1.3&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.1.3/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.1.2&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.1.2/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.1.1&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.1.1/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;
    &lt;tr&gt;
      &lt;td&gt;&lt;code&gt;v0.1.0&lt;/code&gt;&lt;/td&gt;
			&lt;td&gt;&lt;a href=&quot;https://github.com/11ty/eleventy/blob/v0.1.0/README.md&quot;&gt;&lt;strong&gt;Docs&lt;/strong&gt;&lt;/a&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
			&lt;td&gt;&lt;/td&gt;
    &lt;/tr&gt;&lt;/tbody&gt;
&lt;/table&gt;</content>
  </entry>
  <entry>
    <title>Command Line Usage</title>
    <link href="https://www.11ty.dev/docs/usage/" />
    <updated>2026-05-05T14:21:06Z</updated>
    <id>https://www.11ty.dev/docs/usage/</id>
    <content type="html">&lt;h1 id=&quot;command-line-usage&quot;&gt;Command Line Usage&lt;/h1&gt;
&lt;div class=&quot;elv-callout elv-callout-info&quot;&gt;&lt;div class=&quot;elv-callout-label&quot;&gt;Prerequisites&lt;/div&gt;&lt;div class=&quot;elv-callout-c&quot;&gt;&lt;ol&gt;
&lt;li&gt;Eleventy runs in a Terminal application. &lt;a href=&quot;https://www.11ty.dev/docs/terminal-window/&quot;&gt;&lt;em&gt;Well, wait—what is a Terminal?&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Have you already &lt;a href=&quot;https://www.11ty.dev/docs/#step-2-install-eleventy&quot;&gt;installed Eleventy&lt;/a&gt;?&lt;/li&gt;
&lt;/ol&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Here’s the first command you can enter in your Terminal application to run Eleventy:&lt;/p&gt;
&lt;script type=&quot;module&quot; src=&quot;https://www.11ty.dev/js/seven-minute-tabs.js&quot;&gt;&lt;/script&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush tabs-right&quot; persist sync autoheight&gt;
	&lt;div role=&quot;tablist&quot; aria-label=&quot;Choose your Package Manager&quot;&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-npm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:npm&quot;&gt;npm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-pnpm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:pnpm&quot;&gt;pnpm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-yarn&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:yarn&quot;&gt;yarn&lt;/a&gt;
	&lt;/div&gt;
	&lt;div id=&quot;usage-npm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-591&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-591&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Searches the current directory, outputs to ./_site&lt;/span&gt;
npx @11ty/eleventy

&lt;span class=&quot;token comment&quot;&gt;# `npx @11ty/eleventy` is the same as:&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--input&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;. &lt;span class=&quot;token parameter variable&quot;&gt;--output&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;_site&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-pnpm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-592&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-592&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Searches the current directory, outputs to ./_site&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy

&lt;span class=&quot;token comment&quot;&gt;# `pnpm exec eleventy` is the same as:&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--input&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;. &lt;span class=&quot;token parameter variable&quot;&gt;--output&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;_site&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-yarn&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-593&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-593&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Searches the current directory, outputs to ./_site&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy

&lt;span class=&quot;token comment&quot;&gt;# `yarn exec eleventy` is the same as:&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--input&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;. &lt;span class=&quot;token parameter variable&quot;&gt;--output&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;_site&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;p&gt;Read more about &lt;a href=&quot;https://www.11ty.dev/docs/config/#input-directory&quot;&gt;&lt;code&gt;--input&lt;/code&gt;&lt;/a&gt; and &lt;a href=&quot;https://www.11ty.dev/docs/config/#output-directory&quot;&gt;&lt;code&gt;--output&lt;/code&gt;&lt;/a&gt;. Note that setting the input and output directories via &lt;a href=&quot;https://www.11ty.dev/docs/config/&quot;&gt;config&lt;/a&gt; file is preferred.&lt;/p&gt;
&lt;p&gt;A hypothetical &lt;code&gt;template.md&lt;/code&gt; in the current directory would be rendered to &lt;code&gt;_site/template/index.html&lt;/code&gt;. Read more at &lt;a href=&quot;https://www.11ty.dev/docs/permalinks/&quot;&gt;Permalinks&lt;/a&gt;.&lt;/p&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush tabs-right&quot; persist sync autoheight&gt;
	&lt;div role=&quot;tablist&quot; aria-label=&quot;Choose your Package Manager&quot;&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-formats-npm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:npm&quot;&gt;npm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-formats-pnpm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:pnpm&quot;&gt;pnpm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-formats-yarn&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:yarn&quot;&gt;yarn&lt;/a&gt;
	&lt;/div&gt;
	&lt;div id=&quot;usage-formats-npm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-594&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-594&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Use only a subset of template types&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--formats&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;md,html,ejs

&lt;span class=&quot;token comment&quot;&gt;# Don’t process any formats&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--formats&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;

&lt;span class=&quot;token comment&quot;&gt;# Find out the most up-to-date list of commands (there are more)&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--help&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-formats-pnpm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-595&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-595&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Use only a subset of template types&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--formats&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;md,html,ejs

&lt;span class=&quot;token comment&quot;&gt;# Don’t process any formats&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--formats&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;

&lt;span class=&quot;token comment&quot;&gt;# Find out the most up-to-date list of commands (there are more)&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--help&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-formats-yarn&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-596&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-596&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Use only a subset of template types&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--formats&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;md,html,ejs

&lt;span class=&quot;token comment&quot;&gt;# Don’t process any formats&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--formats&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;

&lt;span class=&quot;token comment&quot;&gt;# Find out the most up-to-date list of commands (there are more)&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--help&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;ul&gt;
&lt;li&gt;The default for &lt;code&gt;--formats=&lt;/code&gt; changed in v3.0.0 from an alias of &lt;code&gt;*&lt;/code&gt; to an empty set.&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;re-run-eleventy-when-you-save&quot;&gt;Re-run Eleventy when you save&lt;/h3&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush tabs-right&quot; persist sync autoheight&gt;
	&lt;div role=&quot;tablist&quot; aria-label=&quot;Choose your Package Manager&quot;&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-serve-npm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:npm&quot;&gt;npm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-serve-pnpm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:pnpm&quot;&gt;pnpm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-serve-yarn&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:yarn&quot;&gt;yarn&lt;/a&gt;
	&lt;/div&gt;
	&lt;div id=&quot;usage-serve-npm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-597&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-597&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Add a web server to apply changes and&lt;/span&gt;
&lt;span class=&quot;token comment&quot;&gt;# refresh automatically. We’ll also --watch for you.&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt;

&lt;span class=&quot;token comment&quot;&gt;# Change the web server’s port—use localhost:8081&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--port&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token number&quot;&gt;8081&lt;/span&gt;

&lt;span class=&quot;token comment&quot;&gt;# Watch and re-run when files change, without the web server.&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--watch&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-serve-pnpm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-598&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-598&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Add a web server to apply changes and&lt;/span&gt;
&lt;span class=&quot;token comment&quot;&gt;# refresh automatically. We’ll also --watch for you.&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt;

&lt;span class=&quot;token comment&quot;&gt;# Change the web server’s port—use localhost:8081&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--port&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token number&quot;&gt;8081&lt;/span&gt;

&lt;span class=&quot;token comment&quot;&gt;# Watch and re-run when files change, without the web server.&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--watch&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-serve-yarn&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-599&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-599&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Add a web server to apply changes and&lt;/span&gt;
&lt;span class=&quot;token comment&quot;&gt;# refresh automatically. We’ll also --watch for you.&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt;

&lt;span class=&quot;token comment&quot;&gt;# Change the web server’s port—use localhost:8081&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--port&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;&lt;span class=&quot;token number&quot;&gt;8081&lt;/span&gt;

&lt;span class=&quot;token comment&quot;&gt;# Watch and re-run when files change, without the web server.&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--watch&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;h3 id=&quot;quiet-if-the-output-is-too-noisy&quot;&gt;&lt;code&gt;--quiet&lt;/code&gt; if the Output is Too Noisy&lt;/h3&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush tabs-right&quot; persist sync autoheight&gt;
	&lt;div role=&quot;tablist&quot; aria-label=&quot;Choose your Package Manager&quot;&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-quiet-npm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:npm&quot;&gt;npm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-quiet-pnpm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:pnpm&quot;&gt;pnpm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-quiet-yarn&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:yarn&quot;&gt;yarn&lt;/a&gt;
	&lt;/div&gt;
	&lt;div id=&quot;usage-quiet-npm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-600&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-600&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Shhhhh—Don’t log so much to the console&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--quiet&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-quiet-pnpm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-601&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-601&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Shhhhh—Don’t log so much to the console&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--quiet&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-quiet-yarn&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-602&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-602&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Shhhhh—Don’t log so much to the console&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--quiet&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;h3 id=&quot;dryrun-to-do-a-little-testing&quot;&gt;&lt;code&gt;--dryrun&lt;/code&gt; to do a Little Testing&lt;/h3&gt;
&lt;p&gt;Runs without writing to the file system. Useful when &lt;a href=&quot;https://www.11ty.dev/docs/debugging/&quot;&gt;debugging&lt;/a&gt;.&lt;/p&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush tabs-right&quot; persist sync autoheight&gt;
	&lt;div role=&quot;tablist&quot; aria-label=&quot;Choose your Package Manager&quot;&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-dry-npm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:npm&quot;&gt;npm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-dry-pnpm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:pnpm&quot;&gt;pnpm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-dry-yarn&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:yarn&quot;&gt;yarn&lt;/a&gt;
	&lt;/div&gt;
	&lt;div id=&quot;usage-dry-npm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-603&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-603&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Run Eleventy but don’t write any files&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--dryrun&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-dry-pnpm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-604&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-604&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Run Eleventy but don’t write any files&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--dryrun&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-dry-yarn&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-605&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-605&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Run Eleventy but don’t write any files&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--dryrun&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;h3 id=&quot;config-to-change-the-config-file-name&quot;&gt;&lt;code&gt;--config&lt;/code&gt; to Change the Config file name&lt;/h3&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush tabs-right&quot; persist sync autoheight&gt;
	&lt;div role=&quot;tablist&quot; aria-label=&quot;Choose your Package Manager&quot;&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-cfg-npm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:npm&quot;&gt;npm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-cfg-pnpm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:pnpm&quot;&gt;pnpm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-cfg-yarn&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:yarn&quot;&gt;yarn&lt;/a&gt;
	&lt;/div&gt;
	&lt;div id=&quot;usage-cfg-npm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-606&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-606&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Override the default eleventy project config filename (.eleventy.js)&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--config&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;myeleventyconfig.js&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-cfg-pnpm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-607&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-607&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Override the default eleventy project config filename (.eleventy.js)&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--config&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;myeleventyconfig.js&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-cfg-yarn&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-608&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-608&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Override the default eleventy project config filename (.eleventy.js)&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--config&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;myeleventyconfig.js&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;p&gt;Read more about &lt;a href=&quot;https://www.11ty.dev/docs/config/&quot;&gt;Configuration files&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;&lt;span data-pagefind-ignore eleventy:id-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;v3.0.0-alpha.18&quot;&gt;Added in v3.0.0&lt;/span&gt;If your specified &lt;code&gt;--config&lt;/code&gt; file does not exist, Eleventy will throw an error.&lt;/p&gt;
&lt;h3 id=&quot;to-can-output-json&quot;&gt;&lt;code&gt;--to&lt;/code&gt; can output JSON &lt;span data-pagefind-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;1.0.0&quot;&gt;Added in v1.0.0&lt;/span&gt;&lt;/h3&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush tabs-right&quot; persist sync autoheight&gt;
	&lt;div role=&quot;tablist&quot; aria-label=&quot;Choose your Package Manager&quot;&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-json-npm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:npm&quot;&gt;npm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-json-pnpm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:pnpm&quot;&gt;pnpm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-json-yarn&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:yarn&quot;&gt;yarn&lt;/a&gt;
	&lt;/div&gt;
	&lt;div id=&quot;usage-json-npm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-609&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-609&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Output a JSON structure (does not write to the file system)&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--to&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;json

&lt;span class=&quot;token comment&quot;&gt;# Output a Newline Deliminated JSON structure (does not write to the file system)&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--to&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;ndjson

&lt;span class=&quot;token comment&quot;&gt;# Default behavior (Output to file system)&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--to&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;fs&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-json-pnpm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-610&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-610&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Output a JSON structure (does not write to the file system)&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--to&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;json

&lt;span class=&quot;token comment&quot;&gt;# Output a Newline Deliminated JSON structure (does not write to the file system)&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--to&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;ndjson

&lt;span class=&quot;token comment&quot;&gt;# Default behavior (Output to file system)&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--to&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;fs&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-json-yarn&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-611&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-611&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Output a JSON structure (does not write to the file system)&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--to&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;json

&lt;span class=&quot;token comment&quot;&gt;# Output a Newline Deliminated JSON structure (does not write to the file system)&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--to&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;ndjson

&lt;span class=&quot;token comment&quot;&gt;# Default behavior (Output to file system)&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--to&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;fs&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;p&gt;Read more about &lt;a href=&quot;https://github.com/ndjson/ndjson-spec&quot;&gt;ndjson&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;incremental-for-partial-incremental-builds&quot;&gt;&lt;code&gt;--incremental&lt;/code&gt; for Partial Incremental Builds&lt;/h3&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush tabs-right&quot; persist sync autoheight&gt;
	&lt;div role=&quot;tablist&quot; aria-label=&quot;Choose your Package Manager&quot;&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-inc-npm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:npm&quot;&gt;npm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-inc-pnpm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:pnpm&quot;&gt;pnpm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-inc-yarn&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:yarn&quot;&gt;yarn&lt;/a&gt;
	&lt;/div&gt;
	&lt;div id=&quot;usage-inc-npm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-612&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-612&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# *Repeat* builds only operate on files that have changed&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--watch&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt;

&lt;span class=&quot;token comment&quot;&gt;# Skip the initial full build with `--ignore-initial`&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt; --ignore-initial

&lt;span class=&quot;token comment&quot;&gt;# Pass in a template path, watch/serve not required&lt;/span&gt;
&lt;span class=&quot;token comment&quot;&gt;# Added in v3.0.0&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;myfile.md&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-inc-pnpm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-613&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-613&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# *Repeat* builds only operate on files that have changed&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--watch&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt;

&lt;span class=&quot;token comment&quot;&gt;# Skip the initial full build with `--ignore-initial`&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt; --ignore-initial

&lt;span class=&quot;token comment&quot;&gt;# Pass in a template path, watch/serve not required&lt;/span&gt;
&lt;span class=&quot;token comment&quot;&gt;# Added in v3.0.0&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;myfile.md&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-inc-yarn&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-614&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-614&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# *Repeat* builds only operate on files that have changed&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--watch&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt;

&lt;span class=&quot;token comment&quot;&gt;# Skip the initial full build with `--ignore-initial`&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt; --ignore-initial

&lt;span class=&quot;token comment&quot;&gt;# Pass in a template path, watch/serve not required&lt;/span&gt;
&lt;span class=&quot;token comment&quot;&gt;# Added in v3.0.0&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;myfile.md&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;p&gt;Read more about &lt;a href=&quot;https://www.11ty.dev/docs/usage/incremental/&quot;&gt;incremental builds&lt;/a&gt;. Related &lt;a href=&quot;https://github.com/11ty/eleventy/issues/3324&quot;&gt;GitHub #3324&lt;/a&gt;&lt;/p&gt;
&lt;h3 id=&quot;ignore-initial-to-run-eleventy-without-an-initial-build&quot;&gt;&lt;code&gt;--ignore-initial&lt;/code&gt; to run Eleventy without an Initial Build &lt;span data-pagefind-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;2.0.0-canary.25&quot;&gt;Added in v2.0.0&lt;/span&gt;&lt;/h3&gt;
&lt;p&gt;Be wary of any file changes that happened while Eleventy wasn’t running!&lt;/p&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush tabs-right&quot; persist sync autoheight&gt;
	&lt;div role=&quot;tablist&quot; aria-label=&quot;Choose your Package Manager&quot;&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-initial-npm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:npm&quot;&gt;npm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-initial-pnpm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:pnpm&quot;&gt;pnpm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-initial-yarn&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:yarn&quot;&gt;yarn&lt;/a&gt;
	&lt;/div&gt;
	&lt;div id=&quot;usage-initial-npm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-615&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-615&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Don’t build when Eleventy starts, only build on file changes&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--watch&lt;/span&gt; --ignore-initial
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; --ignore-initial

&lt;span class=&quot;token comment&quot;&gt;# Works great with Incremental&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt; --ignore-initial&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-initial-pnpm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-616&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-616&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Don’t build when Eleventy starts, only build on file changes&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--watch&lt;/span&gt; --ignore-initial
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; --ignore-initial

&lt;span class=&quot;token comment&quot;&gt;# Works great with Incremental&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt; --ignore-initial&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-initial-yarn&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-617&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-617&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Don’t build when Eleventy starts, only build on file changes&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--watch&lt;/span&gt; --ignore-initial
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; --ignore-initial

&lt;span class=&quot;token comment&quot;&gt;# Works great with Incremental&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--serve&lt;/span&gt; &lt;span class=&quot;token parameter variable&quot;&gt;--incremental&lt;/span&gt; --ignore-initial&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;h3 id=&quot;deeper-insight-into-eleventy-internals&quot;&gt;Deeper insight into Eleventy Internals&lt;/h3&gt;
&lt;p&gt;You can use the &lt;code&gt;DEBUG&lt;/code&gt; &lt;a href=&quot;https://www.11ty.dev/docs/environment-vars/&quot;&gt;environment variable&lt;/a&gt; to enable the &lt;a href=&quot;https://www.11ty.dev/docs/debugging/&quot;&gt;special debug log output&lt;/a&gt;, allowing deeper insight into Eleventy’s internals. For simplicity this example is using the &lt;a href=&quot;https://github.com/kentcdodds/cross-env&quot;&gt;&lt;code&gt;cross-env&lt;/code&gt;&lt;/a&gt; package.&lt;/p&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush tabs-right&quot; persist sync autoheight&gt;
	&lt;div role=&quot;tablist&quot; aria-label=&quot;Choose your Package Manager&quot;&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-debugging-npm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:npm&quot;&gt;npm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-debugging-pnpm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:pnpm&quot;&gt;pnpm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-debugging-yarn&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:yarn&quot;&gt;yarn&lt;/a&gt;
	&lt;/div&gt;
	&lt;div id=&quot;usage-debugging-npm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-618&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-618&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;npx cross-env &lt;span class=&quot;token assign-left variable&quot;&gt;DEBUG&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;Eleventy:* npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--dryrun&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-debugging-pnpm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-619&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-619&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; cross-env &lt;span class=&quot;token assign-left variable&quot;&gt;DEBUG&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;Eleventy:* &lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--dryrun&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-debugging-yarn&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-620&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-620&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; cross-env &lt;span class=&quot;token assign-left variable&quot;&gt;DEBUG&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;Eleventy:* &lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--dryrun&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;p&gt;Learn more about &lt;a href=&quot;https://www.11ty.dev/docs/debugging/&quot;&gt;Eleventy’s Debug Mode log output&lt;/a&gt;.&lt;/p&gt;
&lt;h3 id=&quot;using-the-same-input-and-output&quot;&gt;Using the Same Input and Output&lt;/h3&gt;
&lt;p&gt;Yes, you can use the same &lt;code&gt;input&lt;/code&gt; and &lt;code&gt;output&lt;/code&gt; directories, like so:&lt;/p&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush tabs-right&quot; persist sync autoheight&gt;
	&lt;div role=&quot;tablist&quot; aria-label=&quot;Choose your Package Manager&quot;&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-same-npm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:npm&quot;&gt;npm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-same-pnpm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:pnpm&quot;&gt;pnpm&lt;/a&gt;
		&lt;a href=&quot;https://www.11ty.dev/docs/usage/#usage-same-yarn&quot; role=&quot;tab&quot; data-tabs-persist=&quot;pkgmgr:yarn&quot;&gt;yarn&lt;/a&gt;
	&lt;/div&gt;
	&lt;div id=&quot;usage-same-npm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-621&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-621&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Parse and write Markdown to HTML, respecting directory structure.&lt;/span&gt;
npx @11ty/eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--input&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;. &lt;span class=&quot;token parameter variable&quot;&gt;--output&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;. &lt;span class=&quot;token parameter variable&quot;&gt;--formats&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;md&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-same-pnpm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-622&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-622&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Parse and write Markdown to HTML, respecting directory structure.&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;pnpm&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--input&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;. &lt;span class=&quot;token parameter variable&quot;&gt;--output&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;. &lt;span class=&quot;token parameter variable&quot;&gt;--formats&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;md&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
	&lt;div id=&quot;usage-same-yarn&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-623&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-623&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-bash&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-bash&quot;&gt;&lt;span class=&quot;token comment&quot;&gt;# Parse and write Markdown to HTML, respecting directory structure.&lt;/span&gt;
&lt;span class=&quot;token function&quot;&gt;yarn&lt;/span&gt; &lt;span class=&quot;token builtin class-name&quot;&gt;exec&lt;/span&gt; eleventy &lt;span class=&quot;token parameter variable&quot;&gt;--input&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;. &lt;span class=&quot;token parameter variable&quot;&gt;--output&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;. &lt;span class=&quot;token parameter variable&quot;&gt;--formats&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt;md&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;div class=&quot;elv-callout elv-callout-warn&quot;&gt;&lt;div class=&quot;elv-callout-label&quot;&gt;WARNING&lt;/div&gt;&lt;div class=&quot;elv-callout-c&quot;&gt;Careful with &lt;code&gt;--formats=html&lt;/code&gt; here! If you run Eleventy more than once, we will attempt to process your new output files as input files (which will throw errors). Read more at the &lt;a href=&quot;https://www.11ty.dev/docs/languages/html/#using-the-same-input-and-output-directories&quot;&gt;HTML template docs&lt;/a&gt;.&lt;/div&gt;&lt;/div&gt;
&lt;!--
### Example: Process a Single File

```bash
npx @11ty/eleventy --input=README.md --output=.
```

Writes to `./README/index.html`.
--&gt;
</content>
  </entry>
  <entry>
    <title>Incremental</title>
    <link href="https://www.11ty.dev/docs/usage/incremental/" />
    <updated>2026-05-05T14:21:06Z</updated>
    <id>https://www.11ty.dev/docs/usage/incremental/</id>
    <content type="html">&lt;h1 id=&quot;incremental-builds&quot;&gt;Incremental Builds&lt;/h1&gt;
&lt;p&gt;Incremental builds via the command line flag &lt;code&gt;--incremental&lt;/code&gt; perform a partial build operating only on files that have changed to improve build times when doing local development.&lt;/p&gt;
&lt;p&gt;Let’s check in on the current capabilities and the roadmap:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Templates&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;If you create/update a template file, Eleventy will run the build for that file and only that file.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Layouts&lt;/strong&gt; &lt;span data-pagefind-ignore eleventy:id-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;2.0.0-canary.21&quot;&gt;Added in v2.0.0&lt;/span&gt;
&lt;ul&gt;
&lt;li&gt;When you change a layout file, any templates using that layout file are rebuilt.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Template Dependencies&lt;/strong&gt; &lt;span data-pagefind-ignore eleventy:id-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;2.0.0-canary.19&quot;&gt;Added in v2.0.0&lt;/span&gt;Any templates using a dependency mapped via &lt;a href=&quot;https://www.11ty.dev/docs/languages/custom/#registering-dependencies&quot;&gt;the &lt;code&gt;addDependencies&lt;/code&gt; method&lt;/a&gt; will be rebuilt when those dependencies change.
&lt;ul&gt;
&lt;li&gt;&lt;span data-pagefind-ignore eleventy:id-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;1.0.0&quot;&gt;Added in v1.0.0&lt;/span&gt;This feature was previously exposed as part of the API for &lt;a href=&quot;https://www.11ty.dev/docs/languages/custom/#isincrementalmatch&quot;&gt;Custom template extensions&lt;/a&gt; via the &lt;code&gt;isIncrementalMatch&lt;/code&gt; function.&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Other Includes&lt;/strong&gt;: If the created/updated file is in your &lt;a href=&quot;https://www.11ty.dev/docs/config/#directory-for-includes&quot;&gt;Includes&lt;/a&gt; or &lt;a href=&quot;https://www.11ty.dev/docs/config/#directory-for-layouts-(optional)&quot;&gt;Layouts&lt;/a&gt; directories, a full build will run. &lt;span data-pagefind-ignore eleventy:id-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;2.0.0-canary.21&quot;&gt;Added in v2.0.0&lt;/span&gt;Files used as Eleventy Layouts in your build are exempted.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Collections&lt;/strong&gt; &lt;span data-pagefind-ignore eleventy:id-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;2.0.0-canary.21&quot;&gt;Added in v2.0.0&lt;/span&gt;
&lt;ul&gt;
&lt;li&gt;When you add or delete a tag from a template, any templates using that collection tag (as declared by &lt;a href=&quot;https://www.11ty.dev/docs/pagination/&quot;&gt;&lt;code&gt;pagination.data&lt;/code&gt;&lt;/a&gt; or &lt;a href=&quot;https://www.11ty.dev/docs/collections/#declare-your-collections-for-incremental-builds&quot;&gt;&lt;code&gt;eleventyImport.collections&lt;/code&gt;&lt;/a&gt;) will be rebuilt.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/copy/&quot;&gt;&lt;strong&gt;Passthrough Copy&lt;/strong&gt;&lt;/a&gt;
&lt;ul&gt;
&lt;li&gt;Incremental passthrough copy uses the following rules:&lt;/li&gt;
&lt;li&gt;Only copy a passthrough copy file when it actively changed. Don’t run a template build if only a passthrough copy file has changed.&lt;/li&gt;
&lt;li&gt;If a template has changed, don’t copy the passthrough copy files.&lt;/li&gt;
&lt;li&gt;There was some discussion about making this behavior default at &lt;a href=&quot;https://github.com/11ty/eleventy/issues/1109&quot;&gt;Issue #1109&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;&lt;span data-pagefind-ignore eleventy:id-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;2.0.0-canary.12&quot;&gt;Added in v2.0.0&lt;/span&gt; &lt;a href=&quot;https://www.11ty.dev/docs/copy/#passthrough-during-serve&quot;&gt;Passthrough copy can be emulated during &lt;code&gt;--serve&lt;/code&gt;&lt;/a&gt; to speed up both incremental and non-incremental builds.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Configuration File&lt;/strong&gt;
&lt;ul&gt;
&lt;li&gt;If you create/update your Eleventy configuration file, a full build will run.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Don’t build on startup&lt;/strong&gt;: &lt;span data-pagefind-ignore eleventy:id-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;2.0.0-canary.25&quot;&gt;Added in v2.0.0&lt;/span&gt; &lt;a href=&quot;https://www.11ty.dev/docs/usage/#ignore-initial-to-run-eleventy-without-an-initial-build&quot;&gt;&lt;code&gt;--ignore-initial&lt;/code&gt;&lt;/a&gt; was added and works great with &lt;code&gt;--incremental&lt;/code&gt;.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;additional-template-language-features&quot;&gt;Additional Template Language Features&lt;/h2&gt;
&lt;p&gt;The previously stated incremental features are implemented in Eleventy core and are available to all template languages. Some template types offer additional &lt;code&gt;--incremental&lt;/code&gt; build support:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/languages/webc/&quot;&gt;WebC&lt;/a&gt;: deep knowledge of the full component dependency graph allows us to smartly build templates that use a component when that component is changed.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;to-do&quot;&gt;🗓 To Do&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Cold Start Incremental&lt;/strong&gt;: &lt;code&gt;--incremental&lt;/code&gt; does a full build to start out to provide a fresh starting point to work from. This feature would save the state of the build to the file system for faster cold starts. &lt;a href=&quot;https://github.com/11ty/eleventy/issues/984&quot;&gt;Issue #984&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Incremental on a Build Server&lt;/strong&gt;: Cache the output folder between builds on a CI server like Netlify and only process/write templates that have changed since the last build. &lt;a href=&quot;https://github.com/11ty/eleventy/issues/2775&quot;&gt;Issue #2775&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Global/directory/template Data file usage mapped to templates &lt;a href=&quot;https://github.com/11ty/eleventy/issues/2706&quot;&gt;Issue #2706&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;Template types
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;11ty.js&lt;/code&gt;: Map JavaScript dependencies&lt;/li&gt;
&lt;li&gt;&lt;code&gt;liquid&lt;/code&gt;: Dependency mapping for Liquid templates (&lt;code&gt;{% include %}&lt;/code&gt;, etc)&lt;/li&gt;
&lt;li&gt;&lt;s&gt;Dependency mapping for Nunjucks templates (&lt;code&gt;{% include %}&lt;/code&gt;, etc)&lt;/s&gt; Unlikely due to Nunjucks API limitations.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Collections dependencies improvements: while we have &lt;code&gt;eleventyImport.collections&lt;/code&gt; to declaratively log collections dependencies, we may be able to dive deeper into template syntax APIs to find the symbols in use. &lt;a href=&quot;https://github.com/11ty/eleventy/issues/1615&quot;&gt;Issue #1615&lt;/a&gt; Alternatively we may be able to change the collections API to use Proxies to get smarter about this in an easier way (though previous experiments with this for &lt;code&gt;eleventyComputed&lt;/code&gt; failed in some languages).&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/plugins/render/&quot;&gt;Render plugin&lt;/a&gt;: &lt;code&gt;{% renderFile %}&lt;/code&gt; dependencies&lt;/li&gt;
&lt;li&gt;&lt;em&gt;Stretch goal&lt;/em&gt;: Pagination-level incremental that operates on a subset of data &lt;a href=&quot;https://github.com/11ty/eleventy/issues/1087&quot;&gt;Issue #1087&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</content>
  </entry>
  <entry>
    <title>Transforms</title>
    <link href="https://www.11ty.dev/docs/transforms/" />
    <updated>2026-05-05T14:21:06Z</updated>
    <id>https://www.11ty.dev/docs/transforms/</id>
    <content type="html">&lt;h1 id=&quot;transforms&quot;&gt;Transforms&lt;/h1&gt;
&lt;p&gt;Transforms can modify a template’s output. For example, use a transform to format/prettify an HTML file with proper whitespace.&lt;/p&gt;
&lt;div class=&quot;elv-callout elv-callout-info&quot;&gt;&lt;div class=&quot;elv-callout-c&quot;&gt;The provided transform function &lt;strong&gt;must&lt;/strong&gt; return the original or transformed content.&lt;/div&gt;&lt;/div&gt;
&lt;div class=&quot;codetitle codetitle-right-md&quot;&gt;eleventy.config.js&lt;/div&gt;
&lt;is-land on:visible import=&quot;/js/seven-minute-tabs.js&quot;&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush&quot; persist sync autoheight&gt;
&lt;div role=&quot;tablist&quot; aria-label=&quot;Template Language Chooser&quot;&gt;
	&lt;a href=&quot;https://www.11ty.dev/docs/transforms/#tab-id-150-jsesm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jsesm&quot;&gt;ESM&lt;/a&gt;
&lt;a href=&quot;https://www.11ty.dev/docs/transforms/#tab-id-150-jscjs&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jscjs&quot;&gt;CommonJS&lt;/a&gt;
&lt;/div&gt;
  &lt;div id=&quot;tab-id-150-jsesm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-624&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-624&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;&lt;span class=&quot;token keyword&quot;&gt;export&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;default&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// Can be sync or async&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTransform&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;transform-name&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;async&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;content&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
		console&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;log&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token keyword&quot;&gt;this&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;page&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;inputPath&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;

		&lt;span class=&quot;token comment&quot;&gt;// Caution: this could be `false` (from permalink)&lt;/span&gt;
		console&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;log&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token keyword&quot;&gt;this&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;page&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;outputPath&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;

		&lt;span class=&quot;token comment&quot;&gt;// No changes made, return as-is&lt;/span&gt;
		&lt;span class=&quot;token keyword&quot;&gt;return&lt;/span&gt; content&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
	&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div id=&quot;tab-id-150-jscjs&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-625&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-625&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;module&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function-variable function&quot;&gt;exports&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	&lt;span class=&quot;token comment&quot;&gt;// Can be sync or async&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTransform&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;transform-name&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;async&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;content&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
		console&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;log&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token keyword&quot;&gt;this&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;page&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;inputPath&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;

		&lt;span class=&quot;token comment&quot;&gt;// Caution: this could be `false` (from permalink)&lt;/span&gt;
		console&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;log&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token keyword&quot;&gt;this&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;page&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;outputPath&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;

		&lt;span class=&quot;token comment&quot;&gt;// No changes made, return as-is&lt;/span&gt;
		&lt;span class=&quot;token keyword&quot;&gt;return&lt;/span&gt; content&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
	&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;/is-land&gt;
&lt;p&gt;Access to &lt;a href=&quot;https://www.11ty.dev/docs/data-eleventy-supplied/#page-variable&quot;&gt;Eleventy’s &lt;code&gt;page&lt;/code&gt; variable&lt;/a&gt; (via &lt;code&gt;this.page&lt;/code&gt;) was added in Eleventy v2.0. For previous versions, &lt;a href=&quot;https://v1-0-2.11ty.dev/docs/config/#transforms&quot;&gt;consult the older versions of the docs&lt;/a&gt;.&lt;/p&gt;
&lt;h2 id=&quot;running-transforms-manually&quot;&gt;Running Transforms Manually&lt;/h2&gt;
&lt;p&gt;&lt;span data-pagefind-ignore eleventy:id-ignore class=&quot;minilink minilink-addedin&quot; data-uncoerced-version=&quot;3.0.0-alpha.11&quot;&gt;Added in v3.0.0&lt;/span&gt; The &lt;a href=&quot;https://www.11ty.dev/docs/filters/render-transforms/&quot;&gt;&lt;code&gt;renderTransforms&lt;/code&gt; universal filter&lt;/a&gt; allows projects to run transforms manually on blocks of arbitrary HTML content.&lt;/p&gt;
&lt;h2 id=&quot;order-of-execution&quot;&gt;Order of Execution&lt;/h2&gt;
&lt;p&gt;Transforms are executed in order of insertion in your configuration file.&lt;/p&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTransform&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;first&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&gt;&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTransform&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;second&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&gt;&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTransform&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;third&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&gt;&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id=&quot;plugins&quot;&gt;Plugins&lt;/h3&gt;
&lt;p&gt;Transforms added via plugins are inserted via the &lt;a href=&quot;https://www.11ty.dev/docs/plugins/#creating-a-plugin&quot;&gt;second configuration stage for plugins&lt;/a&gt;.&lt;/p&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addPlugin&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&gt;&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTransform&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;third&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&gt;&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTransform&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;first&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&gt;&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTransform&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;second&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&gt;&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&quot;examples&quot;&gt;Examples&lt;/h2&gt;
&lt;h3 id=&quot;minify-html-output&quot;&gt;Minify HTML Output&lt;/h3&gt;
&lt;div class=&quot;codetitle codetitle-right-md&quot;&gt;eleventy.config.js&lt;/div&gt;
&lt;is-land on:visible import=&quot;/js/seven-minute-tabs.js&quot;&gt;
&lt;seven-minute-tabs class=&quot;tabs-flush&quot; persist sync autoheight&gt;
&lt;div role=&quot;tablist&quot; aria-label=&quot;Template Language Chooser&quot;&gt;
	&lt;a href=&quot;https://www.11ty.dev/docs/transforms/#tab-id-151-jsesm&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jsesm&quot;&gt;ESM&lt;/a&gt;
&lt;a href=&quot;https://www.11ty.dev/docs/transforms/#tab-id-151-jscjs&quot; role=&quot;tab&quot; data-tabs-persist=&quot;templatelang:jscjs&quot;&gt;CommonJS&lt;/a&gt;
&lt;/div&gt;
  &lt;div id=&quot;tab-id-151-jsesm&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-626&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-626&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;&lt;span class=&quot;token keyword&quot;&gt;import&lt;/span&gt; htmlmin &lt;span class=&quot;token keyword&quot;&gt;from&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;html-minifier-terser&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;

&lt;span class=&quot;token keyword&quot;&gt;export&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;default&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTransform&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;htmlmin&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;content&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;token comment&quot;&gt;// String conversion to handle `permalink: false`&lt;/span&gt;
		&lt;span class=&quot;token keyword&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token keyword&quot;&gt;this&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;page&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;outputPath &lt;span class=&quot;token operator&quot;&gt;||&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;endsWith&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;.html&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;token keyword&quot;&gt;let&lt;/span&gt; minified &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; htmlmin&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;minify&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;content&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;token literal-property property&quot;&gt;useShortDoctype&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token boolean&quot;&gt;true&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
				&lt;span class=&quot;token literal-property property&quot;&gt;removeComments&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token boolean&quot;&gt;true&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
				&lt;span class=&quot;token literal-property property&quot;&gt;collapseWhitespace&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token boolean&quot;&gt;true&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
			&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;

			&lt;span class=&quot;token keyword&quot;&gt;return&lt;/span&gt; minified&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
		&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;

		&lt;span class=&quot;token comment&quot;&gt;// If not an HTML output, return content as-is&lt;/span&gt;
		&lt;span class=&quot;token keyword&quot;&gt;return&lt;/span&gt; content&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
	&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
  &lt;div id=&quot;tab-id-151-jscjs&quot; role=&quot;tabpanel&quot;&gt;&lt;div class=&quot;syntax-highlight&quot;&gt;&lt;is-land on:visible data-wa-copy-button-target=&quot;highlighted-source-627&quot;&gt;
&lt;wa-copy-button from=&quot;highlighted-source-627&quot; tooltip-placement=&quot;left&quot;&gt;&lt;/wa-copy-button&gt;
&lt;/is-land&gt;
&lt;pre class=&quot;language-js&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;&lt;span class=&quot;token keyword&quot;&gt;const&lt;/span&gt; htmlmin &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;token function&quot;&gt;require&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;html-minifier-terser&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;

module&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function-variable function&quot;&gt;exports&lt;/span&gt; &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;eleventyConfig&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
	eleventyConfig&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;addTransform&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;htmlmin&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token keyword&quot;&gt;function&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token parameter&quot;&gt;content&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
		&lt;span class=&quot;token comment&quot;&gt;// String conversion to handle `permalink: false`&lt;/span&gt;
		&lt;span class=&quot;token keyword&quot;&gt;if&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token keyword&quot;&gt;this&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;page&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;outputPath &lt;span class=&quot;token operator&quot;&gt;||&lt;/span&gt; &lt;span class=&quot;token string&quot;&gt;&quot;&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;endsWith&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;.html&quot;&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
			&lt;span class=&quot;token keyword&quot;&gt;let&lt;/span&gt; minified &lt;span class=&quot;token operator&quot;&gt;=&lt;/span&gt; htmlmin&lt;span class=&quot;token punctuation&quot;&gt;.&lt;/span&gt;&lt;span class=&quot;token function&quot;&gt;minify&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;content&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt; &lt;span class=&quot;token punctuation&quot;&gt;{&lt;/span&gt;
				&lt;span class=&quot;token literal-property property&quot;&gt;useShortDoctype&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token boolean&quot;&gt;true&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
				&lt;span class=&quot;token literal-property property&quot;&gt;removeComments&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token boolean&quot;&gt;true&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
				&lt;span class=&quot;token literal-property property&quot;&gt;collapseWhitespace&lt;/span&gt;&lt;span class=&quot;token operator&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token boolean&quot;&gt;true&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;
			&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;

			&lt;span class=&quot;token keyword&quot;&gt;return&lt;/span&gt; minified&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
		&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;

		&lt;span class=&quot;token comment&quot;&gt;// If not an HTML output, return content as-is&lt;/span&gt;
		&lt;span class=&quot;token keyword&quot;&gt;return&lt;/span&gt; content&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
	&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;)&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;}&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;/div&gt;
  &lt;/div&gt;
&lt;/seven-minute-tabs&gt;
&lt;/is-land&gt;
&lt;p&gt;Note that &lt;code&gt;html-minifier-terser&lt;/code&gt; has a &lt;a href=&quot;https://github.com/terser/html-minifier-terser?tab=readme-ov-file#options-quick-reference&quot;&gt;significant number of options&lt;/a&gt;, most of which are disabled by default.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Testmonials</title>
    <link href="https://www.11ty.dev/docs/testimonials/" />
    <updated>2026-05-05T14:21:06Z</updated>
    <id>https://www.11ty.dev/docs/testimonials/</id>
    <content type="html">&lt;h1 id=&quot;testimonials&quot;&gt;Testimonials&lt;/h1&gt;
&lt;p&gt;Don’t just take my word for it. 🌈 Listen to what these happy developers are saying about Eleventy:&lt;/p&gt;
&lt;div id=&quot;addy-osmani&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Eleventy is absolutely wonderful. It’s by far the nicest static site generator I’ve used in what feels like forever.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://addyosmani.com/&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Faddyosmani.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Faddyosmani.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Addy Osmani&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;tyler-sticka&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Easily one of my favorite open source projects ever!” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.tylersticka.com/1446138920480043008&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Ftylersticka.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Ftylersticka.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Tyler Sticka&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;mina-markham&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Eleventy + Netlify have become my new workflow for static sites. I think I&#39;m in love.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://tweets.mina.codes/1037088841520168960&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fminamarkh.am%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fminamarkh.am%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Mina Markham&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;chris-coyier&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Eleventy is almost fascinatingly simple.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://css-tricks.com/a-site-for-front-end-development-conferences-built-with-11ty-on-netlify/&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fchriscoyier.net%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fchriscoyier.net%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Chris Coyier&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;hj-chen&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Eleventy… makes my life so much easier.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/hj_chen/status/1117501300483207168&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fchenhuijing.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fchenhuijing.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;HJ Chen&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;alex-carpenter&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“I really like the flexibility Eleventy offers in comparison to my previous Jekyll build.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://alexcarpenter.me/posts/2018/05/back-to-static&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Falexcarpenter.me%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Falexcarpenter.me%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Alex Carpenter&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;reuben-l-lillie&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Eleventy is as close as we’ve gotten to how the web was always meant to be built (ya’ know, once we realized the value of templates and JavaScript).” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://zirk.us/@reubenlillie&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Freubenlillie.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Freubenlillie.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Reuben L. Lillie&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;phil-hawksworth&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Seriously can&#39;t remember enjoying using a Static Site Generator this much. Yes Hugo is rapid, but this is all so logical. It feels like it was designed by someone who has been through lots of pain and success using other SSGs.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://www.hawksworx.com/&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fwww.hawksworx.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fwww.hawksworx.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Phil Hawksworth&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;mathias-bynens&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“I looked into and actively tried using various static site generators for this project. Eleventy was the only one I could find that gave me the fine-grained control I needed at blazingly fast build times.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/mathias/status/1044232502309789696&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fmathiasbynens.be%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fmathiasbynens.be%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Mathias Bynens&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;paul-lewis&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“I actually used Eleventy for the first time this week. Loved it.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/aerotwist/status/1106904383390924801&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Faerotwist.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Faerotwist.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Paul Lewis&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;google&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“2018 winner of the Google Open Source Peer Bonus Award” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://opensource.googleblog.com/2018/03/congratulating-open-source-peer-bonus-winners.html&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fgoogle.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fgoogle.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Google&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;brian-leroux&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Think the reason everyone is loving [Eleventy] so much (myself included) is that it doesn&#39;t come with a prescription about data sources or template rendering.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/brianleroux/status/1213129879245295619&quot;&gt;Brian Leroux&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;google&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“2022 winner of the Google Open Source Peer Bonus Award” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://opensource.googleblog.com/2022/03/Announcing-First-Group-of-Google-Open-Source-Peer-Bonus-Winners-in-2022.html&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fgoogle.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fgoogle.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Google&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;will-riley&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Holy cow! Eleventy is so crazy simple to work with.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/splitinfinities/status/1018874121755746310&quot;&gt;Will Riley&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;justin-fagnani&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Eleventy and web components go really, really well together.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/justinfagnani/status/1212847104718061569&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fjustinfagnani.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fjustinfagnani.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Justin Fagnani&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;timothy-miller&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“It&#39;s clean, elegant, easy to use, and does just enough to be useful without getting in the way. Excellent work 😊” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/WebInspectInc/status/1017594017402572811&quot;&gt;Timothy Miller&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;phil-hawksworth&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Every time I make something with Eleventy it makes me smile. I think that might be to do with its focus on simplicity.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://www.hawksworx.com/note/tw/998891176550977537&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fwww.hawksworx.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fwww.hawksworx.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Phil Hawksworth&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;steve-gardner&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“I like Eleventy. (I hope that was enough to get me on the testimonials page.)” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/steeevg/status/1409965870647025664&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fste.vg%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fste.vg%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Steve Gardner&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;product-hunt&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“#1 Product of the Day (May 2022)” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://www.producthunt.com/products/eleventy&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fproducthunt.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fproducthunt.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Product Hunt&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;jen-simmons&quot;&gt;&lt;blockquote&gt;&lt;p&gt;Read the replies to: &lt;em&gt;&lt;a href=&quot;https://twitter.com/jensimmons/status/1107377359546736641&quot;&gt;“Fans of Eleventy.... why do you like it better than other static site generators?”&lt;/a&gt;&lt;/em&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;eduardo-boucas&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“After a day or so tweaking my existing build, here is a preview of the site running on Eleventy. I&#39;m sold! The main thing to me was the ability to run custom JavaScript logic to sort, filter, and augment data in collections.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/eduardoboucas/status/1001158411583721473&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Feduardoboucas.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Feduardoboucas.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Eduardo Bouças&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;sara-soueidan&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Eleventy is a killer static site generator. That’s all.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/SaraSoueidan/status/1144696081403523072&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fwww.sarasoueidan.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fwww.sarasoueidan.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Sara Soueidan&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;andy-bell&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Jekyll is dead to me” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://andy-bell.co.uk/&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fandy-bell.co.uk%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fandy-bell.co.uk%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Andy Bell&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;matthew-phillips&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“I think what&#39;s great about Eleventy is how it was able to simplify SSGs to just 2 concepts: data sources and templates.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://matthewphillips.info/tweets/1213129379414446080&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fmatthewphillips.info%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fmatthewphillips.info%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Matthew Phillips&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;james-williamson&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“I&#39;ve been digging into Eleventy, a new static site generator. Really like the way it handles pagination!” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/jameswillweb/status/951488360543121408&quot;&gt;James Williamson&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;micah-mills&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Just got through moving a project to Eleventy. Never used nunjucks or a static site generator before, but it was so easy. This will make my life so much easier.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/micahmills/status/973660230453211136&quot;&gt;Micah Mills&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;snook&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“I challenged myself to build the site in a day. I started at noon on Saturday and had something launched by 1am Saturday night. Built on [Eleventy] served by GitHub Pages, using [TravisCi] to deploy.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fsnook.ca%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fsnook.ca%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Snook&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;lach-zeatherman&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“I heard Eleventy was good” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/lachzeat/status/1196789524535431168&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/60Y9933xOF-150.avif 150w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/60Y9933xOF-150.png&quot; width=&quot;150&quot; height=&quot;150&quot; alt=&quot;Favicon for zachleat.com/img/lachzeat-glasses.png&quot; class=&quot;avatar avatar-indieweb&quot; /&gt;&lt;/picture&gt;Lach Zeatherman&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;bryan-robinson&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“[Eleventy is] a platform that legitimately built things in the way that I thought and worked more than anything else out there, and with every new feature it&#39;s like my mind gets read.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/brob/status/1446128951647035393&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fbryanlrobinson.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fbryanlrobinson.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Bryan Robinson&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;cody-peterson&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“I tried Eleventy last night on a personal project and today we implemented it on a (non-public facing) client project. It&#39;s really good.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/codypeterson/status/950568228559904768&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fhumanshapes.co%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fhumanshapes.co%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Cody Peterson&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;tatiana-mac&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Eleventy is my fave.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/TatianaTMac/status/1117110784830525440&quot;&gt;Tatiana Mac&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;dan-mall&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“The Eleventy + Netlify combo continues to be 🤌” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/danmall/status/1585364687046123521&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fdanmall.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fdanmall.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Dan Mall&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;lea-verou&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“I use Eleventy on almost every project at this point and I love it.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/LeaVerou/status/1629652201168576512&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Flea.verou.me%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Flea.verou.me%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Lea Verou&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;google&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“2019 winner of the Google Open Source Peer Bonus Award” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://opensource.googleblog.com/2019/04/google-open-source-peer-bonus-winners.html&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fgoogle.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fgoogle.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Google&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;heydon-pickering&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Just the kind of simple / common sense tool I love. The data/folder hierarchy mechanism is super obvious and elegant.” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/heydonworks/status/1075691449776267265&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fheydonworks.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fheydonworks.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Heydon Pickering&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;mat-marquis&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Don’t tell Zach I said it but Eleventy is seeming fresh as hell so far” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://hire.wil.to/&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fwil.to%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fwil.to%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Mat Marquis&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
&lt;div id=&quot;marco-hengstenberg&quot;&gt;&lt;blockquote&gt;&lt;p&gt;“Just gave Eleventy a first run/try and I must say it&#39;s pretty dang awesome. Especially for someone like me, who is most familiar with HTML and CSS and some JS. ❤️” &lt;span class=&quot;bio-source&quot;&gt;—&lt;a href=&quot;https://twitter.com/nice2meatu/status/1004665956885520384&quot;&gt;Marco Hengstenberg&lt;/a&gt;&lt;/span&gt;&lt;/p&gt;&lt;/blockquote&gt;&lt;/div&gt;
</content>
  </entry>
  <entry>
    <title>Opening a Terminal</title>
    <link href="https://www.11ty.dev/docs/terminal-window/" />
    <updated>2026-05-05T14:21:06Z</updated>
    <id>https://www.11ty.dev/docs/terminal-window/</id>
    <content type="html">&lt;h1 id=&quot;opening-a-terminal&quot;&gt;Opening a Terminal&lt;/h1&gt;
&lt;details class=&quot;toc&quot;&gt;
&lt;summary&gt;On this page&lt;/summary&gt;
&lt;div class=&quot;table-of-contents&quot;&gt;&lt;ul&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/terminal-window/#mac-os&quot;&gt;macOS&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/terminal-window/#windows&quot;&gt;Windows&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/terminal-window/#linux&quot;&gt;Linux&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/terminal-window/#editors&quot;&gt;Editors&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/terminal-window/#more-resources&quot;&gt;More resources&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;&lt;/div&gt;
&lt;/details&gt;
&lt;p&gt;Eleventy runs in a &lt;a href=&quot;https://en.wikipedia.org/wiki/Terminal_emulator&quot;&gt;Terminal application&lt;/a&gt;. If you’re not familiar with Terminal applications, they’re used to run typed commands (and programs) on your computer. A Terminal application is mostly synonymous with terms like Command Line Interface (CLI) or shell prompt.&lt;/p&gt;
&lt;p&gt;Here’s how to open a Terminal in various operating systems:&lt;/p&gt;
&lt;h2 id=&quot;mac-os&quot;&gt;macOS&lt;/h2&gt;
&lt;p&gt;macOS includes an application called &lt;code&gt;Terminal&lt;/code&gt; which can be used to run Eleventy. Depending on your version of macOS, it likely lives in &lt;code&gt;/Applications/Utilities/Terminal&lt;/code&gt;. It may also be called &lt;code&gt;Terminal.app&lt;/code&gt; if your operating system is configured to show file extensions.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://support.apple.com/guide/terminal/open-or-quit-terminal-apd5265185d-f365-44cb-8b09-71a064a42125/mac&quot;&gt;Open or quit Terminal on Mac on the &lt;em&gt;Apple Terminal User Guide&lt;/em&gt;&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;windows&quot;&gt;Windows&lt;/h2&gt;
&lt;p&gt;Depending on your version of Windows, it may include the &lt;code&gt;Terminal&lt;/code&gt; application (aka Windows PowerShell, preferred), or the &lt;code&gt;Command Prompt&lt;/code&gt; (also known as &lt;code&gt;cmd.exe&lt;/code&gt;, not preferred), or both.&lt;/p&gt;
&lt;p&gt;For the best terminal experience, we recommend installing &lt;a href=&quot;https://github.com/PowerShell/PowerShell&quot;&gt;PowerShell Core&lt;/a&gt; on your Windows machine, a newer and more future-compatible terminal application (also newly cross-platform!).&lt;/p&gt;
&lt;h2 id=&quot;linux&quot;&gt;Linux&lt;/h2&gt;
&lt;p&gt;Depending on your flavor of Linux, it may be called &lt;code&gt;Terminal&lt;/code&gt;, &lt;code&gt;Shell&lt;/code&gt;, &lt;code&gt;Gnome Terminal&lt;/code&gt;, &lt;code&gt;Konsole&lt;/code&gt;, or &lt;code&gt;XTerm&lt;/code&gt;.&lt;/p&gt;
&lt;h2 id=&quot;editors&quot;&gt;Editors&lt;/h2&gt;
&lt;p&gt;Some code editors bundle a terminal for you!&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://nova.app/&quot;&gt;Nova&lt;/a&gt; (macOS)&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://code.visualstudio.com/&quot;&gt;Visual Studio Code&lt;/a&gt; (macOS, Windows, Linux)
&lt;ul&gt;
&lt;li&gt;On Windows, Visual Studio Code is bundled with Windows Powershell.&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.jetbrains.com/webstorm/&quot;&gt;WebStorm&lt;/a&gt; (macOS, Windows, Linux)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;more-resources&quot;&gt;More resources&lt;/h2&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;https://www.digitalocean.com/community/tutorials/an-introduction-to-the-linux-terminal#terminal-emulator&quot;&gt;DigitalOcean: An introduction to the Linux Terminal&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://ubuntu.com/tutorials/command-line-for-beginners#3-opening-a-terminal&quot;&gt;Ubuntu guide: The Linux command line for beginners&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://opensource.com/article/21/8/linux-terminal&quot;&gt;OpenSource.com: A guide to the Linux terminal for beginners&lt;/a&gt;&lt;/li&gt;
&lt;/ul&gt;
</content>
  </entry>
  <entry>
    <title>Overriding Languages</title>
    <link href="https://www.11ty.dev/docs/template-overrides/" />
    <updated>2026-05-05T14:21:06Z</updated>
    <id>https://www.11ty.dev/docs/template-overrides/</id>
    <content type="html">&lt;h1 id=&quot;overriding-the-template-language&quot;&gt;Overriding the Template Language&lt;/h1&gt;
&lt;p&gt;There are a couple of different ways you can tell Eleventy how you want to process a file:&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;The file extension (importantly, this is also used to find files to process).&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://www.11ty.dev/docs/config/&quot;&gt;Configuration options&lt;/a&gt;:
&lt;ul&gt;
&lt;li&gt;&lt;code&gt;markdownTemplateEngine&lt;/code&gt;: The default global template engine to pre-process markdown files. Use &lt;code&gt;false&lt;/code&gt; to avoid pre-processing and only transform markdown.&lt;/li&gt;
&lt;li&gt;&lt;code&gt;htmlTemplateEngine&lt;/code&gt;: The default global template engine to pre-process HTML files. Use &lt;code&gt;false&lt;/code&gt; to avoid pre-processing and passthrough copy the content (HTML is not transformed, so technically this could be any plaintext).&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;&lt;code&gt;templateEngineOverride&lt;/code&gt; in the template’s front matter. Should be &lt;em&gt;one&lt;/em&gt; templating engine (&lt;code&gt;liquid&lt;/code&gt;) or markdown paired with another templating engine (&lt;code&gt;liquid,md&lt;/code&gt;). See examples below.&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id=&quot;template-engine-override-examples&quot;&gt;&lt;code&gt;templateEngineOverride&lt;/code&gt; Examples&lt;/h3&gt;
&lt;h4 id=&quot;replace-with-a-single-templating-engine&quot;&gt;Replace with a single templating engine&lt;/h4&gt;
&lt;p&gt;If your file is called &lt;code&gt;example.liquid&lt;/code&gt;—instead of &lt;code&gt;liquid&lt;/code&gt;, this will be parsed as a &lt;code&gt;njk&lt;/code&gt; Nunjucks template:&lt;/p&gt;
&lt;div class=&quot;codetitle codetitle-left&quot;&gt;&lt;b&gt;Filename &lt;/b&gt;example.liquid&lt;/div&gt;
&lt;pre class=&quot;language-markdown&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-markdown&quot;&gt;&lt;span class=&quot;token front-matter-block&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;---&lt;/span&gt;
&lt;span class=&quot;token front-matter yaml language-yaml&quot;&gt;&lt;span class=&quot;token key atrule&quot;&gt;templateEngineOverride&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;:&lt;/span&gt; njk&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;---&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h4 id=&quot;special-case-pairing-a-templating-engine-with-md-markdown&quot;&gt;Special case: pairing a templating engine with &lt;code&gt;md&lt;/code&gt; Markdown&lt;/h4&gt;
&lt;p&gt;Remember that—by default—Markdown files are processed with an additional preprocessor template engine set globally with the &lt;code&gt;markdownTemplateEngine&lt;/code&gt; configuration option. So, when using &lt;code&gt;templateEngineOverride&lt;/code&gt; on markdown files be sure to list each templating engine you’d like to use.&lt;/p&gt;
&lt;p&gt;For example, you may want to process &lt;code&gt;njk&lt;/code&gt; Nunjucks first and then &lt;code&gt;md&lt;/code&gt; markdown afterwards. Markdown is supported either by itself or with another engine. No other templating engines can be combined in this way—Markdown is the exception here. Any other combination attempt will throw an error.&lt;/p&gt;
&lt;h5 id=&quot;markdown-and-nothing-else&quot;&gt;Markdown and nothing else&lt;/h5&gt;
&lt;pre class=&quot;language-markdown&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-markdown&quot;&gt;&lt;span class=&quot;token front-matter-block&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;---&lt;/span&gt;
&lt;span class=&quot;token front-matter yaml language-yaml&quot;&gt;&lt;span class=&quot;token key atrule&quot;&gt;templateEngineOverride&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;:&lt;/span&gt; md&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;---&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h5 id=&quot;nunjucks-and-then-markdown&quot;&gt;Nunjucks and then Markdown&lt;/h5&gt;
&lt;pre class=&quot;language-markdown&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-markdown&quot;&gt;&lt;span class=&quot;token front-matter-block&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;---&lt;/span&gt;
&lt;span class=&quot;token front-matter yaml language-yaml&quot;&gt;&lt;span class=&quot;token key atrule&quot;&gt;templateEngineOverride&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;:&lt;/span&gt; njk&lt;span class=&quot;token punctuation&quot;&gt;,&lt;/span&gt;md&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;---&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
&lt;h5 id=&quot;use-nothing-no-transformations&quot;&gt;Use nothing (no transformations)&lt;/h5&gt;
&lt;p&gt;Any falsy value here will just copy the template content without transformation.&lt;/p&gt;
&lt;pre class=&quot;language-markdown&quot; tabindex=&quot;0&quot;&gt;&lt;code class=&quot;language-markdown&quot;&gt;&lt;span class=&quot;token front-matter-block&quot;&gt;&lt;span class=&quot;token punctuation&quot;&gt;---&lt;/span&gt;
&lt;span class=&quot;token front-matter yaml language-yaml&quot;&gt;&lt;span class=&quot;token key atrule&quot;&gt;templateEngineOverride&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;:&lt;/span&gt; &lt;span class=&quot;token boolean important&quot;&gt;false&lt;/span&gt;&lt;/span&gt;
&lt;span class=&quot;token punctuation&quot;&gt;---&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;
</content>
  </entry>
  <entry>
    <title>Eleventy Documentation</title>
    <link href="https://www.11ty.dev/docs/supporters/" />
    <updated>2026-05-05T14:21:06Z</updated>
    <id>https://www.11ty.dev/docs/supporters/</id>
    <content type="html">&lt;h1 id=&quot;thank-you-eleventy-contributors&quot;&gt;Thank You Eleventy Contributors!&lt;/h1&gt;
&lt;p&gt;Eleventy is made possible by financial contributions from these lovely people:&lt;/p&gt;
&lt;div class=&quot;facepile supporters-facepile fl&quot;&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://pqina.nl/pintura/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/BC8y6qmc2B-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/BC8y6qmc2B-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Pintura&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Pintura&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://eslint.org/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/d-IxivSbC--66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/d-IxivSbC--66.png&quot; width=&quot;66&quot; height=&quot;57&quot; alt=&quot;Open Collective Avatar for ESLint&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;ESLint&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://sonspring.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/eI2AYn2zUF-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/eI2AYn2zUF-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Nathan Smith&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Nathan Smith&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://monarchairgroup.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/3KCcBZabuw-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/3KCcBZabuw-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Monarch Air Group&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Monarch Air Group&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/rob-dodson&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/QM1fpudxiK-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/QM1fpudxiK-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Rob Dodson&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Rob Dodson&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://antithesis.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/ErhByygERT-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/ErhByygERT-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Antithesis&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Antithesis&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.movavi.com/screen-recorder-mac/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/bUZGB8ZSO6-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/bUZGB8ZSO6-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Screen recorder for Mac&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Screen recorder for Mac&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.mercuryjets.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/0QFe-H5i-8-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/0QFe-H5i-8-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Mercury Jets&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mercury Jets&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/steady&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/wsNJXrCpUr-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/wsNJXrCpUr-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Steady&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Steady&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://getform.io&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/wsx31INM9z-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/wsx31INM9z-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Getform.io&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Getform.io&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.oceg.org&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/2aDIpz4KaJ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/2aDIpz4KaJ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for OCEG&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;OCEG&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://tylergaw.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/PsYeSXkLDP-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/PsYeSXkLDP-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Tyler Gaw&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Tyler Gaw&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.movavi.com/screen-recorder-mac/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/gMoEVh8Uiq-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/gMoEVh8Uiq-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Screen recorder for Mac&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Screen recorder for Mac&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://casino.ua/casino/slots/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/LvCTM10bSM-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/LvCTM10bSM-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ігрові автомати&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ігрові автомати&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://flatironsdevelopment.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/8HjOIYXDco-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/8HjOIYXDco-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Flatirons Development&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Flatirons Development&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/katie-sylor-miller&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/K0Y0MOA3-N-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/K0Y0MOA3-N-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Katie Sylor-Miller&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Katie Sylor-Miller&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://arielsalminen.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/nF3syuArh1-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/nF3syuArh1-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ariel Salminen&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ariel Salminen&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://mikeaparicio.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/DREl_gg_wr-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/DREl_gg_wr-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Mike Aparicio&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mike Aparicio&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/melanie-sumner&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/wIGgXx6h9M-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/wIGgXx6h9M-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Melanie Sumner&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Melanie Sumner&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://about.me/peterdehaan&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/zLhWlzdB5Q-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/zLhWlzdB5Q-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Peter deHaan&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Peter deHaan&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://route4me.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/FzOxqojzsV-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/FzOxqojzsV-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Route4Me Route Planner&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Route4Me Route Planner&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.webstoemp.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/PnStZIbcVK-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/PnStZIbcVK-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Jérôme Coupé&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jérôme Coupé&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://hire.wil.to&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/NS06PblEGa-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/NS06PblEGa-66.png&quot; width=&quot;66&quot; height=&quot;65&quot; alt=&quot;Open Collective Avatar for Mat Marquis&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mat Marquis&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://playfortuneforfun.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/bQonhAl0oC-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/bQonhAl0oC-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Playfortuneforfun.com&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Playfortuneforfun.com&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://nicolas-hoizey.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/e7h1CuC2vk-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/e7h1CuC2vk-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Nicolas&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Nicolas&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://lauris-webdev.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/TjLhjlmwrV-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/TjLhjlmwrV-66.png&quot; width=&quot;66&quot; height=&quot;79&quot; alt=&quot;Open Collective Avatar for Lauris Consulting&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Lauris Consulting&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://ashur.cab/rera&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/NcppY43IAo-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/NcppY43IAo-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ashur Cabrera&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ashur Cabrera&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.bennash.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/kk3NTuJsli-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/kk3NTuJsli-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ben Nash&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ben Nash&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://pborenstein.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/uiu3SlDtRu-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/uiu3SlDtRu-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Philip Borenstein&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Philip Borenstein&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://markbuskbjerg.dk&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/UQ0apalw-S-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/UQ0apalw-S-66.png&quot; width=&quot;66&quot; height=&quot;88&quot; alt=&quot;Open Collective Avatar for Mark Buskbjerg&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mark Buskbjerg&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.fershad.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/MhX7JmRL3m-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/MhX7JmRL3m-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Fershad Irani&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Fershad Irani&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/paul-everitt&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/goiJfARbzu-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/goiJfARbzu-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Paul Everitt&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Paul Everitt&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.tgiles.dev/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/0tdKgINKou-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/0tdKgINKou-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Tim Giles&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Tim Giles&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://ericwbailey.design/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/IDAOfKWSve-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/IDAOfKWSve-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Eric Bailey&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Eric Bailey&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://jennmoney.biz&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/IzZbJnFGnG-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/IzZbJnFGnG-66.png&quot; width=&quot;66&quot; height=&quot;64&quot; alt=&quot;Open Collective Avatar for Jenn Schiffer&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jenn Schiffer&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://joshcrain.io&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/MVazrAK6DJ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/MVazrAK6DJ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Josh Crain&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Josh Crain&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://privatejet.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/qWEZjwKj95-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/qWEZjwKj95-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Privatejet.com&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Privatejet.com&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://thinkdobecreate.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/dSPdz2fjYM-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/dSPdz2fjYM-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Stephanie Eckles&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Stephanie Eckles&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/arcxyz&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/2CMD_d63PF-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/2CMD_d63PF-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Alejandro Rodríguez&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Alejandro Rodríguez&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/user-3b6553b5&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Z4x5YEFgM6-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Z4x5YEFgM6-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Sam&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Sam&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://mxb.dev&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/slrzLYWGvX-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/slrzLYWGvX-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Max Böck&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Max Böck&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/aaron-hans&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/DgATprs8pL-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/DgATprs8pL-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Aaron Hans&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Aaron Hans&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://nooshu.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/FhVS39COk3-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/FhVS39COk3-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Matt Hobbs&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Matt Hobbs&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.higby.io/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/WoM2ucFBqh-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/WoM2ucFBqh-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Higby&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Higby&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://alex.zappa.dev/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/hcbAIkx-Ge-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/hcbAIkx-Ge-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Alex Zappa&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Alex Zappa&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://infrequently.org/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/pqP00aOpUz-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/pqP00aOpUz-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Alex Russell&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Alex Russell&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://benmyers.dev&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/y-JQ2BRZOs-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/y-JQ2BRZOs-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ben Myers&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ben Myers&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/rich-holman&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/4KpRNL1s9I-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/4KpRNL1s9I-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Rich Holman&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Rich Holman&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/mike-stilling&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/8-WdMfg9kx-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/8-WdMfg9kx-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Mike Stilling&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mike Stilling&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://neckam.nl/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/cqvp22_JCa-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/cqvp22_JCa-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Michel van der Kroef&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Michel van der Kroef&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://henry.codes/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/ReQlqeJ1JI-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/ReQlqeJ1JI-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Henry Desroches&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Henry Desroches&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://dryan.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/yENJdvDk6w-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/yENJdvDk6w-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Dan Ryan&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Dan Ryan&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/lostinbrittany&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/WOmQ5epxy4-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/WOmQ5epxy4-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Horacio Gonzalez&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Horacio Gonzalez&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/ryan-swaney&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/TnDsFb0YCp-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/TnDsFb0YCp-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ryan Swaney&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ryan Swaney&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://alextheward.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/R6PHpVeSax-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/R6PHpVeSax-66.png&quot; width=&quot;66&quot; height=&quot;47&quot; alt=&quot;Open Collective Avatar for Cthos&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Cthos&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/heather-buchel&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;img src=&quot;https://images.opencollective.com/heather-buchel/b983990/avatar.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Heather Buchel&quot; class=&quot;avatar avatar-large&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Heather Buchel&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/kyosuke&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/hEbvUjXjsY-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/hEbvUjXjsY-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Kyosuke Nakamura&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Kyosuke Nakamura&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://morten.dk/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/-zcpYYT07X-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/-zcpYYT07X-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for mortendk&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;mortendk&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://angeliqueweger.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/T83wYfiEtr-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/T83wYfiEtr-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Angelique Weger&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Angelique Weger&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.brycewray.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/3Jo9x1pFy5-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/3Jo9x1pFy5-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Bryce Wray&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Bryce Wray&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://forte.is/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/RyFknwn9v2-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/RyFknwn9v2-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Noel Forte&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Noel Forte&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/john-meyerhofer&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/rXJ5CSQK_i-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/rXJ5CSQK_i-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for John Meyerhofer&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;John Meyerhofer&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/richard-hemmer&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/A6r0BYiNGK-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/A6r0BYiNGK-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Richard  Hemmer&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Richard  Hemmer&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://nicknisi.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/73Hk1Sipu1-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/73Hk1Sipu1-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Nick Nisi&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Nick Nisi&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://makotokw.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/D95kFrkXIb-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/D95kFrkXIb-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Makoto Kawasaki&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Makoto Kawasaki&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://ivoherrmann.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/TJM-kWzEjA-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/TJM-kWzEjA-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ivo Herrmann&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ivo Herrmann&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://oddbird.net/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/YxHH1tIFbe-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/YxHH1tIFbe-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Miriam Suzanne&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Miriam Suzanne&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://hans.gerwitz.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/6z9ngP6bqW-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/6z9ngP6bqW-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Hans Gerwitz&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Hans Gerwitz&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/shawn-j-sandy&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/NRdDyeEorl-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/NRdDyeEorl-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for shawn j sandy&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;shawn j sandy&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/coryd&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/KDSaeqiHNy-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/KDSaeqiHNy-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Cory Dransfeldt&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Cory Dransfeldt&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.vincentfalconi.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/PEsWVJJWzs-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/PEsWVJJWzs-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Vincent Falconi&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Vincent Falconi&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://frontendweekly.tokyo/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/pRXq-7FgY4-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/pRXq-7FgY4-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Frontend Weekly Tokyo&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Frontend Weekly Tokyo&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://johnhall.codes/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fjohnhall.codes%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fjohnhall.codes%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;John Hall&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://BentleyDavis.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/QBBvK8xd8x-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/QBBvK8xd8x-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Bentley Davis&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Bentley Davis&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://martinschneider.me&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/JjYhLWuoL0-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/JjYhLWuoL0-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Martin Schneider&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Martin Schneider&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://mallonbacka.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/i6cR3Pp3Su-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/i6cR3Pp3Su-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Matthew Hallonbacka&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Matthew Hallonbacka&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.david-herron.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/nRxyQu-XYp-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/nRxyQu-XYp-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for David A. Herron&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;David A. Herron&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/jens-grochtdreis&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/a1JMi4h3SW-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/a1JMi4h3SW-66.png&quot; width=&quot;66&quot; height=&quot;58&quot; alt=&quot;Open Collective Avatar for Jens Grochtdreis&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jens Grochtdreis&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://AlesandroOrtiz.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/n72dBUyk9_-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/n72dBUyk9_-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Alesandro Ortiz&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Alesandro Ortiz&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.andreavaghi.dev&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/3q3IMMayo3-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/3q3IMMayo3-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Andrea Vaghi&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Andrea Vaghi&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://joelamyman.co.uk&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/aar4OHOcqP-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/aar4OHOcqP-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Joe Lamyman&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Joe Lamyman&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://genehack.org/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Rrrp3wLkvf-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Rrrp3wLkvf-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for John SJ Anderson&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;John SJ Anderson&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://krs.tf&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/WsP426f6nF-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/WsP426f6nF-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Kristof Michiels&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Kristof Michiels&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/kasper-storgaard&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Vgd9aYiZod-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Vgd9aYiZod-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Kasper Storgaard&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Kasper Storgaard&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://paulrobertlloyd.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/BiFiIHCw1c-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/BiFiIHCw1c-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Paul Robert Lloyd&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Paul Robert Lloyd&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://kevinhealyclarke.co.uk/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/HV0QG2GaFh-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/HV0QG2GaFh-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Kevin Healy-Clarke&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Kevin Healy-Clarke&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://hankchizljaw.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/IiDuxTy8bC-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/IiDuxTy8bC-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Andy Bell&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Andy Bell&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/joachim-kliemann&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/L3mFTO2pzF-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/L3mFTO2pzF-66.png&quot; width=&quot;66&quot; height=&quot;88&quot; alt=&quot;Open Collective Avatar for Joachim Kliemann&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Joachim Kliemann&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://wipdeveloper.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/6gypf2lc7Q-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/6gypf2lc7Q-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Brett Nelson&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Brett Nelson&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://alistairshepherd.uk/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/kSH7U8cxwV-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/kSH7U8cxwV-66.png&quot; width=&quot;66&quot; height=&quot;64&quot; alt=&quot;Open Collective Avatar for Alistair Shepherd&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Alistair Shepherd&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;http://melanie-richards.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/444I5oJZFw-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/444I5oJZFw-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Melanie Richards&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Melanie Richards&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://lukeb.co.uk&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/TU1l7LJzhV-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/TU1l7LJzhV-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Luke Bonaccorsi&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Luke Bonaccorsi&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/wesruv&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/b0VzPAuVuF-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/b0VzPAuVuF-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Wes Ruvalcaba&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Wes Ruvalcaba&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://jesseheady.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/iiBhcuvOYd-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/iiBhcuvOYd-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Jesse Heady&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jesse Heady&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://AllAboutKen.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Af4lqD81Eo-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Af4lqD81Eo-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ken Hawkins&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ken Hawkins&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://itsmeara.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/eds5Qh3iwQ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/eds5Qh3iwQ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ara Abcarians&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ara Abcarians&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://yuheiy.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/7ye2IDyKbp-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/7ye2IDyKbp-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Yuhei Yasuda&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Yuhei Yasuda&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/devin-clark&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/hK2NwjOC6H-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/hK2NwjOC6H-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Devin Clark&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Devin Clark&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/manuel-matuzovic&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/B8slbpdWuK-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/B8slbpdWuK-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Manuel&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Manuel&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/eric-portis&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/rJp9GqAh9A-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/rJp9GqAh9A-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Eric Portis&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Eric Portis&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/bryan-robinson&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/j91eUfRJl2-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/j91eUfRJl2-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Bryan Robinson&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Bryan Robinson&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://benjamingeese.de&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/dcs66y1r-B-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/dcs66y1r-B-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Benjamin Geese&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Benjamin Geese&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/todd-libby&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/VcbkvglcF1-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/VcbkvglcF1-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Todd Libby&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Todd Libby&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://global.fun88.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/u7teF61XY2-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/u7teF61XY2-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Fun88&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Fun88&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://au.trustpilot.com/review/aussiepokies.net&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/mx5fPHfyUJ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/mx5fPHfyUJ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Online Pokies in Australia&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Online Pokies in Australia&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://au.trustpilot.com/review/bestpayidpokies.net&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/aJ7aUWPRQq-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/aJ7aUWPRQq-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for PayID Pokies&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;PayID Pokies&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://dgrammatiko.online&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/jFSXiKETyT-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/jFSXiKETyT-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Dimitrios Grammatikogiannis&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Dimitrios Grammatikogiannis&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://hoeser.dev&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Vjjf_NElrJ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Vjjf_NElrJ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Raphael Höser&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Raphael Höser&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://splitinfinities.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/u7h3sqBSVm-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/u7h3sqBSVm-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for William Riley&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;William Riley&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://dorinvancea.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/x8w8aJcRzN-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/x8w8aJcRzN-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Dorin Vancea&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Dorin Vancea&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/colin-fahrion&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/C9VCrMo0jY-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/C9VCrMo0jY-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Colin Fahrion&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Colin Fahrion&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://danburzo.ro/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fdanburzo.ro%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fdanburzo.ro%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Dan Burzo&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://jonkuperman.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/go0oS6P220-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/go0oS6P220-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Jon Kuperman&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jon Kuperman&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://saneef.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/GFWfnU3I80-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/GFWfnU3I80-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Saneef Ansari&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Saneef Ansari&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://vpsdime.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/dw_vlSmpz6-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/dw_vlSmpz6-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Cheap VPS&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Cheap VPS&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://mefody.dev/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/_F-P_XEWkz-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/_F-P_XEWkz-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Nikita Dubko&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Nikita Dubko&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/michelle-barker&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/2DGHoCId3C-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/2DGHoCId3C-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Michelle Barker&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Michelle Barker&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://chrisburnell.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/8m4hIDDshg-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/8m4hIDDshg-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Chris Burnell&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Chris Burnell&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://letorey.co.uk/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/XF5pSlxirY-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/XF5pSlxirY-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Dave letorey&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Dave letorey&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://danabyerly.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/EntixyRl9H-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/EntixyRl9H-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Dana Byerly&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Dana Byerly&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.kloh.ch/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/xnPuch_ElH-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/xnPuch_ElH-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Luc Poupard&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Luc Poupard&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://jamessteinbach.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/CQKunEbus4-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/CQKunEbus4-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for James Steinbach&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;James Steinbach&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/user-559626bc&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/-raIxYZdWd-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/-raIxYZdWd-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Patrick Byrne&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Patrick Byrne&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/signpostmarv&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/k2v76MSRBK-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/k2v76MSRBK-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for SignpostMarv&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;SignpostMarv&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/marco-zehe&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/EOzUPnpiaR-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/EOzUPnpiaR-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Marco Zehe&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Marco Zehe&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://oisin.io&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/T5EXP6ABIP-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/T5EXP6ABIP-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Oisín Quinn&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Oisín Quinn&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.joshvickerson.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/RuWPCNf5i6-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/RuWPCNf5i6-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Josh Vickerson&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Josh Vickerson&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://risingsky.co.uk/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/F6WiSJ7WTE-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/F6WiSJ7WTE-66.png&quot; width=&quot;66&quot; height=&quot;57&quot; alt=&quot;Open Collective Avatar for Patrick Grey&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Patrick Grey&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/user-58d6db26&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/yAnzJWpNrI-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/yAnzJWpNrI-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Incognito&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Incognito&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/user-3b0b6c01&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/k55Lqy6cHp-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/k55Lqy6cHp-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Incognito&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Incognito&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.tunetheweb.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/PaoDIojRvn-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/PaoDIojRvn-66.png&quot; width=&quot;66&quot; height=&quot;74&quot; alt=&quot;Open Collective Avatar for Barry Pollard&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Barry Pollard&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/incognito-81ff86a6&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/r8RhxwhckA-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/r8RhxwhckA-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Incognito&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Incognito&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/patrick-obrien&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/F-pb4nDfpW-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/F-pb4nDfpW-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Patrick O&#39;Brien&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Patrick O&amp;#39;Brien&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://birdsong.dev/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/eWJP1VTc-N-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/eWJP1VTc-N-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Cory Birdsong&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Cory Birdsong&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://aramzs.xyz/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/yfMR5hVlO1-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/yfMR5hVlO1-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Aram ZS&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Aram ZS&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/user-a2e5f55d&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/TgyQKt0fiq-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/TgyQKt0fiq-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Frank Reding&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Frank Reding&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.marcusrelacion.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/9MV-m7OA4R-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/9MV-m7OA4R-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Marcus Relacion&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Marcus Relacion&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.ryantrimble.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/BBAjvyEnvc-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/BBAjvyEnvc-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ryan Trimble&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ryan Trimble&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/mark-llobrera&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/jHr-sKfV5t-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/jHr-sKfV5t-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Mark Llobrera&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mark Llobrera&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://sia.codes/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/o3X_bqcFc3-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/o3X_bqcFc3-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Sia Karamalegos&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Sia Karamalegos&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://edspencer.me.uk&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/mSBAXwR58A-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/mSBAXwR58A-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ed Spencer&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ed Spencer&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/patrick-fulton1&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/SZI7Ps7Z5j-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/SZI7Ps7Z5j-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Patrick Fulton&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Patrick Fulton&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://cro.media/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/EzE0X3FSsa-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/EzE0X3FSsa-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for cro.media&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;cro.media&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://jcletousey.dev/en/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Gx8fkVcGx_-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Gx8fkVcGx_-66.png&quot; width=&quot;66&quot; height=&quot;65&quot; alt=&quot;Open Collective Avatar for JC&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;JC&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/nic-chan&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/idpxINM6kh-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/idpxINM6kh-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Nic Chan&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Nic Chan&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://robsterlini.co.uk&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/7yuhBpjR_2-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/7yuhBpjR_2-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Rob Sterlini&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Rob Sterlini&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://adamdjbrett.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/5QE8XD2mdE-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/5QE8XD2mdE-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Adam DJ Brett&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Adam DJ Brett&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://tannerdolby.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/9-uJbuby7E-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/9-uJbuby7E-66.png&quot; width=&quot;66&quot; height=&quot;62&quot; alt=&quot;Open Collective Avatar for Tanner Dolby&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Tanner Dolby&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/brett-dewoody&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/NWu6jOdKOd-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/NWu6jOdKOd-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Brett DeWoody&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Brett DeWoody&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.celinedesign.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/pQagEjPYFp-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/pQagEjPYFp-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for CelineDesign&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;CelineDesign&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/kathleen-fitzpatrick&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Por0vddrkM-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Por0vddrkM-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Kathleen Fitzpatrick&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Kathleen Fitzpatrick&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/lea-rosema&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/jPm1xZrzMs-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/jPm1xZrzMs-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Lea Rosema&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Lea Rosema&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.lenesaile.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/6DHpZHxazZ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/6DHpZHxazZ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Lene&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Lene&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.chrisswithinbank.net/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/hnjhQG24QF-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/hnjhQG24QF-66.png&quot; width=&quot;66&quot; height=&quot;74&quot; alt=&quot;Open Collective Avatar for Chris&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Chris&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/hellogreg&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/t4OoG0jsUG-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/t4OoG0jsUG-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Greg G&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Greg G&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://scottmccracken.net&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/bZ8uHs57Np-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/bZ8uHs57Np-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Scott McCracken&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Scott McCracken&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/zearin&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/ZP6GVIGpwt-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/ZP6GVIGpwt-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Zearin&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Zearin&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.jeremycaldwell.me&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/_r5bATNRE9-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/_r5bATNRE9-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Jeremy&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jeremy&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://daverupert.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/UA8VCWzEwr-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/UA8VCWzEwr-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Dave Rupert&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Dave Rupert&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://cjlm.ca&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/OZs6Gm-dnF-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/OZs6Gm-dnF-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Christian Miles&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Christian Miles&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.bobmonsour.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/E8bKJZJnE8-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/E8bKJZJnE8-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Bob Monsour&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Bob Monsour&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://github.com/TotallyMehis/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Zz3QBEYhEl-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Zz3QBEYhEl-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Mehis&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mehis&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://danleatherman.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/d_KcS04uzE-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/d_KcS04uzE-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for dan leatherman&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;dan leatherman&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://justin.poehnelt.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/U-gxqLz_8c-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/U-gxqLz_8c-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for jpoehnelt&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;jpoehnelt&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/ben-hyrman&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/dbfSchziZ2-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/dbfSchziZ2-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ben Hyrman&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ben Hyrman&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://ximenavf.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/OSCw2q3V77-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/OSCw2q3V77-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ximenav Vf.&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ximenav Vf.&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://flak.is&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/QR0zIV-TnT-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/QR0zIV-TnT-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Flaki&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Flaki&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/heydon-pickering&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/hPDmDKDVjf-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/hPDmDKDVjf-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Heydon Pickering&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Heydon Pickering&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/phil-hawksworth&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/ABNN7svhDr-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/ABNN7svhDr-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Phil Hawksworth&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Phil Hawksworth&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/ovl&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/eIMJ1fV_tl-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/eIMJ1fV_tl-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Oscar&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Oscar&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/john-meguerian&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Snxs8GqSa9-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Snxs8GqSa9-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for John Meguerian&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;John Meguerian&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://keenanpayne.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/NeqsEoVUst-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/NeqsEoVUst-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Keenan Payne&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Keenan Payne&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/tianyu-ge&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/g8JuVktfCY-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/g8JuVktfCY-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Tianyu Ge&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Tianyu Ge&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://de.trustpilot.com/review/paysafecardcasinos.org&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/_2tBSeClmd-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/_2tBSeClmd-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Paysafecard Casino&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Paysafecard Casino&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.fun88thf.com/th/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/c4ijjyAcmc-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/c4ijjyAcmc-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Fun88&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Fun88&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.simoncox.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/0liiy7-s8t-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/0liiy7-s8t-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Simon Cox&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Simon Cox&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/king-billy-slots1&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/YkyePnjAKa-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/YkyePnjAKa-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for King Billy Slots&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;King Billy Slots&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.ingo-steinke.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/okzSCHvvSz-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/okzSCHvvSz-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ingo Steinke&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ingo Steinke&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/matthew-tole&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Ca0d4Fystb-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Ca0d4Fystb-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Matthew Tole&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Matthew Tole&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://bight.dev/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/qOFZ0q42LJ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/qOFZ0q42LJ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ned Zimmerman&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ned Zimmerman&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/richard-herbert&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;img src=&quot;https://images.opencollective.com/richard-herbert/9b47657/avatar.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Richard Herbert&quot; class=&quot;avatar avatar-large&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Richard Herbert&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://kayce.basqu.es&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Oin0JiM_Th-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Oin0JiM_Th-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Kayce Basques&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Kayce Basques&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.cvennevik.no/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/S0_9Pqroe3-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/S0_9Pqroe3-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Cecilie Vennevik&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Cecilie Vennevik&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://tfedder.de/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/W1srFwOqke-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/W1srFwOqke-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Tobias Fedder&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Tobias Fedder&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/robin-rendle&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/0ecBO3mcjC-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/0ecBO3mcjC-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Robin Rendle&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Robin Rendle&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.raymondcamden.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/m7XckrlSP5-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/m7XckrlSP5-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Raymond Camden&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Raymond Camden&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://annualbeta.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/L5sd6hUs3Z-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/L5sd6hUs3Z-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Søren Birkemeyer&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Søren Birkemeyer&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://cocopon.me&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/rtuZtaJUSz-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/rtuZtaJUSz-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for cocopon&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;cocopon&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.khalidabuhakmeh.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/JNNWOpXx7--66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/JNNWOpXx7--66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Khalid Abuhakmeh&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Khalid Abuhakmeh&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/keith-kurson&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/AWXqmOC4El-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/AWXqmOC4El-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Keith Kurson&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Keith Kurson&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://marchbox.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/4xHZ4uxOI4-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/4xHZ4uxOI4-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Zacky Ma&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Zacky Ma&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/box464&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/TtRXbP0S1n-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/TtRXbP0S1n-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for box464&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;box464&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://fudge.org/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/gJBuQPfhxJ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/gJBuQPfhxJ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Jay Cuthrell&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jay Cuthrell&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://gittings.studio/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/bEU8IWANAL-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/bEU8IWANAL-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ryan Gittings&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ryan Gittings&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.lion-byte.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/WlZ3RmxoyC-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/WlZ3RmxoyC-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Mark Hernandez&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mark Hernandez&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/andrew-harvard&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/6Pt5xOwP-E-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/6Pt5xOwP-E-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Andrew Harvard&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Andrew Harvard&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://kvibber.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/cS3MO2qidc-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/cS3MO2qidc-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Kelson Vibber&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Kelson Vibber&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/gastonrampersad&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/oKjB9DXvSM-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/oKjB9DXvSM-66.png&quot; width=&quot;66&quot; height=&quot;67&quot; alt=&quot;Open Collective Avatar for Gaston Rampersad&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Gaston Rampersad&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://drhayes.io&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/dy_OCpjmmX-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/dy_OCpjmmX-66.png&quot; width=&quot;66&quot; height=&quot;69&quot; alt=&quot;Open Collective Avatar for David Hayes&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;David Hayes&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://ivanbuncic.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/4MCslbq-xv-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/4MCslbq-xv-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ivan Buncic&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ivan Buncic&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.centralvainsulation.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/wyaqQSVjSb-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/wyaqQSVjSb-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Richmond Insulation&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Richmond Insulation&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.ains.me/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/HDuGU6WKyC-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/HDuGU6WKyC-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ainsley Ellis&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ainsley Ellis&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.aldr.dev/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/fUFEDD31rL-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/fUFEDD31rL-66.png&quot; width=&quot;66&quot; height=&quot;49&quot; alt=&quot;Open Collective Avatar for Christian Alder&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Christian Alder&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/brian-koser&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/BTgKMRjqSr-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/BTgKMRjqSr-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Brian Koser&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Brian Koser&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/kevin-yank&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/tFdXD40ECE-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/tFdXD40ECE-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Kevin Yank&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Kevin Yank&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.nhhousedemcaucus.com/team/rep-eric-gallager&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/kmTPROJIsP-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/kmTPROJIsP-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Eric Gallager&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Eric Gallager&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/eric-carlisle&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/segdDp6Ynq-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/segdDp6Ynq-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Eric Carlisle&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Eric Carlisle&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/quinnanya&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Cy-c4InPEb-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Cy-c4InPEb-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for quinnanya&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;quinnanya&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://nickcolley.co.uk&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/U1sjK2Nyct-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/U1sjK2Nyct-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Nick Colley&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Nick Colley&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/mark-boulton&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/6aNZoB1-cB-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/6aNZoB1-cB-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Mark Boulton&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mark Boulton&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/pepelsbey&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/QNJYtxBgGn-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/QNJYtxBgGn-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Vadim Makeev&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Vadim Makeev&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://darn.es&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/DcHSuYIAdy-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/DcHSuYIAdy-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for David Darnes&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;David Darnes&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://rxdb.info/?utm_source=opencollective&amp;amp;utm_medium=banner&amp;amp;utm_campaign=opencollective_sponsor&amp;amp;utm_content=logo&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/6TSDNjn0Wn-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/6TSDNjn0Wn-66.png&quot; width=&quot;66&quot; height=&quot;30&quot; alt=&quot;Open Collective Avatar for RxDB&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;RxDB&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.interroban.gg&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/wRiXT7ZuXr-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/wRiXT7ZuXr-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Luke Mitchell&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Luke Mitchell&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/sachin-sancheti&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/VbcY6fHpL3-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/VbcY6fHpL3-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Sachin Sancheti&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Sachin Sancheti&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/chalkygames123&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/g9xKaLEKNd-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/g9xKaLEKNd-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Takuya Fukuju&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Takuya Fukuju&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/chris-peckham&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/roBjnfJrzt-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/roBjnfJrzt-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Chris Peckham&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Chris Peckham&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.richmondconcretepros.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/6w0Ejl6LIi-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/6w0Ejl6LIi-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Richmond Concrete&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Richmond Concrete&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://dtott.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/DSsM8y-k9f-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/DSsM8y-k9f-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Dan Ott&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Dan Ott&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.nonbreakingspace.co.uk&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/4d1nmNRlvb-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/4d1nmNRlvb-66.png&quot; width=&quot;66&quot; height=&quot;88&quot; alt=&quot;Open Collective Avatar for Paul Welsh&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Paul Welsh&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.itflashcards.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/_7ZlRcCQc7-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/_7ZlRcCQc7-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for IT Flashcards&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;IT Flashcards&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://thejollyteapot.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/MYV9o10Hkc-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/MYV9o10Hkc-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Nicolas&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Nicolas&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://bikes.emilyhorsman.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fbikes.emilyhorsman.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fbikes.emilyhorsman.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Emily Horsman&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.aaron-gustafson.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/_G96c0SZtf-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/_G96c0SZtf-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Aaron Gustafson&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Aaron Gustafson&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/andreas-kapp&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/J6Z8i_NGny-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/J6Z8i_NGny-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Andreas Kapp&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Andreas Kapp&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://tomquinonero.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/z8ZEdSyHaM-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/z8ZEdSyHaM-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Tom&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Tom&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://benbrignell.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Gm8R6o0LOG-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Gm8R6o0LOG-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ben Brignell&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ben Brignell&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://florianboegner.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fflorianboegner.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fflorianboegner.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Florian Bögner&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/kyle-mitofsky&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/HmQz9SMhEy-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/HmQz9SMhEy-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Kyle Mitofsky&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Kyle Mitofsky&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.apirocket.io&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/7sqbXjInLK-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/7sqbXjInLK-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Juan Miguel&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Juan Miguel&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/anna-e-cook&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/_W72Qo0VaI-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/_W72Qo0VaI-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Anna E. Cook&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Anna E. Cook&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://webworker.berlin&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/s6ss6kmSrm-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/s6ss6kmSrm-66.png&quot; width=&quot;66&quot; height=&quot;52&quot; alt=&quot;Open Collective Avatar for Jonathan Weckerle&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jonathan Weckerle&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://ohhelloana.blog&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/DsOUZMVh1X-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/DsOUZMVh1X-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ana Rodrigues&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ana Rodrigues&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/sami-maatta&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/sDbteeFBd_-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/sDbteeFBd_-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Sami Määttä&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Sami Määttä&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://nicolasfriedli.ch&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/esDDEWPN4t-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/esDDEWPN4t-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Nicolas Friedli&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Nicolas Friedli&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://decamp.dev&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/PPDXLYumuI-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/PPDXLYumuI-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Matt DeCamp&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Matt DeCamp&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.reachdigital.nl/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/0Yvuq6Sbe8-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/0Yvuq6Sbe8-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Reach Digital&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Reach Digital&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/ross-kinney&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/T_p4I7wPmw-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/T_p4I7wPmw-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ross Kinney&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ross Kinney&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://beeps.website/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/k_lfX-kD16-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/k_lfX-kD16-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for beeps&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;beeps&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://chromamine.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/lnVWvnlygL-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/lnVWvnlygL-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Harris Lapiroff&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Harris Lapiroff&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/eric-t-grubaugh&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/PVsziB1EsD-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/PVsziB1EsD-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Eric T Grubaugh&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Eric T Grubaugh&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.kilianfinger.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/rEm-bG4XT1-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/rEm-bG4XT1-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Kilian Finger&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Kilian Finger&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://stebre.ch/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/DL-Ll4E5L--66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/DL-Ll4E5L--66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Stefan Brechbühl&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Stefan Brechbühl&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/mike83&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/ks79zsTag7-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/ks79zsTag7-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Mike&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mike&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://marco.solazzi.me&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/IS8nLph9jq-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/IS8nLph9jq-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Marco Solazzi&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Marco Solazzi&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/chris-ruppel&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/SVv_kojePS-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/SVv_kojePS-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Chris Ruppel&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Chris Ruppel&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.wayneandlayne.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/umzifA1TGy-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/umzifA1TGy-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Wayne and Layne&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Wayne and Layne&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/schmartissimo&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/IrbJeDdqr_-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/IrbJeDdqr_-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Marty McGuire&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Marty McGuire&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/rahul-gupta2&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/tkzPwEtYCZ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/tkzPwEtYCZ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Rahul Gupta&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Rahul Gupta&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://sixtwothree.org/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/RehkOw1umc-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/RehkOw1umc-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Jason Garber&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jason Garber&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://gunsandfrocks.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/X4trEZmnp1-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/X4trEZmnp1-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Nathan Bottomley&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Nathan Bottomley&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://sambaldwin.info/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/1YQm_kUuCC-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/1YQm_kUuCC-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Sam Baldwin&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Sam Baldwin&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/nmoodev&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/jm68T5FpvH-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/jm68T5FpvH-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Nate Moore&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Nate Moore&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://steedgood.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/JA6oRMUqSh-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/JA6oRMUqSh-66.png&quot; width=&quot;66&quot; height=&quot;65&quot; alt=&quot;Open Collective Avatar for Stephen Bell&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Stephen Bell&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://jam1401.dev&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/ANAiVAqWUP-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/ANAiVAqWUP-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Jeffrey A Morgan&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jeffrey A Morgan&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.evan-harrison.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/YVSoYSEyvu-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/YVSoYSEyvu-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Evan Harrison&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Evan Harrison&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://automatio.ai/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/znP4JTOftm-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/znP4JTOftm-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Automatio AI&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Automatio AI&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://velvetcache.org/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/MWKcoYPTPj-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/MWKcoYPTPj-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for John&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;John&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/dieter-peirs&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/-2pC9NPlRa-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/-2pC9NPlRa-66.png&quot; width=&quot;66&quot; height=&quot;72&quot; alt=&quot;Open Collective Avatar for Dieter Peirs&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Dieter Peirs&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/josiah2&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/HWIPYJWWMT-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/HWIPYJWWMT-66.png&quot; width=&quot;66&quot; height=&quot;43&quot; alt=&quot;Open Collective Avatar for Josiah&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Josiah&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://roobottom.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/yIbsK1_KKC-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/yIbsK1_KKC-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Jon Roobottom&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jon Roobottom&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://windowswebdev.io&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/nxRoe3aj5J-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/nxRoe3aj5J-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Christopher Salmon&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Christopher Salmon&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.fbpostlikes.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/0E76mjhf2N-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/0E76mjhf2N-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for FBPostLikes&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;FBPostLikes&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://de.trustpilot.com/review/onlinecasinospaysafecard.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/CNg64hhrxK-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/CNg64hhrxK-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Paysafecard Casino&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Paysafecard Casino&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://zapparov.dev/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/LreaYfMWUQ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/LreaYfMWUQ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Aleksandr Zapparov&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Aleksandr Zapparov&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://ryanmulligan.dev/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/VdVcl7nGQR-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/VdVcl7nGQR-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ryan&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ryan&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/andy-stevenson&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/v-0uPV1QAa-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/v-0uPV1QAa-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Andy Stevenson&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Andy Stevenson&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://blr.design&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/XYWi1t7zRw-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/XYWi1t7zRw-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Brian Louis Ramirez&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Brian Louis Ramirez&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.wunschik.it&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/N7ZdNyTqOQ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/N7ZdNyTqOQ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Alexander Wunschik&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Alexander Wunschik&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://nz.trustpilot.com/review/best-online-casino-nz.net&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/6ibdNXmt_a-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/6ibdNXmt_a-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Online casino&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Online casino&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.fun88vnb.com/vn/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Lx6YUQOx6b-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Lx6YUQOx6b-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Fun88&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Fun88&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.silvestar.codes/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/UZ0en7SnTj-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/UZ0en7SnTj-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Cita d.o.o.&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Cita d.o.o.&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://travisbriggs.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/7q6GeFY1xR-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/7q6GeFY1xR-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Travis Briggs&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Travis Briggs&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://shaneholloway.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/CN0OYb1AbS-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/CN0OYb1AbS-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Shane Holloway&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Shane Holloway&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/mark-mayo&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/B2Yd09X-_V-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/B2Yd09X-_V-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Mark Mayo&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mark Mayo&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://bengo.is&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/kcs-nCAcrQ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/kcs-nCAcrQ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for bengo&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;bengo&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/daniel-saunders&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/ez8-1o75YK-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/ez8-1o75YK-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Daniel Saunders&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Daniel Saunders&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://eaton-works.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Featon-works.com%2F/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Featon-works.com%2F&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Eaton Zveare&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://fokus.design/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/bU3oOK1mnC-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/bU3oOK1mnC-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Flemming Meyer&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Flemming Meyer&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/brian-zerangue&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/AP-wp7KBHM-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/AP-wp7KBHM-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Brian Zerangue&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Brian Zerangue&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://vkc.sh&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/6VIE-qZTIL-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/6VIE-qZTIL-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Veronica Explains&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Veronica Explains&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/hawk-ticehurst&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/4Xy_M5Ra7F-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/4Xy_M5Ra7F-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Hawk Ticehurst&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Hawk Ticehurst&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://masalpu.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/5wVMj7aric-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/5wVMj7aric-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for MasalPu&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;MasalPu&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/john-kemp-cruz&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/n6O2gdI7lp-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/n6O2gdI7lp-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for John Kemp-Cruz&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;John Kemp-Cruz&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/john-j-mills&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/T1ZwRF3yTD-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/T1ZwRF3yTD-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for John J. Mills&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;John J. Mills&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://ollomedia.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/XrCbDDjCu0-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/XrCbDDjCu0-66.png&quot; width=&quot;66&quot; height=&quot;82&quot; alt=&quot;Open Collective Avatar for Joshua Ray&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Joshua Ray&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/sturobson&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/QLslqWOL_Q-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/QLslqWOL_Q-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Stuart Robson&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Stuart Robson&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/curt-hasselschwert&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/IqymD2oMb7-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/IqymD2oMb7-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Curt Hasselschwert&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Curt Hasselschwert&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/yahor-mikhnevich&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/mlYQDVfEqd-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/mlYQDVfEqd-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Yahor Mikhnevich&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Yahor Mikhnevich&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://blog.andrewshell.org/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/rVVxTYlieC-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/rVVxTYlieC-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Andrew Shell&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Andrew Shell&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://luhr.co/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/3oxrLKija6-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/3oxrLKija6-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for David Luhr&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;David Luhr&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://mattstein.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/lu4Jdo8vj8-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/lu4Jdo8vj8-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Matt Stein&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Matt Stein&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.softermii.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/kyJ1iq0um5-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/kyJ1iq0um5-66.png&quot; width=&quot;66&quot; height=&quot;52&quot; alt=&quot;Open Collective Avatar for Softermii&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Softermii&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.r0b.io/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/zautg4GgYX-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/zautg4GgYX-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Rob Anderson&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Rob Anderson&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://github.com/VoloshchenkoAl&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/QJw2Hp9-gW-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/QJw2Hp9-gW-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for VoloshchenkoAl&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;VoloshchenkoAl&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/hunter-miller&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/vr-9daIgFJ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/vr-9daIgFJ-66.png&quot; width=&quot;66&quot; height=&quot;64&quot; alt=&quot;Open Collective Avatar for Hunter Miller&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Hunter Miller&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/lewis-nyman&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/yjOdTjcvxu-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/yjOdTjcvxu-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Lewis Nyman&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Lewis Nyman&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://andrew.nonetoohappy.buzz&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/GJGI-AeBSL-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/GJGI-AeBSL-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Andrew Chou&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Andrew Chou&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://schepp.dev/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/WtGqwkmdGB-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/WtGqwkmdGB-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Schepp&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Schepp&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://rdela.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/5Xt5fO3MbK-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/5Xt5fO3MbK-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ricky de Laveaga&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ricky de Laveaga&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://iganony.net/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/ulLUdnq4Xn-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/ulLUdnq4Xn-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for IgAnony&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;IgAnony&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://github.com/danielstaleiny&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/H2YsWORSa9-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/H2YsWORSa9-66.png&quot; width=&quot;66&quot; height=&quot;47&quot; alt=&quot;Open Collective Avatar for Daniel Rafaj&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Daniel Rafaj&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://legjobbmagyarcasino.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/1vvzCsUYLb-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/1vvzCsUYLb-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for legjobbmagyarcasino.com&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;legjobbmagyarcasino.com&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://chudovo.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/NRBpwMUeBj-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/NRBpwMUeBj-66.png&quot; width=&quot;66&quot; height=&quot;9&quot; alt=&quot;Open Collective Avatar for Chudovo&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Chudovo&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://johanbove.info/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/0foGlM6wQK-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/0foGlM6wQK-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Johan Bové&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Johan Bové&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.transition-creative.co.uk&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/c0uBWfQwo0-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/c0uBWfQwo0-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Grant Smith&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Grant Smith&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://chobble.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Hcuas6rcYP-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Hcuas6rcYP-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Stefan Burke&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Stefan Burke&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://chriskirknielsen.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/vYuhBQSqXF-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/vYuhBQSqXF-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for chriskirknielsen&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;chriskirknielsen&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/ray-villalobos&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/3S4kNIlJ6f-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/3S4kNIlJ6f-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Ray Villalobos&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Ray Villalobos&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/saji&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/LrXPBrG0kb-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/LrXPBrG0kb-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Marek ‘saji’ Augustynowicz&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Marek ‘saji’ Augustynowicz&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/mael-brunet&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/01ZSfydoZ3-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/01ZSfydoZ3-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Maël Brunet&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Maël Brunet&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://tixie.name/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/QeYBHwfaJU-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/QeYBHwfaJU-66.png&quot; width=&quot;66&quot; height=&quot;82&quot; alt=&quot;Open Collective Avatar for Tixie Salander&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Tixie Salander&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/joel-goodman&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/MnhAJEuBsl-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/MnhAJEuBsl-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Joel Goodman&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Joel Goodman&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/jonathan-wright&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;img src=&quot;https://images.opencollective.com/jonathan-wright/a1adea5/avatar.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Jonathan Wright&quot; class=&quot;avatar avatar-large&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Jonathan Wright&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://antonius.me&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/427TJDN43R-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/427TJDN43R-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Peter Antonius&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Peter Antonius&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://novecasino.net/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Q1UpFVPUIt-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Q1UpFVPUIt-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Nove Casino&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Nove Casino&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://davepowers.me/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/85W70IjHFe-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/85W70IjHFe-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Dave Powers&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Dave Powers&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/alistair-tweedie&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/VZAV2dFUQx-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/VZAV2dFUQx-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for alistairtweedie&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;alistairtweedie&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://httpster.io&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/nn0cPWvJXf-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/nn0cPWvJXf-66.png&quot; width=&quot;66&quot; height=&quot;64&quot; alt=&quot;Open Collective Avatar for Sami Singh&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Sami Singh&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://treypiepmeier.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/90Hmd68nD8-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/90Hmd68nD8-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Trey Piepmeier&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Trey Piepmeier&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://voxpelli.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/AVYrptayKp-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/AVYrptayKp-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Pelle Wessman&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Pelle Wessman&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://jeremenichelli.io&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/JVNXyslEFl-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/JVNXyslEFl-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Jeremias Menichelli&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jeremias Menichelli&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.socialwick.com/youtube/subscribers&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/ULSIqO_guB-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/ULSIqO_guB-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Buy YouTube Subscribers from SocialWick&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Buy YouTube Subscribers from SocialWick&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://jonplummer.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/rs45UPtDdz-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/rs45UPtDdz-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Jon Plummer&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Jon Plummer&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/daniel-ritzenthaler&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/iW1nTWBQg4-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/iW1nTWBQg4-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Daniel Ritzenthaler&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Daniel Ritzenthaler&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://discountagent.co.uk/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/4UlgrnpnS5-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/4UlgrnpnS5-66.png&quot; width=&quot;66&quot; height=&quot;62&quot; alt=&quot;Open Collective Avatar for Discount Agent&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Discount Agent&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/claudia-rndrs&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/yboBiDgDxh-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/yboBiDgDxh-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Claudia R&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Claudia R&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.gradyt.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/kMKAcGq4jl-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/kMKAcGq4jl-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Grady Thompson&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Grady Thompson&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/mikeproulx&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/PYEnC_ol47-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/PYEnC_ol47-66.png&quot; width=&quot;66&quot; height=&quot;71&quot; alt=&quot;Open Collective Avatar for Mike&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mike&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/chris-mcleod&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/w846qo9ySQ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/w846qo9ySQ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Chris McLeod&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Chris McLeod&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/rowdy-rabouw&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/7cYhKwRy68-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/7cYhKwRy68-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Rowdy Rabouw&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Rowdy Rabouw&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/kevin-c-tofel&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/upu1vV_oVT-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/upu1vV_oVT-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Kevin C. Tofel&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Kevin C. Tofel&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://celebian.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/Gpe-Pa03NE-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/Gpe-Pa03NE-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Celebian&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Celebian&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://thomasrigby.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/a4YqOKU4Wt-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/a4YqOKU4Wt-66.png&quot; width=&quot;66&quot; height=&quot;65&quot; alt=&quot;Open Collective Avatar for Thomas Rigby&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Thomas Rigby&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://bsky.app/profile/obee.me&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/__43EVHUkD-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/__43EVHUkD-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Matt Obee&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Matt Obee&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/user-656cc0f2&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/5ZJ0kMIG_s-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/5ZJ0kMIG_s-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Austin Carr&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Austin Carr&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.chriscollins.me&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/CaAOFxSW9e-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/CaAOFxSW9e-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Chris Collins&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Chris Collins&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://opencollective.com/eben-gilkenson&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/quLqd13Afl-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/quLqd13Afl-66.png&quot; width=&quot;66&quot; height=&quot;56&quot; alt=&quot;Open Collective Avatar for Eben Gilkenson&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Eben Gilkenson&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://gregwolanski.com/?ref=opencollective.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/1GFOxv-kU1-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/1GFOxv-kU1-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Greg Wolanski&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Greg Wolanski&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://thomasclausen.dk&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;img src=&quot;https://v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fthomasclausen.dk/&quot; width=&quot;60&quot; height=&quot;60&quot; alt=&quot;Favicon for v1.indieweb-avatar.11ty.dev/https%3A%2F%2Fthomasclausen.dk&quot; class=&quot;avatar avatar-indieweb&quot; loading=&quot;lazy&quot; decoding=&quot;async&quot; /&gt;Thomas Clausen&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://knowler.dev/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/qboKv_8K47-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/qboKv_8K47-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Nathan Knowler&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Nathan Knowler&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://berryhouse.ca/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/nT_wkD149--66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/nT_wkD149--66.png&quot; width=&quot;66&quot; height=&quot;64&quot; alt=&quot;Open Collective Avatar for Brennan Kenneth Brown&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Brennan Kenneth Brown&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://irishlucky.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/KP2nkUzjuh-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/KP2nkUzjuh-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for irishlucky.com&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;irishlucky.com&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.mymoneycomparison.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/3aC0nmyEMg-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/3aC0nmyEMg-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Mymoneycomparison.com&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Mymoneycomparison.com&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://targetedwebtraffic.com/our-services&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/QPVeQfHZhG-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/QPVeQfHZhG-66.png&quot; width=&quot;66&quot; height=&quot;60&quot; alt=&quot;Open Collective Avatar for TWT S&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;TWT S&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://slovenskecasino.net/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/wD1al9UJBB-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/wD1al9UJBB-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for slovenskecasino.net&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;slovenskecasino.net&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://kaszinomagyar.net/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/ej2YW3Xj9x-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/ej2YW3Xj9x-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Casino Magyar&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Casino Magyar&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://orbitdownloader.com/youtube-downloader&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/LoSLRhR_xN-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/LoSLRhR_xN-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for YouTube Downloader&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;YouTube Downloader&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://gf.dev/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/S9zFmus7b6-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/S9zFmus7b6-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Network Tools&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Network Tools&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://calculator.now/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/QYz-0WHGUc-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/QYz-0WHGUc-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Calculators&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Calculators&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://wallpapers.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/2beKKziFkM-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/2beKKziFkM-66.png&quot; width=&quot;66&quot; height=&quot;64&quot; alt=&quot;Open Collective Avatar for Wallpapers.Com&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Wallpapers.Com&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://viewsnapstories.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/khTN8FSc3P-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/khTN8FSc3P-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for ViewSnapStories&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;ViewSnapStories&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://de.trustpilot.com/review/onlinecasinoohneoasis.me&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/V_yGTe6Pqo-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/V_yGTe6Pqo-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Casino ohne oasis&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Casino ohne oasis&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.gcertificationcourse.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/TwSzOl4KcZ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/TwSzOl4KcZ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for G Certification Course&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;G Certification Course&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.trustpilot.com/review/spinfin.online&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/6reWfZoclA-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/6reWfZoclA-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Spinfin Casino Review&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Spinfin Casino Review&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.trustpilot.com/review/robocat-1.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/FvH-gn3KUP-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/FvH-gn3KUP-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Robocat Casino Review&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Robocat Casino Review&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.trustpilot.com/review/slotslv.website&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/S6GTj00yoe-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/S6GTj00yoe-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for SlotsLV&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;SlotsLV&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.trustpilot.com/review/crash-aviator.com&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/7zTK12rpM4-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/7zTK12rpM4-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Aviator Casino&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Aviator Casino&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.trustpilot.com/review/aviator-1.online&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/RQz_KbzhYj-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/RQz_KbzhYj-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Aviator Game Review&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Aviator Game Review&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://www.casino.escritoscientificos.es/casinos-sin-licencia/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/mknhJZm6_f-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/mknhJZm6_f-66.png&quot; width=&quot;66&quot; height=&quot;12&quot; alt=&quot;Open Collective Avatar for casinos sin licencia&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;casinos sin licencia&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://wnb-casino.de/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/ZcJLwyMwBE-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/ZcJLwyMwBE-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for WNB Casino&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;WNB Casino&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://buylikesservices.com/&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/TBl95JIYEY-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/TBl95JIYEY-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for Buy TikTok Followers - Buylikesservices&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;Buy TikTok Followers - Buylikesservices&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;
    &lt;a href=&quot;https://elfontario.ca&quot; class=&quot;elv-externalexempt supporters-link&quot; rel=&quot;sponsored&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/RldOQxGdHJ-66.avif 66w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/RldOQxGdHJ-66.png&quot; width=&quot;66&quot; height=&quot;66&quot; alt=&quot;Open Collective Avatar for elfontario.ca&quot; class=&quot;avatar avatar-large&quot; /&gt;&lt;/picture&gt;elfontario.ca&lt;/a&gt;
  &lt;/div&gt;
  &lt;div&gt;&lt;a href=&quot;https://opencollective.com/11ty&quot;&gt;&lt;picture&gt;&lt;source type=&quot;image/avif&quot; srcset=&quot;https://www.11ty.dev/img/built/ee9_v3ncKd-200.avif 200w&quot; /&gt;&lt;img loading=&quot;lazy&quot; decoding=&quot;async&quot; src=&quot;https://www.11ty.dev/img/built/ee9_v3ncKd-200.png&quot; alt=&quot;Default Avatar Image&quot; class=&quot;avatar&quot; width=&quot;200&quot; height=&quot;200&quot; /&gt;&lt;/picture&gt;&lt;strong&gt;and you?&lt;/strong&gt; &lt;span aria-hidden=&quot;true&quot; class=&quot;emoji&quot;&gt;🎁&lt;/span&gt;&lt;span aria-hidden=&quot;true&quot; class=&quot;emoji&quot;&gt;🎁&lt;/span&gt;&lt;span aria-hidden=&quot;true&quot; class=&quot;emoji&quot;&gt;🎁&lt;/span&gt;&lt;/a&gt;&lt;/div&gt;
&lt;/div&gt;
&lt;p&gt;There are &lt;a href=&quot;https://www.11ty.dev/docs/community/&quot;&gt;&lt;strong&gt;other ways to support Eleventy&lt;/strong&gt; too&lt;/a&gt;!&lt;/p&gt;
</content>
  </entry>
</feed>