<% if (typeof filters === 'undefined') { filters = { q: '', type: 'all', tag: '' }; } %> <% if (typeof availableTags === 'undefined') { availableTags = []; } %> <% if (typeof pagination === 'undefined') { pagination = { page: 1, totalPages: 1, totalCount: 0, hasPrev: false, hasNext: false, prevQuery: '', nextQuery: '', pages: [] }; } %> <% if (typeof lectures === 'undefined') { lectures = []; } %> <% var viewerBasePath = typeof viewerBasePath !== 'undefined' ? viewerBasePath : '/learning'; %> <% var learningApiPath = typeof learningApiPath !== 'undefined' ? learningApiPath : '/api/learning/lectures'; %> <% var adminRegisterHref = typeof adminRegisterHref !== 'undefined' ? adminRegisterHref : '/admin'; %> <% var navMenu = typeof navActiveMenu !== 'undefined' ? navActiveMenu : 'learning'; %> <% var pTitle = typeof pageTitle !== 'undefined' ? pageTitle : '학습센터'; %> <% var hTitle = typeof heroTitle !== 'undefined' ? heroTitle : '최신 컨텐츠로 학습하고, 바로 업무에 적용하세요.'; %> <% var hDesc = typeof heroDesc !== 'undefined' ? heroDesc : '유튜브·PPT·동영상 파일·웹 링크를 등록한 뒤, 목록에서 클릭하여 강의를 시청하거나 외부 자료를 열 수 있습니다.'; %> <% var listHeading = typeof sectionListHeading !== 'undefined' ? sectionListHeading : '등록된 강의'; %> <% var filterTitle = typeof filterPanelTitle !== 'undefined' ? filterPanelTitle : '강의 검색/필터'; %> <% var _opsLoggedIn = typeof opsUserEmail !== 'undefined' && opsUserEmail; %>
<%- include('partials/nav', { activeMenu: navMenu }) %>

<%= pTitle %>

<% if (typeof adminMode !== 'undefined' && adminMode && !_opsLoggedIn) { %> 콘텐츠 등록하기 <% } %>

<%= hTitle %>

<%= hDesc %>

<%= filterTitle %>

초기화

<%= listHeading %>

<%= pagination.totalCount %>
<% if (!lectures.length) { %>

등록된 항목이 없습니다.

<% } else { %>
<%- include('partials/lecture-cards') %>
<% if (pagination.hasNext) { %> <% } %> <% } %>