<%= getCategoryName(portfolio.category) %>
<% if (portfolio.featured) { %>
FEATURED
<% } %>
<% if (portfolio.status === 'completed') { %>
완료
<% } else if (portfolio.status === 'in-progress') { %>
진행 중
<% } %>
<%= portfolio.title %>
<%= portfolio.description %>
<%= portfolio.viewCount || 0 %>
조회수
<%= portfolio.likes || 0 %>
좋아요
<%= portfolio.completedAt ? new Date(portfolio.completedAt).getFullYear() : new Date().getFullYear() %>
완료년도
<% if (portfolio.projectUrl) { %>
프로젝트 보기
<% } %>