<%_ if (locals.title && title) { _%>

back

<%= title %>

<% } _%>
<%_ files.forEach(function(file) { _%>
<%_ if (file.type === 'directory') { _%>

<%= file.name %> (<%= file.contents %>)

<%_ } else if (file.type === 'image') { _%>

<%= file.name %> (<%= file.size %>)

<%= file.name %> <%_ } else if (file.type === 'video') { _%>

<%= file.name %> (<%= file.size %>)

<%_ } else if (file.type === 'audio') { _%>

<%= file.name %> (<%= file.size %>)

<%_ } else if (file.type === 'text') { _%>

<%= file.name %>

<%_ if (file.contents) { _%>
<%= file.contents %>
<%_ } _%> <%_ } else if (file.type === 'markdown') { _%>

<%= file.name %> (<%= file.size %>)

<%- file.contents _%>
<%_ } else if (file.type === 'raw') { _%>

<%= file.name %>

<%_ if (file.contents) { _%>
<%= file.contents %>
<%_ } _%> <%_ } else if (file.type === 'other') { _%>

<%= file.name %> (<%= file.size %>)

<%_ } _%>
<%_ }) _%>