<?xml version="1.0" encoding="utf-8"?><feed xmlns="http://www.w3.org/2005/Atom" ><generator uri="https://jekyllrb.com/" version="4.4.1">Jekyll</generator><link href="https://status.darbooks.com/feed.xml" rel="self" type="application/atom+xml" /><link href="https://status.darbooks.com/" rel="alternate" type="text/html" /><updated>2026-03-24T13:40:33-05:00</updated><id>https://status.darbooks.com/feed.xml</id><title type="html">Name this Page</title><subtitle>Quick updates about DAR Books.</subtitle><author><name>DA Rasmussen</name></author><entry><title type="html">Batch Date Addition</title><link href="https://status.darbooks.com/Batch-Date-Addition.html" rel="alternate" type="text/html" title="Batch Date Addition" /><published>2026-03-23T15:01:11-05:00</published><updated>2026-03-23T15:01:11-05:00</updated><id>https://status.darbooks.com/Batch-Date-Addition</id><content type="html" xml:base="https://status.darbooks.com/Batch-Date-Addition.html"><![CDATA[<h1 id="drafts-and-bulk-publishing">Drafts and Bulk Publishing</h1>

<h2 id="using-the-_drafts-folder">Using the <code class="language-plaintext highlighter-rouge">_drafts</code> Folder</h2>

<p>Add a <code class="language-plaintext highlighter-rouge">_drafts</code> folder to your site root to store posts you are not ready to publish. Posts in this folder do not require a date in the filename and will not appear on your live site.</p>

<h2 id="filename-requirements">Filename Requirements</h2>

<p>All posts in the <code class="language-plaintext highlighter-rouge">_posts</code> folder must follow this format:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>YYYY-MM-DD-post-title.md
</code></pre></div></div>

<p>Files without a date prefix will be ignored by Jekyll and will not publish.</p>

<h2 id="publishing-drafts">Publishing Drafts</h2>

<p>When you are ready to publish drafts:</p>

<ol>
  <li>Save all unfinished posts in <code class="language-plaintext highlighter-rouge">_drafts/</code> (no date needed)</li>
  <li>Run <code class="language-plaintext highlighter-rouge">add-dates.bat</code></li>
  <li>The script will add today’s date to each filename and move them to <code class="language-plaintext highlighter-rouge">_posts/</code></li>
  <li>Build and upload your site</li>
</ol>

<h2 id="quick-reference">Quick Reference</h2>

<table>
  <thead>
    <tr>
      <th>Folder</th>
      <th>Filename Format</th>
      <th>Publishes?</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><code class="language-plaintext highlighter-rouge">_drafts/</code></td>
      <td><code class="language-plaintext highlighter-rouge">post-title.md</code></td>
      <td>No</td>
    </tr>
    <tr>
      <td><code class="language-plaintext highlighter-rouge">_posts/</code></td>
      <td><code class="language-plaintext highlighter-rouge">YYYY-MM-DD-post-title.md</code></td>
      <td>Yes</td>
    </tr>
  </tbody>
</table>]]></content><author><name>DA Rasmussen</name></author><summary type="html"><![CDATA[Drafts and Bulk Publishing]]></summary></entry><entry><title type="html">Test Draft 2</title><link href="https://status.darbooks.com/test-draft-2.html" rel="alternate" type="text/html" title="Test Draft 2" /><published>2026-03-23T00:00:00-05:00</published><updated>2026-03-23T00:00:00-05:00</updated><id>https://status.darbooks.com/test-draft-2</id><content type="html" xml:base="https://status.darbooks.com/test-draft-2.html"><![CDATA[]]></content><author><name>DA Rasmussen</name></author><summary type="html"><![CDATA[]]></summary></entry><entry><title type="html">Test Draft</title><link href="https://status.darbooks.com/test-draft.html" rel="alternate" type="text/html" title="Test Draft" /><published>2026-03-23T00:00:00-05:00</published><updated>2026-03-23T00:00:00-05:00</updated><id>https://status.darbooks.com/test-draft</id><content type="html" xml:base="https://status.darbooks.com/test-draft.html"><![CDATA[]]></content><author><name>DA Rasmussen</name></author><summary type="html"><![CDATA[]]></summary></entry><entry><title type="html">Markdown Showcase</title><link href="https://status.darbooks.com/Markdown-Showcase.html" rel="alternate" type="text/html" title="Markdown Showcase" /><published>2026-03-20T14:45:16-05:00</published><updated>2026-03-20T14:45:16-05:00</updated><id>https://status.darbooks.com/Markdown-Showcase</id><content type="html" xml:base="https://status.darbooks.com/Markdown-Showcase.html"><![CDATA[<h1 id="theme-showcase">Theme Showcase</h1>

<p>A paragraph with <strong>bold text</strong>, <em>italic emphasis</em>, <del>strikethrough</del>, <code class="language-plaintext highlighter-rouge">inline code</code>, and <a href="https://example.com">a link</a>. This demonstrates body text rendering, line height, and font pairing.</p>

<h2 id="lists--structure">Lists &amp; Structure</h2>

<ul>
  <li>Unordered list item
    <ul>
      <li>Nested item with more text to show indentation</li>
      <li>Another nested item</li>
    </ul>
  </li>
  <li>Second top-level item</li>
</ul>

<ol>
  <li>Ordered list first item</li>
  <li>Second item with <strong>bold</strong> and <em>italic</em> mixed in</li>
  <li>Third item showing how numbers align</li>
</ol>

<h2 id="block-elements">Block Elements</h2>

<blockquote>
  <p>A blockquote to demonstrate styling for quoted content. This shows how the theme handles left borders, background tints, and text contrast.</p>
</blockquote>

<hr />

<h3 id="code--syntax-highlighting">Code &amp; Syntax Highlighting</h3>

<div class="language-js highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="c1">// JavaScript example</span>
<span class="kd">function</span> <span class="nf">greet</span><span class="p">(</span><span class="nx">name</span><span class="p">)</span> <span class="p">{</span>
  <span class="k">return</span> <span class="s2">`Hello, </span><span class="p">${</span><span class="nx">name</span><span class="p">}</span><span class="s2">!`</span><span class="p">;</span>
<span class="p">}</span>

<span class="kd">const</span> <span class="nx">users</span> <span class="o">=</span> <span class="p">[</span><span class="dl">"</span><span class="s2">Alice</span><span class="dl">"</span><span class="p">,</span> <span class="dl">"</span><span class="s2">Bob</span><span class="dl">"</span><span class="p">,</span> <span class="dl">"</span><span class="s2">Charlie</span><span class="dl">"</span><span class="p">];</span>
<span class="nx">users</span><span class="p">.</span><span class="nf">forEach</span><span class="p">(</span><span class="nx">user</span> <span class="o">=&gt;</span> <span class="p">{</span>
  <span class="nx">console</span><span class="p">.</span><span class="nf">log</span><span class="p">(</span><span class="nf">greet</span><span class="p">(</span><span class="nx">user</span><span class="p">));</span>
<span class="p">});</span>
</code></pre></div></div>

<table>
  <thead>
    <tr>
      <th>Syntax</th>
      <th>Description</th>
      <th>Example</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td>Header</td>
      <td>Column title</td>
      <td><code class="language-plaintext highlighter-rouge"># Header</code></td>
    </tr>
    <tr>
      <td>Paragraph</td>
      <td>Body text</td>
      <td>Plain text</td>
    </tr>
    <tr>
      <td><code class="language-plaintext highlighter-rouge">inline</code></td>
      <td>Code within text</td>
      <td><code class="language-plaintext highlighter-rouge">`code`</code></td>
    </tr>
  </tbody>
</table>

<h2 id="callouts-admonitions">Callouts (Admonitions)</h2>

<blockquote class="callout-note">
  <p>Note callout
Important information worth highlighting. Shows how the theme styles containers with icons and background colors.</p>
</blockquote>

<blockquote class="callout-tip">
  <p>Tip callout
Helpful advice or shortcut. Demonstrates accent colors and visual hierarchy.</p>
</blockquote>

<blockquote class="callout-warning">
  <p>Warning callout
Something requiring caution. Tests contrast and attention-grabbing styling.</p>
</blockquote>

<h2 id="tasks--interactive-elements">Tasks &amp; Interactive Elements</h2>

<ul class="task-list">
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" checked="checked" />Completed task item</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Incomplete task</li>
  <li class="task-list-item"><input type="checkbox" class="task-list-item-checkbox" disabled="disabled" />Another pending item with <strong>bold emphasis</strong></li>
</ul>

<h2 id="typography-details">Typography Details</h2>

<h3 id="heading-levels-h3h6">Heading levels (h3–h6)</h3>
<h4 id="level-4-heading">Level 4 heading</h4>
<h5 id="level-5-heading">Level 5 heading</h5>
<h6 id="level-6-heading">Level 6 heading</h6>]]></content><author><name>DA Rasmussen</name></author><summary type="html"><![CDATA[Theme Showcase]]></summary></entry><entry><title type="html">Morning coffee</title><link href="https://status.darbooks.com/mood-check.html" rel="alternate" type="text/html" title="Morning coffee" /><published>2024-01-15T07:30:00-06:00</published><updated>2024-01-15T07:30:00-06:00</updated><id>https://status.darbooks.com/mood-check</id><content type="html" xml:base="https://status.darbooks.com/mood-check.html"><![CDATA[<p>Starting the day slow. ☕️</p>]]></content><author><name>DA Rasmussen</name></author><summary type="html"><![CDATA[Starting the day slow. ☕️]]></summary></entry><entry><title type="html">How to Use Callouts</title><link href="https://status.darbooks.com/HOW-TO-USE-CALLOUTS.html" rel="alternate" type="text/html" title="How to Use Callouts" /><published>2024-01-01T11:00:00-06:00</published><updated>2024-01-01T11:00:00-06:00</updated><id>https://status.darbooks.com/HOW-TO-USE-CALLOUTS</id><content type="html" xml:base="https://status.darbooks.com/HOW-TO-USE-CALLOUTS.html"><![CDATA[<h1 id="using-callouts-in-posts">Using Callouts in Posts</h1>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>---
layout: post
title: "Markdown Callouts"
date: 2026-03-21 01:14:47 -0500
mood: 
pin: true
---

{:.callout-note}
&gt; **Note**
&gt; This is a note callout.

{:.callout-tip}
&gt; **Tip**
&gt; This is a tip callout.

{:.callout-warning}
&gt; **Warning**
&gt; This is a warning callout.

{:.callout-danger}
&gt; **Danger**
&gt; This is a danger callout.

</code></pre></div></div>
<hr />]]></content><author><name>DA Rasmussen</name></author><summary type="html"><![CDATA[Using Callouts in Posts]]></summary></entry><entry><title type="html">Social Media Share Images</title><link href="https://status.darbooks.com/SOCIAL-MEDIA-SHARE-IMAGES.html" rel="alternate" type="text/html" title="Social Media Share Images" /><published>2024-01-01T11:00:00-06:00</published><updated>2024-01-01T11:00:00-06:00</updated><id>https://status.darbooks.com/SOCIAL-MEDIA-SHARE-IMAGES</id><content type="html" xml:base="https://status.darbooks.com/SOCIAL-MEDIA-SHARE-IMAGES.html"><![CDATA[<h1 id="-social-media-share-images">📱 Social Media Share Images</h1>

<p>When you share a post on Facebook, Pinterest, Twitter, or LinkedIn, those platforms will now display a <strong>preview image</strong> instead of your avatar.</p>

<h2 id="how-it-works">How It Works</h2>

<p>The theme uses <strong>Open Graph meta tags</strong> to tell social media platforms which image to display when a link is shared.</p>

<h2 id="setup-steps">Setup Steps</h2>

<h3 id="1-create-a-default-share-image">1. Create a Default Share Image</h3>

<p>Create a default image that will be used for all posts:</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>assets/
└── images/
    └── share-default.jpg    ← Create this file
</code></pre></div></div>

<p><strong>Recommended Size:</strong> 1200 x 630 pixels</p>

<p><strong>Tips:</strong></p>
<ul>
  <li>Use a branded image with your site name or logo</li>
  <li>Keep text minimal and readable at small sizes</li>
  <li>Use high contrast for better visibility</li>
</ul>

<h3 id="2-optional-custom-image-per-post">2. Optional: Custom Image Per Post</h3>

<p>You can specify a different share image for individual posts by adding an <code class="language-plaintext highlighter-rouge">image</code> field in the front matter:</p>

<div class="language-markdown highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nn">---</span>
<span class="na">layout</span><span class="pi">:</span> <span class="s">post</span>
<span class="na">title</span><span class="pi">:</span> <span class="s2">"</span><span class="s">My</span><span class="nv"> </span><span class="s">Status</span><span class="nv"> </span><span class="s">Update"</span>
<span class="na">date</span><span class="pi">:</span> <span class="s">2024-01-15 14:30:00 -0500</span>
<span class="na">image</span><span class="pi">:</span> <span class="s">/assets/images/custom-share.jpg</span>
<span class="nn">---</span>
Your post content here...
</code></pre></div></div>

<hr />]]></content><author><name>DA Rasmussen</name></author><summary type="html"><![CDATA[📱 Social Media Share Images]]></summary></entry><entry><title type="html">Right Sidebar Pinned Posts</title><link href="https://status.darbooks.com/PINNED-POSTS-RIGHT-SIDEBAR.html" rel="alternate" type="text/html" title="Right Sidebar Pinned Posts" /><published>2024-01-01T11:00:00-06:00</published><updated>2024-01-01T11:00:00-06:00</updated><id>https://status.darbooks.com/PINNED-POSTS-RIGHT-SIDEBAR</id><content type="html" xml:base="https://status.darbooks.com/PINNED-POSTS-RIGHT-SIDEBAR.html"><![CDATA[<h1 id="-pinned-posts-right-sidebar">📌 Pinned Posts (Right Sidebar)</h1>

<p>Highlight important announcements, welcome messages, or key content in the right sidebar on desktop screens.</p>

<h2 id="how-to-pin-a-post">How to Pin a Post</h2>

<ol>
  <li>
    <p><strong>Create or Edit a Post</strong></p>

    <p>Open any post in <code class="language-plaintext highlighter-rouge">_posts/</code> and add <code class="language-plaintext highlighter-rouge">pin: true</code> to the front matter:</p>
    <div class="language-markdown highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nn">---</span>
<span class="na">layout</span><span class="pi">:</span> <span class="s">post</span>
<span class="na">title</span><span class="pi">:</span> <span class="s2">"</span><span class="s">Welcome</span><span class="nv"> </span><span class="s">to</span><span class="nv"> </span><span class="s">My</span><span class="nv"> </span><span class="s">Status</span><span class="nv"> </span><span class="s">Wall"</span>
<span class="na">date</span><span class="pi">:</span> <span class="s">2024-01-15 12:00:00 -0500</span>
<span class="na">pin</span><span class="pi">:</span> <span class="kc">true</span>
<span class="nn">---</span>
This post will appear in the right sidebar!
</code></pre></div>    </div>
  </li>
  <li>
    <p><strong>Using the Batch File (Windows)</strong></p>

    <p>When you run <code class="language-plaintext highlighter-rouge">new-post.bat</code>, answer <code class="language-plaintext highlighter-rouge">y</code> when asked:</p>
    <div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>Pin this post to sidebar? (y/n): y
</code></pre></div>    </div>
  </li>
  <li>
    <p><strong>Rebuild &amp; Upload</strong></p>

    <p><strong>Option 1: The Long Way</strong></p>
    <div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>bundle <span class="nb">exec </span>jekyll build
</code></pre></div>    </div>
    <p>Upload the updated <code class="language-plaintext highlighter-rouge">_site/</code> contents to your host.</p>

    <p><strong>Option 2: The Quick Way</strong> (if hosting your own site)
Click the <a href="https://github.com/breakthebull/status/blob/main/build.bat">build.bat</a>
Click the <a href="https://github.com/breakthebull/status/blob/main/upload.bat">upload.bat</a></p>

    <p><strong>Option 3: The Fastest Way</strong> (if hosting your own site)
Click the <a href="https://github.com/breakthebull/status/blob/main/deploy.bat">deploy.bat</a></p>
  </li>
</ol>

<h2 id="how-many-posts-show">How Many Posts Show?</h2>

<ul>
  <li><strong>Default:</strong> Up to 5 pinned posts display in the sidebar</li>
  <li><strong>Order:</strong> Newest pinned posts appear first</li>
  <li><strong>Too Many?</strong> Only the 5 most recent pinned posts show automatically</li>
</ul>

<h2 id="how-to-unpin-a-post">How to Unpin a Post</h2>

<p>Simply remove or change the <code class="language-plaintext highlighter-rouge">pin:</code> field in the post’s front matter:</p>

<div class="language-markdown highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nn">---</span>
<span class="na">layout</span><span class="pi">:</span> <span class="s">post</span>
<span class="na">title</span><span class="pi">:</span> <span class="s2">"</span><span class="s">No</span><span class="nv"> </span><span class="s">Longer</span><span class="nv"> </span><span class="s">Pinned"</span>
<span class="na">date</span><span class="pi">:</span> <span class="s">2024-01-15 12:00:00 -0500</span>
<span class="na">pin</span><span class="pi">:</span> <span class="kc">false</span>    <span class="c1"># ← Change to false or remove this line entirely</span>
<span class="nn">---</span>
</code></pre></div></div>

<h3 id="best-uses-for-pinned-posts">Best Uses for Pinned Posts</h3>

<table>
  <thead>
    <tr>
      <th>Use Case</th>
      <th>Example</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><strong>Welcome Message</strong></td>
      <td>Introduce yourself to new visitors</td>
    </tr>
    <tr>
      <td><strong>Important Announcement</strong></td>
      <td>Site updates, news, or changes</td>
    </tr>
    <tr>
      <td><strong>Popular Content</strong></td>
      <td>Link to your most popular post</td>
    </tr>
    <tr>
      <td><strong>Contact Info</strong></td>
      <td>How people can reach you</td>
    </tr>
    <tr>
      <td><strong>Current Project</strong></td>
      <td>What you’re working on right now</td>
    </tr>
  </tbody>
</table>

<hr />]]></content><author><name>DA Rasmussen</name></author><summary type="html"><![CDATA[📌 Pinned Posts (Right Sidebar)]]></summary></entry><entry><title type="html">Adding Themes</title><link href="https://status.darbooks.com/THEME-CREATION.html" rel="alternate" type="text/html" title="Adding Themes" /><published>2024-01-01T11:00:00-06:00</published><updated>2024-01-01T11:00:00-06:00</updated><id>https://status.darbooks.com/THEME-CREATION</id><content type="html" xml:base="https://status.darbooks.com/THEME-CREATION.html"><![CDATA[<h1 id="quick-theme-tips">Quick Theme Tips</h1>

<h2 id="create-a-custom-theme">Create a Custom Theme</h2>
<ol>
  <li>Create <code class="language-plaintext highlighter-rouge">assets/themes/your-theme.css</code></li>
  <li>Add your colors:
    <div class="language-css highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="nd">:root</span> <span class="p">{</span>
  <span class="py">--bg-color</span><span class="p">:</span> <span class="err">#</span><span class="n">yourbg</span><span class="p">;</span>
  <span class="py">--card-bg</span><span class="p">:</span> <span class="err">#</span><span class="n">yourcard</span><span class="p">;</span>
  <span class="py">--text-color</span><span class="p">:</span> <span class="err">#</span><span class="n">yourtext</span><span class="p">;</span>
  <span class="py">--accent-color</span><span class="p">:</span> <span class="err">#</span><span class="n">youraccent</span><span class="p">;</span>
<span class="p">}</span>
<span class="nt">body</span> <span class="p">{</span> <span class="nl">background</span><span class="p">:</span> <span class="nf">var</span><span class="p">(</span><span class="l">--bg-color</span><span class="p">);</span> <span class="nl">color</span><span class="p">:</span> <span class="nf">var</span><span class="p">(</span><span class="l">--text-color</span><span class="p">);</span> <span class="p">}</span>
</code></pre></div>    </div>
    <hr />
  </li>
</ol>

<h2 id="after-editingadding-your-theme-activate-using">After Editing/Adding Your Theme Activate Using:</h2>

<p>_includes &gt; css-links.html &gt;</p>

<div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>&lt;link rel="stylesheet" href="/assets/themes/dark.css"&gt;
</code></pre></div></div>

<p>Edit the /assets/themes/new-theme.css line to your new theme.</p>

<hr />]]></content><author><name>DA Rasmussen</name></author><summary type="html"><![CDATA[Quick Theme Tips]]></summary></entry><entry><title type="html">Left Sidebar Featured Images</title><link href="https://status.darbooks.com/FEATURED-IMAGES-LEFT-SIDEBAR.html" rel="alternate" type="text/html" title="Left Sidebar Featured Images" /><published>2024-01-01T11:00:00-06:00</published><updated>2024-01-01T11:00:00-06:00</updated><id>https://status.darbooks.com/FEATURED-IMAGES-LEFT-SIDEBAR</id><content type="html" xml:base="https://status.darbooks.com/FEATURED-IMAGES-LEFT-SIDEBAR.html"><![CDATA[<h1 id="featured-images-left-sidebar">Featured Images (Left Sidebar)</h1>

<p>Display clickable promotional images, book covers, or favorite photos in the left sidebar on desktop screens.</p>

<h2 id="how-to-add-featured-images">How to Add Featured Images</h2>

<ol>
  <li>
    <p><strong>Add Your Image</strong></p>

    <p>Place your image in the <code class="language-plaintext highlighter-rouge">assets/images/featured/</code> folder:</p>
    <div class="language-plaintext highlighter-rouge"><div class="highlight"><pre class="highlight"><code>assets/
└── images/
    └── featured/
        ├── book-cover.jpg
        ├── promo-banner.png
        └── portfolio-photo.jpg
</code></pre></div>    </div>
  </li>
  <li>
    <p><strong>Edit the Configuration File</strong></p>

    <p>Open <code class="language-plaintext highlighter-rouge">_data/featured-images.yml</code> and add an entry:</p>
    <div class="language-yaml highlighter-rouge"><div class="highlight"><pre class="highlight"><code><span class="pi">-</span> <span class="na">image</span><span class="pi">:</span> <span class="s">/assets/images/featured/book-cover.jpg</span>
  <span class="na">link</span><span class="pi">:</span> <span class="s">https://amazon.com/yourbook</span>
  <span class="na">alt</span><span class="pi">:</span> <span class="s2">"</span><span class="s">My</span><span class="nv"> </span><span class="s">New</span><span class="nv"> </span><span class="s">Book</span><span class="nv"> </span><span class="s">-</span><span class="nv"> </span><span class="s">Available</span><span class="nv"> </span><span class="s">Now!"</span>
   
<span class="pi">-</span> <span class="na">image</span><span class="pi">:</span> <span class="s">/assets/images/featured/promo-banner.png</span>
  <span class="na">link</span><span class="pi">:</span> <span class="s">https://yourwebsite.com/promo</span>
  <span class="na">alt</span><span class="pi">:</span> <span class="s2">"</span><span class="s">Special</span><span class="nv"> </span><span class="s">Promotion"</span>
</code></pre></div>    </div>
  </li>
  <li>
    <p><strong>Rebuild &amp; Upload</strong></p>
    <div class="language-bash highlighter-rouge"><div class="highlight"><pre class="highlight"><code>bundle <span class="nb">exec </span>jekyll build
</code></pre></div>    </div>
    <p>Upload the updated <code class="language-plaintext highlighter-rouge">_site/</code> contents to your host.</p>
  </li>
</ol>

<h2 id="configuration-options">Configuration Options</h2>

<table>
  <thead>
    <tr>
      <th>Field</th>
      <th>Description</th>
      <th>Example</th>
    </tr>
  </thead>
  <tbody>
    <tr>
      <td><code class="language-plaintext highlighter-rouge">image</code></td>
      <td>Path to your image file</td>
      <td><code class="language-plaintext highlighter-rouge">/assets/images/featured/photo.jpg</code></td>
    </tr>
    <tr>
      <td><code class="language-plaintext highlighter-rouge">link</code></td>
      <td>URL when image is clicked</td>
      <td><code class="language-plaintext highlighter-rouge">https://yourwebsite.com</code></td>
    </tr>
    <tr>
      <td><code class="language-plaintext highlighter-rouge">alt</code></td>
      <td>Caption text displayed below image</td>
      <td>“Check out my latest work!”</td>
    </tr>
  </tbody>
</table>

<hr />]]></content><author><name>DA Rasmussen</name></author><summary type="html"><![CDATA[Featured Images (Left Sidebar)]]></summary></entry></feed>