SuperScriptMaterializer/SuperScriptViewer/templates/index.html

32 lines
674 B
HTML
Raw Normal View History

2020-04-03 23:57:36 +08:00
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Script Hierarchy</title>
</head>
<body>
<h1>Script Hierarchy</h1>
<p>Choose a script to read it.</p>
<br />
<br />
{% for key, value in scripts.items() %}
<h2>{{ key|e }}</h2>
2020-04-03 23:57:36 +08:00
<ol>
{% for i in value %}
2020-04-18 12:49:48 +08:00
<li><a href="{{ "/viewer/%s"|format(i.id) }}">{{ i.name }}</a></li>
{% endfor %}
2020-04-03 23:57:36 +08:00
</ol>
{% endfor %}
2020-04-13 15:36:37 +08:00
<br />
<br />
2020-04-18 12:49:48 +08:00
<p>Generated by SuperScriptMaterializer</p>
<div style="display: flex; flex-flow: row; height: 50px;">
<p style="margin: 5px;"><a href="/help">Help</a></p>
<p style="margin: 5px;">|</p>
<p style="margin: 5px;"><a href="/about">About</a></p>
</div>
2020-04-03 23:57:36 +08:00
</body>
</html>