23 lines
452 B
HTML
23 lines
452 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<title>{% block title %}{% endblock %}</title>
|
|
<script src="https://cdn.tailwindcss.com"></script>
|
|
</head>
|
|
|
|
<body class="bg-zinc-100">
|
|
|
|
<!-- App 容器 -->
|
|
<div class="mx-auto max-w-md min-h-screen bg-white relative">
|
|
|
|
<!-- 主内容 -->
|
|
<main class="pb-20">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</div>
|
|
|
|
</body>
|
|
|
|
</html> |