<%- include('../partials/navbar', { userId }) %> <% var folderPathEnc = breadcrumb.map(function (s) { return encodeURIComponent(s) }).join('/') var parentHref = isSubFolder ? '/op/folder/' + encodeURIComponent(breadcrumb[0]) : '/op/dashboard' var parentLabel = isSubFolder ? '← ' + breadcrumb[0] : '← 폴더 목록' var editorHref = '/op/folder/' + folderPathEnc + '/video/editor' var playlistHref = '/op/folder/' + folderPathEnc + '/playlist/new' %>
<%= parentLabel %>

📁 <%= breadcrumb.join(' / ') %>

<% if (!isSubFolder) { %> <% } %> 영상 추가 <% if (isSubFolder) { %> 플레이리스트 추가 <% } %>
<% if (!isSubFolder && subFolders && subFolders.length > 0) { %>
<% subFolders.forEach(function (sf) { %> <% }) %>
<% } %>
<% if (videos.length === 0 && (isSubFolder || !subFolders || subFolders.length === 0)) { %>

이 폴더에 영상이 없습니다. 우측 상단에서 영상을 추가하세요.

<% } %> <% videos.forEach(function (v) { var shareUrl = '/video/' + folderPathEnc + '/' + encodeURIComponent(v.id) %>
<%= v.title %>
<% if (v.sourceType === 'youtube') { %>
YouTube
<% } %>
<% }) %>