head 인라인 스크립트로 data-theme 선적용, 로고 캐시 스플래시 추가. 메인 커버는 업로드 후 저장 버튼에서 이미지·텍스트 일괄 반영. Co-authored-by: Cursor <cursoragent@cursor.com>
27 lines
549 B
HTML
27 lines
549 B
HTML
<!DOCTYPE html>
|
|
<html {{ HTML_ATTRS }}>
|
|
<head {{ HEAD_ATTRS }}>
|
|
{{ HEAD }}
|
|
</head>
|
|
<body {{ BODY_ATTRS }}>
|
|
<div
|
|
id="site-splash"
|
|
class="site-splash"
|
|
role="status"
|
|
aria-live="polite"
|
|
aria-label="사이트를 불러오는 중"
|
|
>
|
|
<img
|
|
id="site-splash-logo"
|
|
class="site-splash__logo"
|
|
alt=""
|
|
width="80"
|
|
height="80"
|
|
hidden
|
|
>
|
|
<span id="site-splash-text" class="site-splash__text">sori.studio</span>
|
|
</div>
|
|
{{ APP }}
|
|
</body>
|
|
</html>
|