Files
mailova/app/templates/base.html

27 lines
795 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>
{% block nav %}
<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>
{% endblock %}
<main class="container">
{% block content %}{% endblock %}
</main>
</body>
</html>