<%- include("_header") %> <% // 뷰 로컬 헬퍼 (빌드 없이 EJS 스크립틀릿으로) function fdate(d) { var x = new Date(d); return x.getFullYear() + "." + String(x.getMonth() + 1).padStart(2, "0") + "." + String(x.getDate()).padStart(2, "0"); } function edited(a) { try { return (+new Date(a.updated_at) - +new Date(a.created_at)) > 1000; } catch (e) { return false; } } %>

공지사항

<% if (user.isAdmin) { %>
<% } %> <% if (!announcements.length) { %>
아직 등록된 공지가 없습니다.
<% } %>
<% announcements.forEach(function (a) { %>

<%= a.title %>

<% if (user.isAdmin) { %>
<% } %>
<%= a.author_name %> · <%= fdate(a.created_at) %><% if (edited(a)) { %> · 수정됨<% } %>
<% if (a.body && a.body.trim()) { %>
<%- renderMarkdown(a.body) %>
<% } %>
<% if (user.isAdmin) { %> <% } %>
<% }); %>
<%- include("_footer") %>