25 lines
652 B
HTML
25 lines
652 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh">
|
|
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
|
<title>心尺 PsychoScales</title>
|
|
<link rel="stylesheet" href="/static/styles.css">
|
|
</head>
|
|
|
|
<body>
|
|
{% if readme_content %}
|
|
<div class="readme-section">
|
|
{{ readme_content|safe }}
|
|
</div>
|
|
{% endif %}
|
|
<ul>
|
|
{% for scale_id, scale in scales.items() %}
|
|
<li><a href="/scales/{{ scale_id }}" , title=" {{ scale.abstract }}">{{ scale.get('title',
|
|
'未命名问卷') }}</a></li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
|
|
</html> |