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.

clarify popular searches vs tags

- change label from "trending" to "popular searches"
- add ↗ arrow prefix to search items

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

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

zzstoatzz 4d0172fa 1fdf9916

+6 -1
+6 -1
site/index.html
··· 215 215 transition: all 0.15s; 216 216 } 217 217 218 + .popular-item::before { 219 + content: '↗ '; 220 + opacity: 0.5; 221 + } 222 + 218 223 .popular-item:hover { 219 224 background: #1a1a1a; 220 225 border-color: #1B7340; ··· 516 521 function renderEmptyState() { 517 522 const popularHtml = popularSearches.length > 0 ? ` 518 523 <div class="popular"> 519 - <div class="popular-label">trending</div> 524 + <div class="popular-label">popular searches</div> 520 525 <div class="popular-list"> 521 526 ${popularSearches.map(p => ` 522 527 <span class="popular-item" onclick="searchPopular('${escapeHtml(p.query)}')">${escapeHtml(p.query)}</span>