<?xml version="1.0" encoding="utf-8" standalone="yes"?><rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Tutorial on Not That Kind of Agent</title><link>https://agentolivia.github.io/tags/tutorial/</link><description>Recent content in Tutorial on Not That Kind of Agent</description><generator>Hugo -- gohugo.io</generator><language>en-us</language><lastBuildDate>Mon, 09 Feb 2026 15:18:13 -0800</lastBuildDate><atom:link href="https://agentolivia.github.io/tags/tutorial/index.xml" rel="self" type="application/rss+xml"/><item><title>New Site, Who Dis</title><link>https://agentolivia.github.io/p/new-site-who-dis/</link><pubDate>Mon, 09 Feb 2026 15:18:13 -0800</pubDate><guid>https://agentolivia.github.io/p/new-site-who-dis/</guid><description>&lt;img src="https://agentolivia.github.io/p/new-site-who-dis/screenshot-new-site-who-dis-commit.png" alt="Featured image of post New Site, Who Dis" /&gt;&lt;p&gt;Used Claude.ai to help me choose a template for my Hugo site. &lt;a class="link" href="https://gohugo.io/" target="_blank" rel="noopener"
 &gt;Hugo&lt;/a&gt; is a static site generator. My prompt:&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;Help me pick a theme for my personal site running Hugo.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Actively maintained&lt;/li&gt;
&lt;li&gt;Accommodates blog posts that can have text, images, YouTube videos embedded.&lt;/li&gt;
&lt;li&gt;Responsive layout and typography
Nice to have: a gallery layout. Bonus points if it can integrate with Flickr.&lt;/li&gt;
&lt;/ul&gt;

 &lt;/blockquote&gt;
&lt;p&gt;&lt;a class="link" href="https://claude.ai/" target="_blank" rel="noopener"
 &gt;Claude&lt;/a&gt; recommended Stack, which I agreed with, based on some extensive theme evaluation I had done the previous week.&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;Hugo Stack—This is my top pick for you. It&amp;rsquo;s actively maintained (last updated January 2026), has 6,200+ GitHub stars, and includes PhotoSwipe integration for galleries with lightbox functionality. The card-style layout works beautifully for blog posts with mixed media, supports lazy-loading images, has dark mode, and handles YouTube embeds well. The responsive typography is clean and modern.&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;p&gt;The &lt;a class="link" href="https://themes.gohugo.io/themes/hugo-theme-stack/" target="_blank" rel="noopener"
 &gt;Stack&lt;/a&gt; theme, self-described as &amp;ldquo;Card-style Hugo theme designed for bloggers,&amp;rdquo; doesn&amp;rsquo;t use the typical Hugo &lt;a class="link" href="https://gohugo.io/getting-started/quick-start/" target="_blank" rel="noopener"
 &gt;quickstart process&lt;/a&gt; for adding a theme to an existing repo using &lt;code&gt;git submodule add...&lt;/code&gt;. Since this site is brand new, I was okay with starting from scratch.&lt;/p&gt;
&lt;p&gt;The Stack theme repo lives at GitHub: &lt;a class="link" href="https://github.com/CaiJimmy/hugo-theme-stack" target="_blank" rel="noopener"
 &gt;CaiJimmy/hugo-theme-stack&lt;/a&gt;. The Quickstart process, using the template at &lt;a class="link" href="https://github.com/CaiJimmy/hugo-theme-stack-starter" target="_blank" rel="noopener"
 &gt;CaiJimmy/hugo-theme-stack-starter&lt;/a&gt;, assumes you are starting a brand new site.&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;It uses &lt;a class="link" href="https://gohugo.io/hugo-modules/" target="_blank" rel="noopener"
 &gt;Hugo modules&lt;/a&gt; feature to load the theme. This means that the theme is downloaded to Hugo&amp;rsquo;s cache directory and isn&amp;rsquo;t visible in your repo. Contrast that with the &lt;code&gt;git submodule&lt;/code&gt; approach for adding a theme which adds theme code to the &lt;em&gt;themes&lt;/em&gt; directory and is managed with &lt;code&gt;git submodule&lt;/code&gt; commands. (This was a new concept for me.) Hugo modules are managed with &lt;code&gt;hugo mod&lt;/code&gt; commands, which requires Go.&lt;/li&gt;
&lt;li&gt;It comes with a basic theme structure and configuration.&lt;/li&gt;
&lt;li&gt;A GitHub action (&lt;em&gt;.github/workflows/deploy.yml&lt;/em&gt;) has been set up to deploy the theme to a public GitHub page automatically.&lt;/li&gt;
&lt;li&gt;Also, there&amp;rsquo;s a cron job to update the theme automatically everyday.&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="goal"&gt;Goal
&lt;/h2&gt;&lt;p&gt;Create new Hugo site based on &lt;a class="link" href="https://github.com/CaiJimmy/hugo-theme-stack-starter" target="_blank" rel="noopener"
 &gt;CaiJimmy/hugo-theme-stack-starter&lt;/a&gt; template and deploy with GitHub Pages.&lt;/p&gt;
&lt;h2 id="notes"&gt;Notes
&lt;/h2&gt;&lt;p&gt;The default branch on &lt;em&gt;CaiJimmy/hugo-theme-stack-starter&lt;/em&gt; is &lt;code&gt;master&lt;/code&gt; and I want to change that to &lt;code&gt;main&lt;/code&gt;. That will mean a few extra steps.&lt;/p&gt;
&lt;h2 id="local-development-vs-cloud-editing"&gt;Local development vs. cloud editing
&lt;/h2&gt;&lt;p&gt;I watched the video tutorial at &lt;a class="link" href="https://github.com/CaiJimmy/hugo-theme-stack-starter" target="_blank" rel="noopener"
 &gt;CaiJimmy/hugo-theme-stack-starter&lt;/a&gt;. This demonstrates using GitHub&amp;rsquo;s Codespaces cloud editor. I decided to use a local development workflow since I am comfortable with that. Going the local development route means I&amp;rsquo;ll need the following dependencies installed on my Mac:&lt;/p&gt;
&lt;ul&gt;
&lt;li&gt;Git (I&amp;rsquo;ve already installed this with Command Line Tools, and set up my public key with GitHub.)&lt;/li&gt;
&lt;li&gt;Hugo (I already installed this with &lt;code&gt;brew install hugo&lt;/code&gt;)&lt;/li&gt;
&lt;li&gt;Go (Required by this project, I installed it globally with &lt;code&gt;brew install go&lt;/code&gt;)&lt;/li&gt;
&lt;/ul&gt;
&lt;h2 id="steps"&gt;Steps
&lt;/h2&gt;&lt;p&gt;If you want to use GitHub Codespaces, follow the steps at &lt;a class="link" href="https://github.com/CaiJimmy/hugo-theme-stack-starter" target="_blank" rel="noopener"
 &gt;CaiJimmy/hugo-theme-stack-starter&lt;/a&gt;.&lt;/p&gt;
&lt;p&gt;To set up the site for local development, I did the following steps:&lt;/p&gt;
&lt;h3 id="on-github"&gt;On GitHub
&lt;/h3&gt;&lt;ol&gt;
&lt;li&gt;On &lt;a class="link" href="https://github.com/CaiJimmy/hugo-theme-stack-starter" target="_blank" rel="noopener"
 &gt;CaiJimmy/hugo-theme-stack-starter&lt;/a&gt;, in the upper right corner, click &lt;strong&gt;Use this template&lt;/strong&gt; &amp;gt; &lt;strong&gt;Create new repository&lt;/strong&gt;.&lt;/li&gt;
&lt;li&gt;Name the repo &lt;code&gt;&amp;lt;username&amp;gt;.github.io&lt;/code&gt; and click Create this repository (or whatever the submit button is called)&lt;/li&gt;
&lt;/ol&gt;

 &lt;blockquote&gt;
 &lt;p&gt;To make deployment to GitHub Pages a snap, I named my repo, &lt;code&gt;agentolivia.github.io&lt;/code&gt;, where &lt;code&gt;agentolivia&lt;/code&gt; is my GitHub username. If you use a different repo name, the site will be deployed to sub-directory of &lt;code&gt;&amp;lt;username&amp;gt;.github.io&lt;/code&gt;. Fun facts.&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;h3 id="on-my-mac-in-a-terminal-window"&gt;On my Mac, in a Terminal window
&lt;/h3&gt;&lt;ol&gt;
&lt;li&gt;&lt;code&gt;cd ~/Sites&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;git clone git@github.com:&amp;lt;username&amp;gt;/&amp;lt;username&amp;gt;.github.io.git&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;cd &amp;lt;username&amp;gt;.github.io&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;git submodule update --init --recursive&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id="change-the-master-branch-to-main"&gt;Change the &lt;code&gt;master&lt;/code&gt; branch to &lt;code&gt;main&lt;/code&gt;
&lt;/h3&gt;&lt;ol&gt;
&lt;li&gt;&lt;code&gt;git branch -m master main&lt;/code&gt;&lt;/li&gt;
&lt;li&gt;&lt;code&gt;git push -u origin main&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id="back-on-github"&gt;Back on GitHub
&lt;/h3&gt;&lt;ol&gt;
&lt;li&gt;On the repo page, click &lt;em&gt;Settings&lt;/em&gt;&lt;/li&gt;
&lt;li&gt;Under Settings: Default branch &amp;gt; Switch (arrows icon) &amp;gt; &lt;code&gt;main&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id="back-on-mac-in-terminal-window"&gt;Back on Mac, in Terminal window
&lt;/h3&gt;&lt;ol&gt;
&lt;li&gt;&lt;code&gt;git push origin --delete master&lt;/code&gt;&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;What we have right now is a broken build which will be fixed by updating &lt;em&gt;.github/workflows/deploy.yml&lt;/em&gt;.&lt;/p&gt;
&lt;h3 id="edit-deployyml"&gt;Edit deploy.yml
&lt;/h3&gt;&lt;ol&gt;
&lt;li&gt;
&lt;p&gt;In code editor of choice, open for editing &lt;em&gt;.github/workflows/deploy.yml&lt;/em&gt;&lt;/p&gt;

 &lt;blockquote&gt;
 &lt;p&gt;Side quest: Install GitHub Actions plugin on VS Code, which popped up when I opened the file in VS Code.&lt;/p&gt;

 &lt;/blockquote&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Update the list of branches to match the new default branch, &lt;code&gt;main&lt;/code&gt;.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;div class="chroma"&gt;
&lt;table class="lntable"&gt;&lt;tr&gt;&lt;td class="lntd"&gt;
&lt;pre tabindex="0" class="chroma"&gt;&lt;code&gt;&lt;span class="lnt"&gt;1
&lt;/span&gt;&lt;span class="lnt"&gt;2
&lt;/span&gt;&lt;span class="lnt"&gt;3
&lt;/span&gt;&lt;span class="lnt"&gt;4
&lt;/span&gt;&lt;span class="lnt"&gt;5
&lt;/span&gt;&lt;span class="lnt"&gt;6
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class="lntd"&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="nt"&gt;name&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="l"&gt;Build and deploy&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;on&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;push&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="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;branches&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="w"&gt; &lt;/span&gt;- &lt;span class="l"&gt;main&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;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Update environment constants to match local.&lt;/p&gt;
&lt;p&gt;I noticed that when I checked out the versions I had locally installed, they were a bit different than what was listed in &lt;em&gt;deploy.yml&lt;/em&gt;.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;div class="chroma"&gt;
&lt;table class="lntable"&gt;&lt;tr&gt;&lt;td class="lntd"&gt;
&lt;pre tabindex="0" class="chroma"&gt;&lt;code&gt;&lt;span class="lnt"&gt; 1
&lt;/span&gt;&lt;span class="lnt"&gt; 2
&lt;/span&gt;&lt;span class="lnt"&gt; 3
&lt;/span&gt;&lt;span class="lnt"&gt; 4
&lt;/span&gt;&lt;span class="lnt"&gt; 5
&lt;/span&gt;&lt;span class="lnt"&gt; 6
&lt;/span&gt;&lt;span class="lnt"&gt; 7
&lt;/span&gt;&lt;span class="lnt"&gt; 8
&lt;/span&gt;&lt;span class="lnt"&gt; 9
&lt;/span&gt;&lt;span class="lnt"&gt;10
&lt;/span&gt;&lt;span class="lnt"&gt;11
&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class="lntd"&gt;
&lt;pre tabindex="0" class="chroma"&gt;&lt;code class="language-shell" data-lang="shell"&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;# hugo&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;hugo version
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;hugo v0.155.3+extended+withdeploy darwin/arm64 &lt;span class="nv"&gt;BuildDate&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;2026-02-08T16:40:42Z &lt;span class="nv"&gt;VendorInfo&lt;/span&gt;&lt;span class="o"&gt;=&lt;/span&gt;Homebrew
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;# go&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;go version
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;go version go1.25.7 darwin/arm64
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;&lt;span class="c1"&gt;# node&lt;/span&gt;
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;node --version
&lt;/span&gt;&lt;/span&gt;&lt;span class="line"&gt;&lt;span class="cl"&gt;v24.12.0
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;p&gt;Under &lt;code&gt;jobs.build.env&lt;/code&gt;, update the version to match the output.&lt;/p&gt;
&lt;div class="highlight"&gt;&lt;div class="chroma"&gt;
&lt;table class="lntable"&gt;&lt;tr&gt;&lt;td class="lntd"&gt;
&lt;pre tabindex="0" class="chroma"&gt;&lt;code&gt;&lt;span class="lnt"&gt;1
&lt;/span&gt;&lt;span class="lnt"&gt;2
&lt;/span&gt;&lt;span class="lnt"&gt;3
&lt;/span&gt;&lt;span class="lnt"&gt;4
&lt;/span&gt;&lt;span class="lnt"&gt;5
&lt;/span&gt;&lt;span class="hl"&gt;&lt;span class="lnt"&gt;6
&lt;/span&gt;&lt;/span&gt;&lt;span class="hl"&gt;&lt;span class="lnt"&gt;7
&lt;/span&gt;&lt;/span&gt;&lt;span class="hl"&gt;&lt;span class="lnt"&gt;8
&lt;/span&gt;&lt;/span&gt;&lt;span class="hl"&gt;&lt;span class="lnt"&gt;9
&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;
&lt;td class="lntd"&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="nt"&gt;jobs&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;build&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="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;runs-on&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="l"&gt;ubuntu-latest&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="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;env&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="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;DART_SASS_VERSION&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="m"&gt;1.97.1&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line hl"&gt;&lt;span class="cl"&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;GO_VERSION&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="m"&gt;1.25.7&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line hl"&gt;&lt;span class="cl"&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;HUGO_VERSION&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="m"&gt;0.155.3&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line hl"&gt;&lt;span class="cl"&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;NODE_VERSION&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="m"&gt;24.12.0&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;span class="line hl"&gt;&lt;span class="cl"&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="nt"&gt;TZ&lt;/span&gt;&lt;span class="p"&gt;:&lt;/span&gt;&lt;span class="w"&gt; &lt;/span&gt;&lt;span class="l"&gt;America/Los_Angeles&lt;/span&gt;&lt;span class="w"&gt;
&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/code&gt;&lt;/pre&gt;&lt;/td&gt;&lt;/tr&gt;&lt;/table&gt;
&lt;/div&gt;
&lt;/div&gt;&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Save file and &lt;code&gt;git add .github/workflows/deploy.yml&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Commit: `git commit -m &amp;ldquo;Update deploy.yml&amp;rdquo;&lt;/p&gt;
&lt;/li&gt;
&lt;li&gt;
&lt;p&gt;Push to repo to see deployment in action: &lt;code&gt;git push&lt;/code&gt;&lt;/p&gt;
&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id="switch-to-github-to-see-deployment-in-action"&gt;Switch to GitHub to see deployment in action
&lt;/h3&gt;&lt;ol&gt;
&lt;li&gt;Click on the yellow dot next to the latest commit message, then Details to watch the build!&lt;/li&gt;
&lt;/ol&gt;
&lt;h3 id="view-live-site"&gt;View live site
&lt;/h3&gt;&lt;ol&gt;
&lt;li&gt;Visit GitHub pages site. For me this is at &lt;a class="link" href="https://agentolivia.github.io" target="_blank" rel="noopener"
 &gt;https://agentolivia.github.io&lt;/a&gt;.&lt;/li&gt;
&lt;li&gt;It should be live with the starter template&amp;rsquo;s demo content.&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;I&amp;rsquo;m now ready to customize the site, unpublish the default content, and add some new posts. (Hey, this is one of them, so I succeeded!)&lt;/p&gt;</description></item></channel></rss>