Files
ai_platform/views/lecture-link.ejs
dsyoon 9f647cd783 feat(ui): 파비콘을 xavis-logo.png로 통일
- partials/favicon.ejs로 icon·apple-touch-icon 링크
- 전 페이지 head에 include, /favicon.ico는 동일 PNG 제공
- 인라인 403 HTML에도 favicon 링크

Made-with: Cursor
2026-04-05 22:33:36 +09:00

33 lines
1.2 KiB
Plaintext

<!doctype html>
<html lang="ko">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<%- include('partials/favicon') %>
<title><%= lecture.title %> - 학습센터 - XAVIS</title>
<link rel="stylesheet" href="/public/styles.css" />
</head>
<body>
<div class="app-shell">
<%- include('partials/nav', { activeMenu: 'learning' }) %>
<div class="content-area">
<header class="topbar">
<h1><%= lecture.title %></h1>
<a class="top-action-link" href="/learning">목록으로</a>
</header>
<main class="container">
<section class="panel">
<% if (lecture.description) { %>
<p class="lecture-news-desc"><%= lecture.description %></p>
<% } %>
<p class="lecture-news-actions">
<a href="<%= lecture.newsUrl %>" target="_blank" rel="noopener noreferrer" class="top-action-link lecture-link-open">링크 열기 (새 탭)</a>
</p>
<p class="muted" style="font-size:13px;word-break:break-all;">URL: <%= lecture.newsUrl %></p>
</section>
</main>
</div>
</div>
</body>
</html>