Files
astrbot_plugin_jx3/templates/pages/shitu.html
T
2026-08-04 02:08:49 +08:00

49 lines
1.6 KiB
HTML

{# template-title: 师徒招募 #}
{# template-components: data-table #}
<div class="container data-page">
<h1>{{ title }}</h1>
<div class="data-page__meta">
{{ server }}
{% if keyword %} · 关键词:{{ keyword }}{% endif %}
· 更新时间:{{ update_time }}
</div>
<table class="data-table">
<thead>
<tr>
<th>职业</th>
<th>角色名称</th>
<th>等级</th>
<th>体型</th>
<th>帮会</th>
<th>阵营</th>
<th>信息</th>
</tr>
</thead>
<tbody>
{% for item in items %}
<tr>
<td class="data-cell--medium">
<div class="icon-label">
{% if icons.sect.get(item.forceName) %}
<img class="icon-label__icon" src="{{ icons.sect[item.forceName] }}" alt="{{ item.forceName }}">
{% endif %}
<span>{{ item.forceName }}</span>
</div>
</td>
<td class="data-cell--name data-cell--nowrap">{{ item.roleName }}</td>
<td class="data-cell--center data-cell--nowrap">{{ item.roleLevel }}</td>
<td class="data-cell--center data-cell--nowrap">{{ item.bodyName }}</td>
<td>{{ item.tongName }}</td>
<td class="data-cell--center data-cell--nowrap">{{ item.campName }}</td>
<td class="data-cell--copy">{{ item.comment }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</div>