chore: rename app to 星笺 (Mailova)

This commit is contained in:
2026-07-06 00:40:08 +08:00
parent 741b51ad6c
commit a7c5082ff6
11 changed files with 13 additions and 13 deletions

View File

@@ -2,4 +2,4 @@
## 工作习惯
- **文件清理规则**:每次完成任务后,确认所有子任务都完成,再统一删除要清理的文件(如测试脚本、验证脚本),不要边做边删,留到最后一次性处理。
- **文件清理规则(铁律)**:绝对不要在任务执行过程中删除文件。所有删除操作必须等到所有任务都确认完成后,最后统一一次性删除。即使中途生成了测试脚本、验证脚本、调试文件,也留着别动,最后一起清理。

View File

@@ -3,13 +3,13 @@
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>{% block title %}明信片管理器{% endblock %}</title>
<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>
<a href="/dashboard" class="nav-brand">📮 星笺</a>
<div class="nav-links">
{% if user is defined and user %}
<a href="/profiles">Profile</a>

View File

@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}总览 - 明信片管理器{% endblock %}
{% block title %}总览 - 星笺{% endblock %}
{% block content %}
<div class="section-header">
<h1>👋 欢迎,{{ user.username }}</h1>
@@ -125,7 +125,7 @@
{% else %}
<div class="empty-state">
<div class="empty-icon">📮</div>
<p>欢迎使用明信片管理器</p>
<p>欢迎使用星笺</p>
<p class="empty-sub">创建一个 <a href="/profiles">Profile</a> 开始管理你的明信片</p>
</div>
{% endif %}

View File

@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}登录 - 明信片管理器{% endblock %}
{% block title %}登录 - 星笺{% endblock %}
{% block content %}
<div class="auth-form">
<h2>登录</h2>

View File

@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}明信片详情 - 明信片管理器{% endblock %}
{% block title %}明信片详情 - 星笺{% endblock %}
{% block content %}
<div class="section-header">
<div class="detail-title-row">

View File

@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}{{ '编辑' if postcard else '新建' }}明信片 - 明信片管理器{% endblock %}
{% block title %}{{ '编辑' if postcard else '新建' }}明信片 - 星笺{% endblock %}
{% block content %}
<div class="section-header">
<h1>{{ '编辑' if postcard else '新建' }}明信片</h1>

View File

@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}{{ profile.nickname }} - 明信片管理器{% endblock %}
{% block title %}{{ profile.nickname }} - 星笺{% endblock %}
{% block content %}
<div class="section-header">
<h1>{{ profile.nickname }} 的明信片</h1>

View File

@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}{{ profile.nickname }} 展示设置 - 明信片管理器{% endblock %}
{% block title %}{{ profile.nickname }} 展示设置 - 星笺{% endblock %}
{% block content %}
<div class="section-header">
<div class="detail-title-row">

View File

@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}Profile - 明信片管理器{% endblock %}
{% block title %}Profile - 星笺{% endblock %}
{% block content %}
<div class="section-header">
<h1>Profile</h1>

View File

@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}用户设置 - 明信片管理器{% endblock %}
{% block title %}用户设置 - 星笺{% endblock %}
{% block content %}
<div class="section-header">
<h1>用户设置</h1>

View File

@@ -1,5 +1,5 @@
{% extends "base.html" %}
{% block title %}展示管理 - 明信片管理器{% endblock %}
{% block title %}展示管理 - 星笺{% endblock %}
{% block content %}
<div class="section-header">
<div class="detail-title-row">