20 lines
734 B
HTML
20 lines
734 B
HTML
<!doctype html>
|
|
<html lang="ko">
|
|
<head>
|
|
<meta charset="utf-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>Recipe · Our Recipe Atlas</title>
|
|
<link rel="stylesheet" href="/css/app.css">
|
|
</head>
|
|
<body>
|
|
<header id="site-header" class="site-header"></header>
|
|
<main id="recipe-detail" class="detail-shell">
|
|
<p class="empty-state">레시피를 불러오는 중입니다.</p>
|
|
</main>
|
|
<button id="scroll-to-top" class="scroll-to-top" type="button"
|
|
aria-label="맨 위로 이동" title="맨 위로" hidden>↑</button>
|
|
<div id="toast" class="toast" role="alert" hidden></div>
|
|
<script type="module" src="/js/recipe.js"></script>
|
|
</body>
|
|
</html>
|