mirror of
https://github.com/cxchency/manosaba-character-composer.git
synced 2026-01-13 03:07:10 +08:00
24 lines
690 B
HTML
24 lines
690 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
<title>选择角色</title>
|
|
<link rel="stylesheet" href="{{ url_for('static', filename='main.css') }}">
|
|
</head>
|
|
<body>
|
|
<div id="role-selector">
|
|
<div id="roles-list">
|
|
{% for r in characters %}
|
|
<div class="role-item">
|
|
<a href="/character/{{ r.name }}">
|
|
<img src="{{ r.profile }}" alt="{{ r.name }}">
|
|
<div class="role-name">{{ r.name }}</div>
|
|
</a>
|
|
</div>
|
|
{% endfor %}
|
|
</div>
|
|
</div>
|
|
</body>
|
|
</html>
|