30 lines
836 B
HTML
30 lines
836 B
HTML
<!DOCTYPE html>
|
|
<html lang="ko" class="dark">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>{% block head_title %}신라 AMP{% endblock %}</title>
|
|
|
|
<!-- ✅ Tailwind CSS CDN -->
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
<script>
|
|
tailwind.config = {
|
|
darkMode: 'class',
|
|
theme: {
|
|
extend: {
|
|
fontFamily: {
|
|
sans: ['Inter', 'sans-serif']
|
|
}
|
|
}
|
|
}
|
|
};
|
|
</script>
|
|
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700&display=swap" rel="stylesheet" />
|
|
|
|
{% block extra_head %}{% endblock %}
|
|
</head>
|
|
<body class="bg-gradient-to-br from-gray-900 via-gray-800 to-black text-white min-h-screen px-4 font-sans">
|
|
{% block content %}{% endblock %}
|
|
</body>
|
|
</html>
|