Files
web_management/templates/index.html
Andreas Stephanides 1731729b5e bootstrap path
2017-07-02 21:57:31 +02:00

23 lines
513 B
HTML

<html>
<head>
<title>{{title}}</title>
<script src="static/jquery-3.2.0.min.js" ></script>
<link rel="stylesheet" href="static/bootstrap/css/bootstrap.min.css"/>
<script src="static/bootstrap/js/bootstrap.min.js" ></script>
</head>
<body>
<h1>{{title}}</h1>
<ul>
{% for k in keys %}
<li>
<a href="{{k}}">{{k}}</a>
</li>
{% endfor %}
</ul>
<div style="white-space: pre-wrap;font:Courier, monospace; font-size:small; width:80em;background:#DDF">{{out.decode('utf-8')}}</div>
</body>