diff --git a/templates/index.html b/templates/index.html index 7dd772c..7bd7aec 100644 --- a/templates/index.html +++ b/templates/index.html @@ -146,6 +146,16 @@ background: #d9d9d9; } + .card-tags { margin-top: 6px; display: flex; flex-wrap: wrap; gap: 4px; } + .card-tag { + font-size: 11px; + color: #667eea; + background: rgba(102,126,234,0.1); + padding: 2px 8px; + border-radius: 10px; + white-space: nowrap; + } + .empty-state { grid-column: 1 / -1; text-align: center; @@ -268,6 +278,7 @@
${escapeHTML(s.name)}
${s.description ? `
${escapeHTML(s.description)}
` : ''} + ${s.tags ? `
${s.tags.split(',').map(t => `${escapeHTML(t.trim())}`).join('')}
` : ''}
`;