<?xml version="1.0" encoding="utf-8"?>
<?xml-stylesheet href="/feed/pretty-atom-feed.xsl" type="text/xsl"?>
<feed xmlns="http://www.w3.org/2005/Atom">
  <title>Hugo ʕ•ᴥ•ʔ Bear Blog</title>
  <subtitle>Hugo + Bear = :heart:</subtitle>
  <link href="https://example.com/" />
  <link href="https://example.com/feed/feed.xml" rel="self" />
  <id>https://example.com/</id>
  <updated>2026-02-19T00:00:00.000Z</updated>
  <author>
    <name>Jane Doe</name>
  </author>
  <entry>
    <title>Welcome to Bear Blog</title>
    <link href="https://example.com/blog/welcome/" />
    <id>https://example.com/blog/welcome/</id>
    <updated>2026-02-19T00:00:00.000Z</updated>
    <published>2026-02-19T00:00:00.000Z</published>
    <summary>Getting started with your new ultra-minimal blog theme</summary>
    <content type="html">&lt;p&gt;Welcome to your new &lt;strong&gt;Bear Blog&lt;/strong&gt; powered by Eleventy! This theme brings the minimalist philosophy of Bear Blog to the Eleventy static site generator.&lt;/p&gt;
&lt;h2 id=&quot;what-is-bear-blog&quot;&gt;What is Bear Blog?&lt;/h2&gt;
&lt;p&gt;Bear Blog is a blogging platform focused on:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Speed&lt;/strong&gt;: Pages load in milliseconds&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Privacy&lt;/strong&gt;: No tracking, no analytics, no cookies&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Simplicity&lt;/strong&gt;: Clean, distraction-free reading experience&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Accessibility&lt;/strong&gt;: Semantic HTML, proper heading structure&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;features&quot;&gt;Features&lt;/h2&gt;
&lt;p&gt;This Eleventy theme includes:&lt;/p&gt;
&lt;h3 id=&quot;ultra-minimal-css&quot;&gt;Ultra-Minimal CSS&lt;/h3&gt;
&lt;p&gt;Only &lt;strong&gt;~2.3KB&lt;/strong&gt; of CSS for the entire site. The CSS uses:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;CSS variables for easy theming&lt;/li&gt;
&lt;li&gt;Automatic dark mode detection&lt;/li&gt;
&lt;li&gt;Responsive design with mobile-first approach&lt;/li&gt;
&lt;li&gt;Clean typography with system fonts&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;zero-javascript&quot;&gt;Zero JavaScript&lt;/h3&gt;
&lt;p&gt;No JavaScript required for core functionality. The site is 100% static HTML and CSS.&lt;/p&gt;
&lt;h3 id=&quot;critical-css-inlining&quot;&gt;Critical CSS Inlining&lt;/h3&gt;
&lt;p&gt;For optimal performance, critical CSS is inlined in the &lt;code&gt;&amp;lt;head&amp;gt;&lt;/code&gt; while the full CSS file is loaded asynchronously. This ensures the fastest possible first paint.&lt;/p&gt;
&lt;h3 id=&quot;dark-mode-support&quot;&gt;Dark Mode Support&lt;/h3&gt;
&lt;p&gt;Automatic dark mode based on system preferences using &lt;code&gt;prefers-color-scheme&lt;/code&gt; media query:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-css&quot;&gt;@media (prefers-color-scheme: dark) {
  :root {
    --background-color: #01242e;
    --text-color: #ddd;
    /* ... */
  }
}
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id=&quot;rss-feed&quot;&gt;RSS Feed&lt;/h3&gt;
&lt;p&gt;Automatic RSS feed generation at &lt;code&gt;/feed.xml&lt;/code&gt; for readers who prefer feed readers.&lt;/p&gt;
&lt;h3 id=&quot;seo-optimized&quot;&gt;SEO Optimized&lt;/h3&gt;
&lt;ul&gt;
&lt;li&gt;Proper meta tags&lt;/li&gt;
&lt;li&gt;OpenGraph support&lt;/li&gt;
&lt;li&gt;Twitter Card support&lt;/li&gt;
&lt;li&gt;Semantic HTML structure&lt;/li&gt;
&lt;li&gt;Sitemap generation&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;getting-started&quot;&gt;Getting Started&lt;/h2&gt;
&lt;h3 id=&quot;creating-posts&quot;&gt;Creating Posts&lt;/h3&gt;
&lt;p&gt;Create new markdown files in the blog content folder:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-yaml&quot;&gt;---
layout: post.njk
title: Your Post Title
description: Optional description for SEO
date: 2026-02-19
tags:
  - posts
  - your-tag
---

Your content here...
&lt;/code&gt;&lt;/pre&gt;
&lt;h3 id=&quot;customizing&quot;&gt;Customizing&lt;/h3&gt;
&lt;p&gt;Edit &lt;code&gt;src/_data/site.js&lt;/code&gt; to:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Change site title and description&lt;/li&gt;
&lt;li&gt;Enable/disable post navigation&lt;/li&gt;
&lt;li&gt;Hide/show &amp;quot;Made with&amp;quot; footer line&lt;/li&gt;
&lt;li&gt;Update author information&lt;/li&gt;
&lt;/ul&gt;
&lt;h3 id=&quot;navigation&quot;&gt;Navigation&lt;/h3&gt;
&lt;p&gt;Add pages to navigation in &lt;code&gt;src/_data/navigation.js&lt;/code&gt;:&lt;/p&gt;
&lt;pre&gt;&lt;code class=&quot;language-javascript&quot;&gt;export default [
  {
    text: &amp;quot;Home&amp;quot;,
    url: &amp;quot;/&amp;quot;,
    weight: 1
  }
];
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&quot;performance&quot;&gt;Performance&lt;/h2&gt;
&lt;p&gt;This theme is optimized for speed:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Critical CSS inlined for fast first paint&lt;/li&gt;
&lt;li&gt;Full CSS preloaded and loaded asynchronously&lt;/li&gt;
&lt;li&gt;Minimal HTML markup&lt;/li&gt;
&lt;li&gt;No external dependencies&lt;/li&gt;
&lt;li&gt;Average page size: &lt;strong&gt;~5KB&lt;/strong&gt;&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;philosophy&quot;&gt;Philosophy&lt;/h2&gt;
&lt;p&gt;Bear Blog (and this theme) embrace constraints:&lt;/p&gt;
&lt;blockquote&gt;
&lt;p&gt;&amp;quot;Fewer distractions, faster loading, and more privacy are built-in.&amp;quot;&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;By keeping things minimal, we achieve:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;strong&gt;Faster load times&lt;/strong&gt; - Less code = faster downloads&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Better accessibility&lt;/strong&gt; - Semantic HTML works everywhere&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Easier maintenance&lt;/strong&gt; - Less code = fewer bugs&lt;/li&gt;
&lt;li&gt;&lt;strong&gt;Focused content&lt;/strong&gt; - No distractions from what matters&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id=&quot;whats-next&quot;&gt;What&apos;s Next?&lt;/h2&gt;
&lt;p&gt;Start writing! The theme is ready to use out of the box. Check out:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;&lt;a href=&quot;/blog/&quot;&gt;Blog archive&lt;/a&gt; - See all your posts&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;/feed.xml&quot;&gt;RSS feed&lt;/a&gt; - Subscribe to updates&lt;/li&gt;
&lt;li&gt;&lt;a href=&quot;https://github.com/adamdjbrett/11ty-bear&quot;&gt;GitHub&lt;/a&gt; - View source code&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;Happy blogging! 🐻&lt;/p&gt;
</content>
  </entry>
  <entry>
    <title>Markdown Syntax Guide</title>
    <link href="https://example.com/blog/markdown-syntax/" />
    <id>https://example.com/blog/markdown-syntax/</id>
    <updated>2020-01-03T00:00:00.000Z</updated>
    <published>2020-01-03T00:00:00.000Z</published>
    <summary>Sample article showcasing basic Markdown syntax and formatting for HTML elements.</summary>
    <content type="html">&lt;p&gt;For a quick cheatsheet, check out &lt;a href=&quot;https://simplemde.com/markdown-guide&quot;&gt;https://simplemde.com/markdown-guide&lt;/a&gt;.&lt;/p&gt;
&lt;hr&gt;
&lt;p&gt;This article offers a sample of basic Markdown syntax that can be used in Hugo content files, also it shows whether basic HTML elements are decorated with CSS in a Hugo theme.&lt;/p&gt;
&lt;!--more--&gt;
&lt;h2 id=&quot;headings&quot;&gt;Headings&lt;/h2&gt;
&lt;p&gt;The following HTML &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt;-&lt;code&gt;&amp;lt;h6&amp;gt;&lt;/code&gt; elements represent six levels of section headings. &lt;code&gt;&amp;lt;h1&amp;gt;&lt;/code&gt; is the highest section level while &lt;code&gt;&amp;lt;h6&amp;gt;&lt;/code&gt; is the lowest.&lt;/p&gt;
&lt;h1 id=&quot;h1&quot;&gt;H1&lt;/h1&gt;
&lt;h2 id=&quot;h2&quot;&gt;H2&lt;/h2&gt;
&lt;h3 id=&quot;h3&quot;&gt;H3&lt;/h3&gt;
&lt;h4 id=&quot;h4&quot;&gt;H4&lt;/h4&gt;
&lt;h5 id=&quot;h5&quot;&gt;H5&lt;/h5&gt;
&lt;h6 id=&quot;h6&quot;&gt;H6&lt;/h6&gt;
&lt;h2 id=&quot;paragraph&quot;&gt;Paragraph&lt;/h2&gt;
&lt;p&gt;Xerum, quo qui aut unt expliquam qui dolut labo. Aque venitatiusda cum, voluptionse latur sitiae dolessi aut parist aut dollo enim qui voluptate ma dolestendit peritin re plis aut quas inctum laceat est volestemque commosa as cus endigna tectur, offic to cor sequas etum rerum idem sintibus eiur? Quianimin porecus evelectur, cum que nis nust voloribus ratem aut omnimi, sitatur? Quiatem. Nam, omnis sum am facea corem alique molestrunt et eos evelece arcillit ut aut eos eos nus, sin conecerem erum fuga. Ri oditatquam, ad quibus unda veliamenimin cusam et facea ipsamus es exerum sitate dolores editium rerore eost, temped molorro ratiae volorro te reribus dolorer sperchicium faceata tiustia prat.&lt;/p&gt;
&lt;p&gt;Itatur? Quiatae cullecum rem ent aut odis in re eossequodi nonsequ idebis ne sapicia is sinveli squiatum, core et que aut hariosam ex eat.&lt;/p&gt;
&lt;h2 id=&quot;blockquotes&quot;&gt;Blockquotes&lt;/h2&gt;
&lt;p&gt;The blockquote element represents content that is quoted from another source.&lt;/p&gt;
&lt;h4 id=&quot;blockquote-without-attribution&quot;&gt;Blockquote without attribution&lt;/h4&gt;
&lt;blockquote&gt;
&lt;p&gt;Tiam, ad mint andaepu dandae nostion secatur sequo quae.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;Note&lt;/strong&gt; that you can use &lt;em&gt;Markdown syntax&lt;/em&gt; within a blockquote.&lt;/p&gt;
&lt;/blockquote&gt;
&lt;h4 id=&quot;blockquote-with-attribution&quot;&gt;Blockquote with attribution&lt;/h4&gt;
&lt;blockquote&gt;
&lt;p&gt;Don&apos;t communicate by sharing memory, share memory by communicating.&lt;/p&gt;
&lt;p&gt;— Rob Pike[^1]&lt;/p&gt;
&lt;/blockquote&gt;
&lt;p&gt;[^1]: The above quote is excerpted from Rob Pike&apos;s &lt;a href=&quot;https://www.youtube.com/watch?v=PAAkCSZUG1c&quot;&gt;talk&lt;/a&gt; during Gopherfest, November 18, 2015.&lt;/p&gt;
&lt;h2 id=&quot;tables&quot;&gt;Tables&lt;/h2&gt;
&lt;p&gt;Tables aren&apos;t part of the core Markdown spec, but Hugo supports supports them out-of-the-box.&lt;/p&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Name&lt;/th&gt;
&lt;th&gt;Age&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;/table&gt;
&lt;p&gt;Bob | 27
Alice | 23&lt;/p&gt;
&lt;h4 id=&quot;inline-markdown-within-tables&quot;&gt;Inline Markdown within tables&lt;/h4&gt;
&lt;table&gt;
&lt;thead&gt;
&lt;tr&gt;
&lt;th&gt;Italics&lt;/th&gt;
&lt;th&gt;Bold&lt;/th&gt;
&lt;th&gt;Code&lt;/th&gt;
&lt;/tr&gt;
&lt;/thead&gt;
&lt;tbody&gt;
&lt;tr&gt;
&lt;td&gt;&lt;em&gt;italics&lt;/em&gt;&lt;/td&gt;
&lt;td&gt;&lt;strong&gt;bold&lt;/strong&gt;&lt;/td&gt;
&lt;td&gt;&lt;code&gt;code&lt;/code&gt;&lt;/td&gt;
&lt;/tr&gt;
&lt;/tbody&gt;
&lt;/table&gt;
&lt;h2 id=&quot;code-blocks&quot;&gt;Code Blocks&lt;/h2&gt;
&lt;h4 id=&quot;code-block-with-backticks&quot;&gt;Code block with backticks&lt;/h4&gt;
&lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;&amp;lt;!doctype html&amp;gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;meta charset=&amp;quot;utf-8&amp;quot;&amp;gt;
  &amp;lt;title&amp;gt;Example HTML5 Document&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;p&amp;gt;Test&amp;lt;/p&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;h4 id=&quot;code-block-indented-with-four-spaces&quot;&gt;Code block indented with four spaces&lt;/h4&gt;
&lt;p&gt;&lt;!doctype html&gt;
&lt;html lang=&quot;en&quot;&gt;
&lt;head&gt;
&lt;meta charset=&quot;utf-8&quot;&gt;
&lt;title&gt;Example HTML5 Document&lt;/title&gt;
&lt;/head&gt;
&lt;body&gt;
&lt;p&gt;Test&lt;/p&gt;
&lt;/body&gt;
&lt;/html&gt;&lt;/p&gt;
&lt;h4 id=&quot;code-block-converted-from-hugos-internal-highlight-shortcode&quot;&gt;Code block converted from Hugo&apos;s internal highlight shortcode&lt;/h4&gt;
&lt;pre&gt;&lt;code class=&quot;language-html&quot;&gt;&amp;lt;!doctype html&amp;gt;
&amp;lt;html lang=&amp;quot;en&amp;quot;&amp;gt;
&amp;lt;head&amp;gt;
  &amp;lt;meta charset=&amp;quot;utf-8&amp;quot;&amp;gt;
  &amp;lt;title&amp;gt;Example HTML5 Document&amp;lt;/title&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
  &amp;lt;p&amp;gt;Test&amp;lt;/p&amp;gt;
&amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;
&lt;/code&gt;&lt;/pre&gt;
&lt;h2 id=&quot;list-types&quot;&gt;List Types&lt;/h2&gt;
&lt;h4 id=&quot;ordered-list&quot;&gt;Ordered List&lt;/h4&gt;
&lt;ol&gt;
&lt;li&gt;First item&lt;/li&gt;
&lt;li&gt;Second item&lt;/li&gt;
&lt;li&gt;Third item&lt;/li&gt;
&lt;/ol&gt;
&lt;h4 id=&quot;unordered-list&quot;&gt;Unordered List&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;List item&lt;/li&gt;
&lt;li&gt;Another item&lt;/li&gt;
&lt;li&gt;And another&lt;/li&gt;
&lt;/ul&gt;
&lt;h4 id=&quot;nested-list&quot;&gt;Nested list&lt;/h4&gt;
&lt;ul&gt;
&lt;li&gt;Fruit
&lt;ul&gt;
&lt;li&gt;Apple&lt;/li&gt;
&lt;li&gt;Orange&lt;/li&gt;
&lt;li&gt;Banana&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;li&gt;Dairy
&lt;ul&gt;
&lt;li&gt;Milk&lt;/li&gt;
&lt;li&gt;Cheese&lt;/li&gt;
&lt;/ul&gt;
&lt;/li&gt;
&lt;/ul&gt;
</content>
  </entry>
</feed>
