<%- include("_header") %>
← 대시보드

<%= project.title %>

<%= project.owner_name %> 님이 공유 · <%= new Date(project.created_at).toLocaleDateString("ko-KR") %>
<% if (project.description) { %>

<%= project.description %>

<% } %>
<% if (project.repo_url) { %>🍵 Repo<% } %> <% if (project.app_url) { %>🚀 앱 열기<% } %>
<% if (project.tags) { %>
<% project.tags.split(",").map(t=>t.trim()).filter(Boolean).forEach(function(t){ %> <%= t %> <% }); %>
<% } %>

💬 코멘트 (<%= comments.length %>)

<% comments.forEach(function(c){ %>
<%= c.author_name %> · <%= new Date(c.created_at).toLocaleString("ko-KR") %>
<%= c.body %>
<% }); %>