<%@ page contentType="text/html;charset=UTF-8" pageEncoding="UTF-8" language="java" %> <%@ page import="com.pandoli365.bibimbap.game.GameCatalog" %> bibimbap
<%-- 카드 데이터: GameCatalog (DB 연동 시 교체) --%> <% String ctx = request.getContextPath(); for (int i = 0; i < GameCatalog.COUNT; i++) { int displayIndex = i + 1; /* 썸네일 URL — DB 연동 시 null·빈 문자열이면 로고 폴백 */ String thumbUrl = null; // 예: list.get(i).getThumbnailUrl() boolean hasImage = thumbUrl != null && !thumbUrl.isBlank(); %>
<% if (hasImage) { %> <% } else { %> <% } %>

<%= GameCatalog.NAMES[i] %>

<%= GameCatalog.CREATORS[i] %>

<% } %>