search for standard sites pub-search.waow.tech
search zig blog atproto
11
fork

Configure Feed

Select the types of activity you want to include in your feed.

add label to tags section

"filter by tag:" makes it clear these are content tags, not query counts

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

zzstoatzz da6875ac 9b9dad7c

+7 -1
+7 -1
site/index.html
··· 227 227 margin-bottom: 1rem; 228 228 } 229 229 230 + .tags-label { 231 + font-size: 11px; 232 + color: #444; 233 + margin-bottom: 0.5rem; 234 + } 235 + 230 236 .tags-list { 231 237 display: flex; 232 238 flex-wrap: wrap; ··· 480 486 const html = allTags.slice(0, 15).map(t => ` 481 487 <span class="tag${currentTag === t.tag ? ' active' : ''}" onclick="setTag('${escapeHtml(t.tag)}')">${escapeHtml(t.tag)}<span class="count">${t.count}</span></span> 482 488 `).join(''); 483 - tagsDiv.innerHTML = `<div class="tags-list">${html}</div>`; 489 + tagsDiv.innerHTML = `<div class="tags-label">filter by tag:</div><div class="tags-list">${html}</div>`; 484 490 } 485 491 486 492 async function loadTags() {