<% if (portfolio.images && portfolio.images.length > 0) { %> <% } %>
<%= 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) { %> 프로젝트 보기 <% } %>
<% if (portfolio.images && portfolio.images.length > 0) { %>
<%= portfolio.title %>
<% } else { %>
<% } %>
<% if (portfolio.images && portfolio.images.length > 1) { %>

프로젝트 갤러리

<% portfolio.images.forEach(image => { %>
<%= image.alt || portfolio.title %>

<%= image.alt || portfolio.title %>

<% }) %>
<% } %>

프로젝트 개요

<%= portfolio.description %>
<% if (portfolio.technologies && portfolio.technologies.length > 0) { %>

사용된 기술

<% portfolio.technologies.forEach(tech => { %>
<%= tech %>
<% }) %>
<% } %>

이 프로젝트 공유하기

프로젝트 정보

<% if (portfolio.clientName) { %>
클라이언트
<%= portfolio.clientName %>
<% } %>
카테고리
<%= getCategoryName(portfolio.category) %>
<% if (portfolio.completedAt) { %>
완료일
<%= new Date(portfolio.completedAt).toLocaleDateString('ko-KR') %>
<% } %> <% if (portfolio.projectUrl) { %> <% } %>

비슷한 프로젝트가 필요하신가요?

이런 프로젝트에 관심이 있으시다면 언제든 연락주세요. 무료 상담을 통해 최적의 솔루션을 제안해드리겠습니다.

관련 프로젝트

비슷한 카테고리의 다른 프로젝트들도 확인해보세요

<% if (relatedProjects && relatedProjects.length > 0) { %> <% relatedProjects.forEach((project, index) => { %>
<% if (project.images && project.images.length > 0) { %> <%= project.title %> <% } else { %>
<% } %>

<%= project.title %>

<%= project.shortDescription || project.description %>

자세히 보기 →
<% }) %> <% } else { %>

관련 프로젝트가 없습니다.

<% } %>
<% // Helper function for category names function getCategoryName(category) { const categoryNames = { 'web-development': '웹 개발', 'mobile-app': '모바일 앱', 'ui-ux-design': 'UI/UX 디자인', 'branding': '브랜딩', 'marketing': '디지털 마케팅' }; return categoryNames[category] || category; } %>