Initial commit: AI platform app (server, views, lib, data, deploy docs)
Made-with: Cursor
This commit is contained in:
31
views/lecture-news.ejs
Normal file
31
views/lecture-news.ejs
Normal file
@@ -0,0 +1,31 @@
|
||||
<!doctype html>
|
||||
<html lang="ko">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<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">기사·원문 열기 (새 탭)</a>
|
||||
</p>
|
||||
<p class="muted" style="font-size:13px;word-break:break-all;">URL: <%= lecture.newsUrl %></p>
|
||||
</section>
|
||||
</main>
|
||||
</div>
|
||||
</div>
|
||||
</body>
|
||||
</html>
|
||||
Reference in New Issue
Block a user