For WordPress.com sites
You must have a business plan at WordPress.com in order to install Baseline.
For self-hosted sites
The source code for the theme is available at GitHub.
We're trying out smaller post titles on the home page. These are now 25px, as opposed to 32px on the single post page.
Block quotes are supported by WordLand, but didn't yet have a style.
This is now a block quote with a style.
And here is some text after the block quote.
My answers to the questions from May 4, 2025:
Other problems I've noticed
like this isn't very distinguishable from normal text (issue on GitHub).Here is a test post with an image 1600 pixels wide.

I've applied the single column layout proposed by Christy Nyiri. I personally think it looks fantastic.
Here are some WordLand styles.
This is a block quote. (This doesn't seem to be styled yet.)
Bold, italics, underlined (hmm, it's not underlined).
An ordered shopping list:
Notes as an unordered list:
Here's a paragraph that appears under the unordered list.
This is a paragraph of text that comes above the list. These five random items were generated by AI.
And this is a paragraph to finish this list.
It looks like WordPress is putting 22 px top and bottom margin on the paragraphs and the ordered list, and 18 px top and bottom between the list items (actually the margin is on the p element within the li).
Here are the same items as an unordered list.
And finally some text as a paragraph that appears below the list.
For Change #5, I once again used an add_filter function to replace the HTML generated by WordPress, this time for the next/prev links. The links show only an arrow at 1.5em (24 px), no underline, with the post title in the title attribute of the anchor tag so it shows up as a tool tip.
For Change #10, since we can include PHP code in the theme, we don't need to use JavaScript to filter out the Uncategorized category. We can use an add_filter function on the get_the_terms hook in functions.php to remove Uncategorized before the wp:post-terms block displays the categories.
The block also has a parameter for the prefix to the displayed list, so we changed it from "Posted in " to "Categories: ".
I thought Change #11 would be simple. The icons are in a social-links block, and an RSS feed is among the supported services.
However, adding
<!-- wp:social-link {"url":"#","service":"rss"} /-->
to the sidebar failed. I had to dig into the WordPress code itself to find the service is named "feed", not "rss". The correct syntax for the RSS feed icon is
<!-- wp:social-link {"url":"#","service":"feed"} /-->.
🙄
Hooking up the correct link to the icon is a task for later.
Update: We put an add_filter function in functions.php to put the actual feed link on the icon (Commit 38b1a45).
For Change #4 some adjustments to the post body text were requested.
In block style WordPress themes most of the CSS is in the theme.json file.
Once these changes are tested, they will become version 0.0.2 of the theme.