Express+EJS+Postgres 사내 개발 포털. - Keycloak OIDC(사번 로그인), GitHub 감성 UI - 사이트 모음 + 프로젝트 공유/코멘트/스타 - DB: OpenEverest appdb portal schema (portal_app role) Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
18 lines
526 B
Plaintext
18 lines
526 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title><%= brand %></title>
|
|
<link rel="stylesheet" href="/public/style.css" />
|
|
</head>
|
|
<body>
|
|
<div class="header">
|
|
<a class="brand" href="/"><span>🧠</span><%= brand %></a>
|
|
<div class="spacer"></div>
|
|
<% if (user) { %>
|
|
<span class="who"><%= user.name %> (<%= user.sabun %>)</span>
|
|
<a class="navlink" href="/logout">로그아웃</a>
|
|
<% } %>
|
|
</div>
|