<?xml version="1.0" encoding="utf-8"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
  <title>Your Blog Name</title>
  <subtitle>A blog about [topic]</subtitle>
  <link href="https://example.com/feed.xml" rel="self" />
  <link href="https://example.com/" />
  <updated>2026-05-01T00:00:00Z</updated>
  <id>https://example.com/</id>
  <author>
    <name>Your Name</name>
  </author>
  <entry>
    <title>Notes on Static Sites</title>
    <link href="https://example.com/content/posts/third-post/" />
    <updated>2026-03-10T00:00:00Z</updated>
    <id>https://example.com/content/posts/third-post/</id>
    <content type="html">&lt;p&gt;Static sites predate the dynamic web. They are fast by default, cheap to host, and immune to a class of backend vulnerabilities that dynamic sites must manage carefully.&lt;/p&gt;
&lt;h2&gt;The tradeoffs&lt;/h2&gt;
&lt;p&gt;You give up real-time features: no user authentication, no server-side personalization. What you gain is simplicity and durability.&lt;/p&gt;
&lt;h2&gt;When static is the right call&lt;/h2&gt;
&lt;p&gt;For a personal blog, almost always.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>On Writing Clearly</title>
    <link href="https://example.com/content/posts/second-post/" />
    <updated>2026-04-15T00:00:00Z</updated>
    <id>https://example.com/content/posts/second-post/</id>
    <content type="html">&lt;p&gt;Clear writing begins with clear thinking. Before you type a single word, you need to know exactly what you want to say.&lt;/p&gt;
&lt;h2&gt;Structure matters&lt;/h2&gt;
&lt;p&gt;A post without structure is a wall of text. Readers skim before they read — give them anchors.&lt;/p&gt;
&lt;h2&gt;Be specific&lt;/h2&gt;
&lt;p&gt;Vague language lets the reader fill in blanks however they like. Specific language leaves no room for misinterpretation.&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Hello World</title>
    <link href="https://example.com/content/posts/hello-world/" />
    <updated>2026-05-01T00:00:00Z</updated>
    <id>https://example.com/content/posts/hello-world/</id>
    <content type="html">&lt;p&gt;Welcome to the blog. This is the first post.&lt;/p&gt;
&lt;h2&gt;A heading&lt;/h2&gt;
&lt;p&gt;Some body text with a &lt;a href=&quot;https://example.com&quot;&gt;link&lt;/a&gt; and &lt;strong&gt;bold&lt;/strong&gt; and &lt;em&gt;italic&lt;/em&gt; text.&lt;/p&gt;
&lt;pre class=&quot;language-js&quot;&gt;&lt;code class=&quot;language-js&quot;&gt;&lt;span class=&quot;token keyword&quot;&gt;const&lt;/span&gt; &lt;span class=&quot;token function-variable function&quot;&gt;greet&lt;/span&gt; &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 parameter&quot;&gt;name&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 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 interpolation&quot;&gt;&lt;span class=&quot;token interpolation-punctuation punctuation&quot;&gt;${&lt;/span&gt;name&lt;span class=&quot;token interpolation-punctuation punctuation&quot;&gt;}&lt;/span&gt;&lt;/span&gt;&lt;span class=&quot;token string&quot;&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;
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 function&quot;&gt;greet&lt;/span&gt;&lt;span class=&quot;token punctuation&quot;&gt;(&lt;/span&gt;&lt;span class=&quot;token string&quot;&gt;&quot;world&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;/code&gt;&lt;/pre&gt;
&lt;p&gt;More text below the code block.&lt;/p&gt;
</content>
  </entry>
</feed>