<% if (infos.loc === '/note') { %>
노트 리스트
<%} else if (infos.loc === '/note/new') {%>
새로운 노트 작성
<%} else if (infos.loc === '/note/edit') {%>
노트 수정
<%} else if (infos.loc === '/note/detail') {%>
노트 보기
<%} %>
<% if (infos.loc === '/note') { %> <%- include("../widgets/note", { infos: infos }) %> <%} else if (infos.loc === '/note/new') {%> <%- include("../widgets/note-edit", { infos: infos }) %> <%} else if (infos.loc === '/note/edit') {%> <%- include("../widgets/note-edit", { infos: infos }) %> <%} else if (infos.loc === '/note/detail') {%> <%- include("../widgets/note-detail", { infos: infos }) %> <%} %>