<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Meta on JM's Site</title><link>/tags/meta/</link><description>Recent content in Meta on JM's Site</description><generator>Hugo</generator><language>en-us</language><lastBuildDate>Thu, 23 Apr 2026 23:43:10 +0000</lastBuildDate><atom:link href="/tags/meta/index.xml" rel="self" type="application/rss+xml"/><item><title>Organizing This Site</title><link>/config/site-organization/</link><pubDate>Fri, 03 Apr 2026 00:00:00 +0000</pubDate><guid>/config/site-organization/</guid><description>&lt;p&gt;A reference for how this Hugo site is organized and what configuration
options are available.&lt;/p&gt;
&lt;h2 id="sections"&gt;Sections&lt;/h2&gt;
&lt;p&gt;Sections are created automatically from the directory tree under &lt;code&gt;content/&lt;/code&gt;.
Any directory with an &lt;code&gt;_index.md&lt;/code&gt; file becomes a section with its own list
page.&lt;/p&gt;
&lt;pre tabindex="0"&gt;&lt;code&gt;content/
├── _index.md ← home page
├── about/
│ ├── _index.md ← /about/ list page
│ ├── whoami.md
│ └── now.md
├── software/
│ ├── _index.md ← /software/ list page
│ ├── ollama.md
│ └── hugo-setup/ ← page bundle (leaf)
│ ├── index.md
│ └── architecture.svg
└── config/
 ├── _index.md ← /config/ list page
 └── this-file.md
&lt;/code&gt;&lt;/pre&gt;&lt;p&gt;No config changes are needed — Hugo derives sections from the filesystem.&lt;/p&gt;</description></item><item><title>Using Tags and Categories</title><link>/config/taxonomies/</link><pubDate>Wed, 01 Apr 2026 00:00:00 +0000</pubDate><guid>/config/taxonomies/</guid><description>&lt;p&gt;Hugo ships with two default taxonomies: &lt;strong&gt;tags&lt;/strong&gt; and &lt;strong&gt;categories&lt;/strong&gt;.&lt;/p&gt;
&lt;h2 id="assigning-terms"&gt;Assigning terms&lt;/h2&gt;
&lt;p&gt;Add them to any article&amp;rsquo;s front matter:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-yaml" data-lang="yaml"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nn"&gt;---&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nt"&gt;title&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s2"&gt;&amp;#34;My Article&amp;#34;&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nt"&gt;tags&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s1"&gt;&amp;#39;python&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;,&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="s1"&gt;&amp;#39;tools&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nt"&gt;categories&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="s1"&gt;&amp;#39;tutorials&amp;#39;&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="nn"&gt;---&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;h2 id="what-hugo-generates"&gt;What Hugo generates&lt;/h2&gt;
&lt;p&gt;For each taxonomy, Hugo creates:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;A &lt;strong&gt;taxonomy list&lt;/strong&gt; page: &lt;code&gt;/tags/&lt;/code&gt; — shows all terms.&lt;/li&gt;
&lt;li&gt;A &lt;strong&gt;term&lt;/strong&gt; page per value: &lt;code&gt;/tags/python/&lt;/code&gt; — lists all articles with
that tag.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="custom-taxonomies"&gt;Custom taxonomies&lt;/h2&gt;
&lt;p&gt;Define additional taxonomies in &lt;code&gt;hugo.toml&lt;/code&gt;:&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-toml" data-lang="toml"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="p"&gt;[&lt;/span&gt;&lt;span class="nx"&gt;taxonomies&lt;/span&gt;&lt;span class="p"&gt;]&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;tag&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;tags&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;category&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;categories&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt; &lt;span class="nx"&gt;series&lt;/span&gt; &lt;span class="p"&gt;=&lt;/span&gt; &lt;span class="s2"&gt;&amp;#34;series&amp;#34;&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/div&gt;&lt;p&gt;Then use &lt;code&gt;series: ['my-series']&lt;/code&gt; in front matter. Hugo generates &lt;code&gt;/series/&lt;/code&gt;
and &lt;code&gt;/series/my-series/&lt;/code&gt; automatically.&lt;/p&gt;</description></item></channel></rss>