- _project_detail.ejs: 모달/단독 공용 상세(헤더·반응·바로가기·댓글 스레드·입력) - dashboard: 상세 모달 오버레이 + 프로젝트별 template 저장소 + 새 프로젝트 등록 모달 - project.ejs(단독)·login.ejs 새 디자인으로 재작성 Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
12 lines
361 B
Plaintext
12 lines
361 B
Plaintext
<%- include("_header") %>
|
|
<main class="main">
|
|
<div class="detail-wrap">
|
|
<div class="modal" style="margin:0 auto;animation:none">
|
|
<%- include("_project_detail", { p: project, comments: comments, me: user.sabun, returnTo: "/projects/" + project.id, modal: false }) %>
|
|
</div>
|
|
</div>
|
|
</main>
|
|
<script src="/public/app.js"></script>
|
|
</body>
|
|
</html>
|