Files
web_management/templates/index.html
Andreas Stephanides 79f92e75e6 bootstrap added
2017-07-02 21:53:59 +02:00

23 lines
499 B
HTML

<html>
<head>
<title>{{title}}</title>
<script src="static/jquery-3.2.0.min.js" ></script>
<link rel="stylesheet" href="bootstrap/css/bootstrap.min.css"/>
<script src="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>