25 lines
756 B
HTML
25 lines
756 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>{% block title %}明信片管理器{% endblock %}</title>
|
|
<link rel="stylesheet" href="/static/style.css">
|
|
</head>
|
|
<body>
|
|
<nav class="navbar">
|
|
<a href="/dashboard" class="nav-brand">📮 明信片管理器</a>
|
|
<div class="nav-links">
|
|
{% if user is defined and user %}
|
|
<a href="/profiles">Profile</a>
|
|
<a href="/settings">设置</a>
|
|
<a href="/logout" class="nav-logout">退出</a>
|
|
{% endif %}
|
|
</div>
|
|
</nav>
|
|
<main class="container">
|
|
{% block content %}{% endblock %}
|
|
</main>
|
|
</body>
|
|
</html>
|