Filed under:
I just finished asking Codex to create a sidebar for this blog template, then I noticed it made changes to the builder script. Apparently it's something I forget in the past, before AI agent was a thing.
Previously, it wasn't able to handle nested widget tags. For example, if I want to display a Label widget inside a Blog widget, which is not possible in Blogger template tags.
I think it's a layout design error, because the AI agent is not supposed to put the Label widget inside a blog post container. But since it opens freedom to layouting, I keep the change.
Notice that both Label1 and LinkList1 widget is placed inside Blog1 widget template. I never arrange it this way, so that's interesting.
<div class="home_container">
<b-widget id="Blog1" template="BlogWidget"></b-widget>
</div>
<template id="BlogWidget">
<div class="home_layout">
<main class="home_main">
<h2 class="home_section-title" b-if="view.isHomepage">Latest Posts</h2>
<div class="home_posts-list" b-data="posts" b-template="PostWidget"></div>
<b-include template="common-navigation"></b-include>
</main>
<aside class="home_sidebar">
<b-widget id="Label1" template="BlogSidebar"></b-widget>
<b-widget id="LinkList1" template="BlogSidebarLinks"></b-widget>
</aside>
</div>
</template>
https://www.blogger.com/rpc_relay.html
https://www.blogger.com/comment/frame/220561901913020919?po=4424069429258907391&hl=en&saa=85391&origin=https://xmlexpr.blogspot.com&skin=contempo
https://xmlexpr.blogspot.com/2026/05/blogger-template-builder-script-v6-18.html#comments
true
["timeline"]