feat(sites): 도구 카드 호버 설명(title) 추가 — Coder·Gitea·Kubero·Coolify
- sites.js 에 tip 필드 추가, dashboard 카드에 title 속성으로 연결(tip 있는 카드만) - Coder: VS Code Web 개발 환경 / Gitea: 소스 저장·버전 관리·Git 협업 - Kubero: Kubernetes 기반·playground 파이프라인 / Coolify: Docker 기반·aidev 프로젝트 Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -26,7 +26,7 @@
|
||||
</div>
|
||||
<div class="tools-grid">
|
||||
<% tools.forEach(function (t) { %>
|
||||
<a class="tool-card<%= t.adminOnly ? " admin" : "" %>" href="<%= t.url %>" target="_blank" rel="noopener">
|
||||
<a class="tool-card<%= t.adminOnly ? " admin" : "" %>" href="<%= t.url %>" target="_blank" rel="noopener"<% if (t.tip) { %> title="<%= t.tip %>"<% } %>>
|
||||
<span class="tool-icon"><%= t.icon %></span>
|
||||
<span class="tool-name"><%= t.name %></span>
|
||||
<span class="tool-desc"><%= t.desc %></span>
|
||||
|
||||
Reference in New Issue
Block a user