<%- include('partials/favicon') %> <%= lecture.title %> - PPT 뷰어 <% if (typeof slideImageUrls === 'undefined') { slideImageUrls = []; } %>
<%- include('partials/nav', { activeMenu: 'learning' }) %>
← 학습센터로 돌아가기

<%= lecture.title %>

<%= lecture.description || "설명이 없습니다." %>

<%= slides.length %>
<% if (typeof slidesError !== 'undefined' && slidesError && (!slideImageUrls || slideImageUrls.length === 0)) { %>

슬라이드 이미지 생성에 실패했습니다. LibreOffice가 설치되어 있는지 확인하세요. (macOS: brew install --cask libreoffice)

<% } %> <% if (!slides.length) { %>

슬라이드 내용을 불러올 수 없습니다.

<% } %>
<% slides.forEach((slide, index) => { %>

슬라이드 <%= index + 1 %>

<% if (slide.title) { %>

<%= slide.title %>

<% } %>
<% if (slideImageUrls[index]) { %>
슬라이드 <%= index + 1 %>
<% } %> <% if (slide.lines && slide.lines.length > 0) { %>
    <% slide.lines.forEach((line) => { %>
  • <%= line %>
  • <% }) %>
<% } %>
<% }) %>