<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="./feed.xsl" type="text/xsl"?>
<feed xmlns="http://www.w3.org/2005/Atom">
	<title>711ty, an Eleventy Starter</title>
	<subtitle>A mildly opinionated Eleventy starter.</subtitle>
	<link href="https://711ty.dev/feed.xml" rel="self" type="application/atom+xml" />
	<link href="https://711ty.dev" rel="alternate" type="text/html"/>
	<author>
		<name>Your Name Here</name>
		<email>youremailaddress@example.com</email>
	</author>
	
	<updated>2023-09-05T00:00:00Z</updated>
	
	<id>https://711ty.dev/</id>
		<entry>
			<title>Using 711ty</title>
			<link href="https://711ty.dev/posts/using-711ty/"/>
			<updated>2023-09-05T00:00:00Z</updated>
			<id>https://711ty.dev/posts/using-711ty/</id>
			<content type="html"><![CDATA[
				<p>There’s a little bit of housekeeping to do in order to make this template your own.</p>
<h2>Update configuration data</h2>
<p>711ty uses a config file to store project specific values. This file can be found in <code>.seven11ty.js</code>. You’ll want to update the following values to suit your project:</p>
<pre class="language-js" tabindex="0" data-language="js"><code class="language-js">module<span class="token punctuation">.</span>exports <span class="token operator">=</span> <span class="token punctuation">{</span>
	<span class="token comment">// Directory structure</span>
	<span class="token literal-property property">dir</span><span class="token operator">:</span> <span class="token punctuation">{</span>
		<span class="token literal-property property">input</span><span class="token operator">:</span> <span class="token string">'src'</span><span class="token punctuation">,</span>
		<span class="token literal-property property">output</span><span class="token operator">:</span> <span class="token string">'www'</span><span class="token punctuation">,</span>
		<span class="token literal-property property">includes</span><span class="token operator">:</span> <span class="token string">'views'</span><span class="token punctuation">,</span>
		<span class="token literal-property property">layouts</span><span class="token operator">:</span> <span class="token string">'views/layouts'</span><span class="token punctuation">,</span>
		<span class="token literal-property property">data</span><span class="token operator">:</span> <span class="token string">'data'</span><span class="token punctuation">,</span>
		<span class="token comment">// ⬇ only 711ty uses these</span>
		<span class="token literal-property property">assets</span><span class="token operator">:</span> <span class="token string">'assets'</span><span class="token punctuation">,</span>
		<span class="token literal-property property">styles</span><span class="token operator">:</span> <span class="token string">'assets/styles'</span><span class="token punctuation">,</span>
		<span class="token literal-property property">images</span><span class="token operator">:</span> <span class="token string">'assets/images'</span><span class="token punctuation">,</span>
	<span class="token punctuation">}</span><span class="token punctuation">,</span>

	<span class="token comment">// Control which files Eleventy will process</span>
	<span class="token comment">// e.g.: *.md, *.njk, *.html, *.liquid</span>
	<span class="token literal-property property">templateFormats</span><span class="token operator">:</span> <span class="token punctuation">[</span><span class="token string">'md'</span><span class="token punctuation">,</span> <span class="token string">'njk'</span><span class="token punctuation">]</span><span class="token punctuation">,</span>

	<span class="token comment">// Pre-process files with: (default: `liquid`)</span>
	<span class="token literal-property property">templateEngine</span><span class="token operator">:</span> <span class="token string">'njk'</span><span class="token punctuation">,</span>

	<span class="token comment">// Image formats and quality to generate</span>
	<span class="token comment">// Pass `same` to generate responsive images in the input format</span>
	<span class="token comment">// Documentation: https://sharp.pixelplumbing.com/api-output</span>
	<span class="token literal-property property">imageFormats</span><span class="token operator">:</span> <span class="token punctuation">{</span>
		<span class="token comment">// Uncomment AVIF for smaller images but longer build times</span>
		<span class="token comment">// avif: 30,</span>
		<span class="token literal-property property">webp</span><span class="token operator">:</span> <span class="token number">60</span><span class="token punctuation">,</span>
		<span class="token literal-property property">same</span><span class="token operator">:</span> <span class="token number">75</span><span class="token punctuation">,</span>
	<span class="token punctuation">}</span><span class="token punctuation">,</span>
<span class="token punctuation">}</span><span class="token punctuation">;</span></code></pre>
<h2>Update template metadata</h2>
<p>Eleventy uses <a href="https://www.11ty.dev/docs/data-global/">global data files</a> to conveniently expose data to every template in an Eleventy project. In this template global data files can be found under <code>src/data</code>.</p>
<p>This template uses <code>site.js</code> to pull in useful default global values. These of course can be overridden in your content frontmatter thanks to Eleventys <a href="https://www.11ty.dev/docs/data-cascade/">data cascade</a>.</p>
<pre class="language-js" tabindex="0" data-language="js"><code class="language-js"><span class="token comment">// Required. The name of your project.</span>
<span class="token literal-property property">title</span><span class="token operator">:</span> <span class="token string">'711ty, an Eleventy Starter'</span><span class="token punctuation">,</span>

<span class="token comment">// Required. A brief description of your project.</span>
<span class="token literal-property property">description</span><span class="token operator">:</span> <span class="token string">'A mildly opinionated Eleventy starter.'</span><span class="token punctuation">,</span>

<span class="token comment">// Required. A short name used exclusively in webmanifest.njk. Keep it under 12 characters to minimize the possibility of truncation. Can be safely deleted if you delete webmanifest.njk.</span>
<span class="token literal-property property">shortName</span><span class="token operator">:</span> <span class="token string">'711ty'</span><span class="token punctuation">,</span>

<span class="token comment">// Required. SEO indexing behaviour.</span>
<span class="token literal-property property">robots</span><span class="token operator">:</span> <span class="token string">'index, follow'</span><span class="token punctuation">,</span>

<span class="token comment">// Required. Used exclusively in webmanifest.njk. This sometimes affects how an OS displays your site. Can be safely deleted if you delete webmanifest.njk.</span>
<span class="token literal-property property">themeColor</span><span class="token operator">:</span> <span class="token string">'#00e2e6'</span><span class="token punctuation">,</span>

<span class="token comment">// Required. Used exclusively in webmanifest.njk. Recommend using the same value as body background color in your CSS. Can be safely deleted if you delete webmanifest.njk.</span>
<span class="token literal-property property">backgroundColor</span><span class="token operator">:</span> <span class="token string">'#ffffff'</span><span class="token punctuation">,</span>

<span class="token comment">// Required. lang attribute for the &lt;html> tag. Used by screen readers and search engines to determine the language of a page. Can be safely deleted if you delete webmanifest.njk.</span>
<span class="token literal-property property">lang</span><span class="token operator">:</span> <span class="token string">'en'</span><span class="token punctuation">,</span>

<span class="token comment">// Optional. locale attribute for the &lt;html> tag. Used by screen readers and search engines to determine the language of a page. Can be safely deleted if you delete webmanifest.njk.</span>
<span class="token literal-property property">locale</span><span class="token operator">:</span> <span class="token string">'en_US'</span><span class="token punctuation">,</span>

<span class="token comment">// Optional. Delete block if not used. Author values for project.</span>
<span class="token literal-property property">author</span><span class="token operator">:</span> <span class="token punctuation">{</span>
	<span class="token literal-property property">name</span><span class="token operator">:</span> <span class="token string">"Author Name"</span><span class="token punctuation">,</span>
	<span class="token literal-property property">email</span><span class="token operator">:</span> <span class="token string">"author@email.com"</span><span class="token punctuation">,</span>
	<span class="token literal-property property">url</span><span class="token operator">:</span> <span class="token string">'https://example.com/about-me/'</span><span class="token punctuation">,</span>
	<span class="token literal-property property">github</span><span class="token operator">:</span> <span class="token string">'https://github.com/your-name-here'</span><span class="token punctuation">,</span>
	<span class="token literal-property property">handle</span><span class="token operator">:</span> <span class="token string">'your-name-here'</span><span class="token punctuation">,</span>
<span class="token punctuation">}</span><span class="token punctuation">,</span>

<span class="token comment">// Optional. Pagination values for project.</span>
<span class="token literal-property property">paginate</span><span class="token operator">:</span> <span class="token number">6</span><span class="token punctuation">,</span>

<span class="token comment">// Optional. Delete block if you don't require link tags related to your idenity. Duplicate as many objects as you need!</span>
<span class="token literal-property property">identity</span><span class="token operator">:</span> <span class="token punctuation">[</span>
	<span class="token punctuation">{</span>
		<span class="token literal-property property">rel</span><span class="token operator">:</span> <span class="token string">'me'</span><span class="token punctuation">,</span>
		<span class="token literal-property property">url</span><span class="token operator">:</span> <span class="token string">'URL-GOES-HERE'</span><span class="token punctuation">,</span>
	<span class="token punctuation">}</span><span class="token punctuation">,</span>
	<span class="token punctuation">{</span>
		<span class="token literal-property property">rel</span><span class="token operator">:</span> <span class="token string">'pgpkey'</span><span class="token punctuation">,</span>
		<span class="token literal-property property">url</span><span class="token operator">:</span> <span class="token string">'URL-GOES-HERE'</span><span class="token punctuation">,</span>
	<span class="token punctuation">}</span><span class="token punctuation">,</span>
<span class="token punctuation">]</span><span class="token punctuation">,</span>

<span class="token comment">// Optional. Delete block if you don't require Opengraph.</span>
<span class="token literal-property property">og</span><span class="token operator">:</span> <span class="token punctuation">{</span>
	<span class="token literal-property property">locale</span><span class="token operator">:</span> <span class="token string">'en_US'</span><span class="token punctuation">,</span>
	<span class="token literal-property property">type</span><span class="token operator">:</span> <span class="token string">'website'</span><span class="token punctuation">,</span>
	<span class="token literal-property property">image</span><span class="token operator">:</span> <span class="token punctuation">{</span>
		<span class="token literal-property property">rel</span><span class="token operator">:</span> <span class="token string">'/og-default.jpg'</span><span class="token punctuation">,</span>
		<span class="token literal-property property">alt</span><span class="token operator">:</span> <span class="token string">'Default OG image displayed here'</span><span class="token punctuation">,</span>
	<span class="token punctuation">}</span><span class="token punctuation">,</span>
<span class="token punctuation">}</span><span class="token punctuation">,</span></code></pre>
<p>You’ll also need to update development and production urls to your project requirements. These can be found in <code>src/data/env.js</code>:</p>
<pre class="language-js" tabindex="0" data-language="js"><code class="language-js"><span class="token keyword">const</span> devUrl <span class="token operator">=</span> <span class="token string">'http://localhost:8080'</span><span class="token punctuation">;</span>
<span class="token keyword">const</span> prodUrl <span class="token operator">=</span> <span class="token string">'https://example.com'</span><span class="token punctuation">;</span></code></pre>
<h2>Favicons and Opengraph</h2>
<h3>Favicons</h3>
<p>Favicons are stored under <code>src/static/favicons</code> and are automatically passed through to their relevant directories on build. All you need to do is create the images for your project.</p>
<h3>Opengraph</h3>
<p>A default Opengraph image can be found under <code>src/static</code> and is named <code>og-default.jpg</code>. Much like the favicons all you need to do is create a relevant default image to be used.</p>
<p>You can of course delete this file if you don’t require Opengraph in your project. Please also update <code>./11ty/passthroughs.js</code> and remove this line:</p>
<pre class="language-js" tabindex="0" data-language="js"><code class="language-js">eleventyConfig<span class="token punctuation">.</span><span class="token function">addPassthroughCopy</span><span class="token punctuation">(</span><span class="token punctuation">{</span> <span class="token string-property property">"src/static/og-default.jpg"</span><span class="token operator">:</span> <span class="token string">"/og-default.jpg"</span> <span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre>
<h2>Responsive images</h2>
<p>This template uses <a href="https://www.11ty.dev/docs/plugins/image/">Eleventy Image</a> to generate responsive images and handles this all in <code>/11ty/shortcodes/</code>. You will want to adapt widths, sizes and formats to suit your projects needs:</p>
<pre class="language-js" tabindex="0" data-language="js"><code class="language-js"><span class="token keyword">const</span> <span class="token function-variable function">image</span> <span class="token operator">=</span> <span class="token keyword">async</span> <span class="token keyword">function</span> <span class="token punctuation">(</span>src<span class="token punctuation">,</span> alt<span class="token punctuation">,</span> sizes <span class="token operator">=</span> <span class="token string">'90vw, (min-width: 1280px) 1152px'</span><span class="token punctuation">)</span> <span class="token punctuation">{</span>
	<span class="token keyword">let</span> metadata <span class="token operator">=</span> <span class="token keyword">await</span> <span class="token function">Image</span><span class="token punctuation">(</span>src<span class="token punctuation">,</span> <span class="token punctuation">{</span>
		<span class="token literal-property property">widths</span><span class="token operator">:</span> <span class="token punctuation">[</span><span class="token number">320</span><span class="token punctuation">,</span> <span class="token number">640</span><span class="token punctuation">,</span> <span class="token number">960</span><span class="token punctuation">,</span> <span class="token number">1280</span><span class="token punctuation">,</span> <span class="token number">1600</span><span class="token punctuation">,</span> <span class="token number">1920</span><span class="token punctuation">]</span><span class="token punctuation">,</span>
		<span class="token literal-property property">formats</span><span class="token operator">:</span> <span class="token punctuation">[</span><span class="token string">'avif'</span><span class="token punctuation">,</span> <span class="token string">'jpeg'</span><span class="token punctuation">]</span><span class="token punctuation">,</span>
	<span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

	<span class="token keyword">let</span> imageAttributes <span class="token operator">=</span> <span class="token punctuation">{</span>
		alt<span class="token punctuation">,</span>
		sizes<span class="token punctuation">,</span>
		<span class="token literal-property property">loading</span><span class="token operator">:</span> <span class="token string">'lazy'</span><span class="token punctuation">,</span>
		<span class="token literal-property property">decoding</span><span class="token operator">:</span> <span class="token string">'async'</span><span class="token punctuation">,</span>
	<span class="token punctuation">}</span><span class="token punctuation">;</span>

	<span class="token keyword">return</span> Image<span class="token punctuation">.</span><span class="token function">generateHTML</span><span class="token punctuation">(</span>metadata<span class="token punctuation">,</span> imageAttributes<span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span><span class="token punctuation">;</span></code></pre>
<p>You can of course use this markup to create a new shortcode for other use cases. Be sure to import this in <code>/11ty/shortcodes/index.js</code> though.</p>
<hr />
<p><strong>And now you’re ready to go!</strong></p>

			]]></content>
		</entry>
		<entry>
			<title>Markdown Demo</title>
			<link href="https://711ty.dev/posts/markdown-demo/"/>
			<updated>2023-09-05T00:00:00Z</updated>
			<id>https://711ty.dev/posts/markdown-demo/</id>
			<content type="html"><![CDATA[
				<p>This is the part of the post that will appear as the excerpt.</p>
<p>Fresher than you, I’m <strong>fresher</strong> than you. Foot up, my foot up. Man this here like rollin’ dice. Boy, I’m drinkin’, park it in my lot, <ins>7-11</ins>. Legs movin’ side to side. <strong>I know you care</strong>. Flexin’ while my hands up. Smack it, smack it in the air. Man this here like rollin’ dice. Ooh wee BB <s>freaky deaky</s>. <em>Nefertiti</em>, edges kinky. Wave your hands side to side. Clap, clap, clap, clap, clap it. <mark>Don’t you drop that alcohol.</mark> Rock that kufi<sup class="footnote-ref"><a href="https://711ty.dev/posts/markdown-demo/#fn1" id="fnref1">[1]</a></sup>, dye dashiki<sup class="footnote-ref"><a href="https://711ty.dev/posts/markdown-demo/#fn2" id="fnref2">[2]</a></sup>. Fresher than you™.</p>
<blockquote>
<p>Wave your hands side to side, put it in the air. Girl, I’m tryna kick it with ya. Clap, clap, clap, like you don’t care. (I know you care)</p>
</blockquote>
<p>I know I’m thinkin’ bout that alcohol. Spinnin’ while my hands up then I’m tippin’ all my hands up. Legs movin’ side to side. <code>Never drop that alcohol.</code> I’m spinnin’, I’m spinnin’, I’m spinnin’ while my hands up (drank). Here is an inline note.<sup class="footnote-ref"><a href="https://711ty.dev/posts/markdown-demo/#fn3" id="fnref3">[3]</a></sup> Rock that kufi, dye dashiki. Mad 'cause I’m so fresh. Smack it, smack it in the air, smack it, smack it in the air. I spin around, and I kick it with ya.</p>
<hr />
<h2>Lists</h2>
<p>Unordered</p>
<ul>
<li>Create a list by starting a line with <code>+</code>, <code>-</code>, or <code>*</code></li>
<li>Sub-lists are made by indenting 2 spaces:
<ul>
<li>Marker character change forces new list start:
<ul>
<li>I’m spinnin’</li>
<li>I’m spinnin’</li>
<li>I’m spinnin’ while my hands up</li>
</ul>
</li>
</ul>
</li>
<li>Very easy!</li>
</ul>
<p>Ordered</p>
<ol>
<li>Clap</li>
<li>Clap</li>
<li>Clap like you don’t care</li>
<li>You can use sequential numbers…</li>
<li>…or keep all the numbers as <code>1.</code></li>
</ol>
<p>Start numbering with offset:</p>
<ol start="57">
<li>seven</li>
<li>eleven</li>
</ol>
<h2>Tables</h2>
<table>
<thead>
<tr>
<th>Lyric</th>
<th>Notes</th>
</tr>
</thead>
<tbody>
<tr>
<td>Rock that kufi, dye dashiki</td>
<td>A dashiki is a colorful garment widely worn in West Africa that covers the top half of the body.</td>
</tr>
<tr>
<td>Nefertiti, edges kinky</td>
<td>Queen Nefertiti was one of the greatest rulers to preside over Egypt and one of the most beautiful women in history</td>
</tr>
<tr>
<td>This trick about to go off</td>
<td>A trick is a flirty, coquette-ish woman who gets around.</td>
</tr>
</tbody>
</table>
<h2>Code</h2>
<p>Syntax highlighting</p>
<pre class="language-js" tabindex="0" data-language="js"><code class="language-js"><span class="token comment">// Add above your Eleventy config</span>
<span class="token keyword">const</span> markdownIt <span class="token operator">=</span> <span class="token function">require</span><span class="token punctuation">(</span><span class="token string">"markdown-it"</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

<span class="token comment">// Add within your config module</span>
<span class="token keyword">const</span> md <span class="token operator">=</span> <span class="token keyword">new</span> <span class="token class-name">markdownIt</span><span class="token punctuation">(</span><span class="token punctuation">{</span>
  <span class="token literal-property property">html</span><span class="token operator">:</span> <span class="token boolean">true</span><span class="token punctuation">,</span>
<span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span>

eleventyConfig<span class="token punctuation">.</span><span class="token function">addFilter</span><span class="token punctuation">(</span><span class="token string">"markdown"</span><span class="token punctuation">,</span> <span class="token punctuation">(</span><span class="token parameter">content</span><span class="token punctuation">)</span> <span class="token operator">=></span> <span class="token punctuation">{</span>
  <span class="token keyword">return</span> md<span class="token punctuation">.</span><span class="token function">render</span><span class="token punctuation">(</span>content<span class="token punctuation">)</span><span class="token punctuation">;</span>
<span class="token punctuation">}</span><span class="token punctuation">)</span><span class="token punctuation">;</span></code></pre>
<hr class="footnotes-sep" />
<section class="footnotes">
<ol class="footnotes-list">
<li id="fn1" class="footnote-item"><p>Here is the footnote. <a href="https://711ty.dev/posts/markdown-demo/#fnref1" class="footnote-backref">↩︎</a></p>
</li>
<li id="fn2" class="footnote-item"><p>Here’s one with multiple blocks.<br />
Subsequent paragraphs are indented to show that they belong to the previous footnote. <a href="https://711ty.dev/posts/markdown-demo/#fnref2" class="footnote-backref">↩︎</a></p>
</li>
<li id="fn3" class="footnote-item"><p>Inlines notes are easier to write, since you don’t have to pick an identifier and move down to type the note. <a href="https://711ty.dev/posts/markdown-demo/#fnref3" class="footnote-backref">↩︎</a></p>
</li>
</ol>
</section>

			]]></content>
		</entry>
		<entry>
			<title>A Post with Images</title>
			<link href="https://711ty.dev/posts/a-post-with-images/"/>
			<updated>2023-09-04T00:00:00Z</updated>
			<id>https://711ty.dev/posts/a-post-with-images/</id>
			<content type="html"><![CDATA[
				<p>This is the part of the post that will appear as the excerpt.</p>
<p>The rest of this post will only appear on the post’s page.</p>
<p>Markdown images will automatically use the responsive picture shortcode.</p>
<p><picture style="background-color:rgb(23%,23%,23%);padding-bottom:66.667%"><source srcset="https://711ty.dev/assets/images/6bcf4dff.webp 320w, https://711ty.dev/assets/images/812184bb.webp 640w, https://711ty.dev/assets/images/85d8e87b.webp 960w, https://711ty.dev/assets/images/86de1fd3.webp 1280w, https://711ty.dev/assets/images/e63082bb.webp 1600w, https://711ty.dev/assets/images/385dc99b.webp 1920w" sizes="90vw, (min-width: 1280px) 1152px" type="image/webp" />      <source srcset="https://711ty.dev/assets/images/43e44acd.jpeg 320w, https://711ty.dev/assets/images/cb681f77.jpeg 640w, https://711ty.dev/assets/images/acee7116.jpeg 960w, https://711ty.dev/assets/images/e5362826.jpeg 1280w, https://711ty.dev/assets/images/38ab6ee4.jpeg 1600w, https://711ty.dev/assets/images/92e860b6.jpeg 1920w" sizes="90vw, (min-width: 1280px) 1152px" type="image/jpeg" /><img src="https://711ty.dev/assets/images/92e860b6.jpeg" alt="Time-lapse of a blue and white train moving fast through a station" width="5472" height="3648" loading="lazy" /></picture><small>Photo by <a href="https://unsplash.com/@brianna_santellan">Brianna Tucker</a> on <a href="https://unsplash.com/photos/gray-steel-frame-11EG59QyOEg">Unsplash</a></small></p>
<p>You can use the figure shortcode to add a caption to an image. The image content can be a picture shortcode or img tag.</p>
<figure><picture style="background-color:rgb(80%,75%,73%);padding-bottom:66.667%"><source srcset="https://711ty.dev/assets/images/53356ef3.webp 320w, https://711ty.dev/assets/images/9bc7cbb1.webp 640w, https://711ty.dev/assets/images/5eadcf49.webp 960w, https://711ty.dev/assets/images/77c42560.webp 1280w, https://711ty.dev/assets/images/e8cc5673.webp 1600w, https://711ty.dev/assets/images/1b417209.webp 1920w" sizes="90vw, (min-width: 1280px) 1152px" type="image/webp" />      <source srcset="https://711ty.dev/assets/images/ec39a176.jpeg 320w, https://711ty.dev/assets/images/da3d09c4.jpeg 640w, https://711ty.dev/assets/images/436b32b9.jpeg 960w, https://711ty.dev/assets/images/ec3dacfa.jpeg 1280w, https://711ty.dev/assets/images/efe83a8d.jpeg 1600w, https://711ty.dev/assets/images/a8357264.jpeg 1920w" sizes="90vw, (min-width: 1280px) 1152px" type="image/jpeg" /><img src="https://711ty.dev/assets/images/a8357264.jpeg" alt="The depths of space showing an immense variety of colour across millions of stars." width="5184" height="3456" loading="lazy" /></picture><figcaption><small>Photo by <a href="https://unsplash.com/@emilybauman__">Emily Bauman</a> on <a href="https://unsplash.com/photos/beyonce-magazine-near-tea-on-teacup-_oc6sbrCzD4">Unsplash</a></small></figcaption></figure>
<p>Or you can use the picture shortcode directly.</p>
<p><picture style="background-color:rgb(76%,73%,61%);padding-bottom:66.667%"><source srcset="https://711ty.dev/assets/images/bfd69b3f.webp 320w, https://711ty.dev/assets/images/c27c3a1a.webp 640w, https://711ty.dev/assets/images/99c5982b.webp 960w, https://711ty.dev/assets/images/f31567c5.webp 1280w, https://711ty.dev/assets/images/d98adf15.webp 1600w, https://711ty.dev/assets/images/3ed693f7.webp 1920w" sizes="90vw, (min-width: 1280px) 1152px" type="image/webp" />      <source srcset="https://711ty.dev/assets/images/e9d69b62.jpeg 320w, https://711ty.dev/assets/images/3b8981d0.jpeg 640w, https://711ty.dev/assets/images/409da866.jpeg 960w, https://711ty.dev/assets/images/070e24e5.jpeg 1280w, https://711ty.dev/assets/images/a3e7dda3.jpeg 1600w, https://711ty.dev/assets/images/581ef456.jpeg 1920w" sizes="90vw, (min-width: 1280px) 1152px" type="image/jpeg" /><img src="https://711ty.dev/assets/images/581ef456.jpeg" alt="The depths of space showing an immense variety of colour across millions of stars." width="6000" height="4000" loading="lazy" /></picture><small>Photo by <a href="https://unsplash.com/@ericjamesward">Eric Ward</a> on <a href="https://unsplash.com/photos/shallow-focus-photography-of-bees-flew-in-mid-air-qFAEHxevxVE">Unsplash</a></small></p>
<p>Think me see she pink bikini. Shoulders sideways, smack it, smack it in the air. Sweatin’ out my blow out, sweatin’ out my presses. Smack it, smack it in the air, legs movin’ side to side. This trick about to go off, mad 'cause I’m so fresh. Hold that cup like alcohol.</p>
<p>A final paragraph.</p>

			]]></content>
		</entry>
		<entry>
			<title>Embed Everything!</title>
			<link href="https://711ty.dev/posts/embed-everything/"/>
			<updated>2023-09-03T00:00:00Z</updated>
			<id>https://711ty.dev/posts/embed-everything/</id>
			<content type="html"><![CDATA[
				<p>This post demonstrates how to embed content using <a href="https://gfscott.com/embed-everything/">Embed Everything</a>.</p>
<p><a href="https://www.youtube.com/watch?v=OSAOsm1u-OE">https://www.youtube.com/watch?v=OSAOsm1u-OE</a></p>
<p>Fresher than you, I’m fresher than you. Foot up, my foot up. Man this here like rollin’ dice. Boy, I’m drinkin’, park it in my lot, 7-11. Legs movin’ side to side. I know you care. Flexin’ while my hands up. Smack it, smack it in the air. Man this here like rollin’ dice. Ooh wee BB freaky deaky. Nefertiti, edges kinky. Wave your hands side to side. Clap, clap, clap, clap, clap it. Don’t you drop that alcohol. Rock that kufi, dye dashiki. Fresher than you.</p>
<p><a href="https://open.spotify.com/track/02M6vucOvmRfMxTXDUwRXu">https://open.spotify.com/track/02M6vucOvmRfMxTXDUwRXu</a></p>
<p>I know I’m thinkin’ bout that alcohol. Spinnin’ while my hands up then I’m tippin’ all my hands up. Legs movin’ side to side. Never drop that alcohol. I’m spinnin’, I’m spinnin’, I’m spinnin’ while my hands up (drank). Rock that kufi, dye dashiki. Mad 'cause I’m so fresh. Smack it, smack it in the air, smack it, smack it in the air. I spin around, and I kick it with ya.</p>
<p><a href="https://vimeo.com/162657471">https://vimeo.com/162657471</a></p>
<p>Wave your hands side to side, put it in the air. Girl, I’m tryna kick it with ya. Clap, clap, clap, like you don’t care. (I know you care). Think me see she pink bikini. Shoulders sideways, smack it, smack it in the air. Sweatin’ out my blow out, sweatin’ out my presses. Smack it, smack it in the air, legs movin’ side to side. This trick about to go off, mad 'cause I’m so fresh. Hold that cup like alcohol.</p>

			]]></content>
		</entry></feed>