SuperScriptMaterializer/SuperScriptViewer/templates/index.html

32 lines
674 B
HTML

<!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>
<ol>
{% for i in value %}
<li><a href="{{ "/viewer/%s"|format(i.id) }}">{{ i.name }}</a></li>
{% endfor %}
</ol>
{% endfor %}
<br />
<br />
<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>
</body>
</html>