<% _.each(maps,function(map,index){ %>
<% if(map.type === 'folder'){%>
<%= map.folderName %>
<% }%>
<% if(map.children.length){ %>
<% _.each(map.children,function(child,idx){ %>
<% if(child.type === 'folder') { %>
-
<%= child.folderName %>/
<% _.each(child.children,function(grandChild,idx){ %>
<% if(grandChild.type === 'folder') { %>
-
<%= child.folderName %>/
<% } else if(grandChild.type === 'file') { %>
-
<%= grandChild.fileName %>
타이틀(<%= grandChild.data.title %>)
작업자(<%= grandChild.data.author %>)
설명(<%= grandChild.data.description %>)
<% } %>
<% }) %>
<% } else if(child.type === 'file') { %>
-
/<%= child.fileName %>
타이틀(<%= child.data.title %>)
작업자(<%= child.data.author %>)
설명(<%= child.data.description %>)
<% } %>
<% }) %>
<% } %>
<% }) %>