mirror of
https://github.com/paradoxxxzero/butterfly.git
synced 2025-01-27 02:08:53 +00:00
24 lines
789 B
HTML
24 lines
789 B
HTML
<!DOCTYPE html>
|
||
{% from tornado.options import options %}
|
||
<html>
|
||
<head>
|
||
<meta charset="utf-8">
|
||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
<meta name="description" content="Butterfly - A web terminal based on websocket and tornado">
|
||
<meta name="author" content="Mounier Florian">
|
||
<link rel="shortcut icon" href="{{ static_url('images/favicon.png') }}">
|
||
|
||
<title>Butterfly</title>
|
||
<link href="/style.css" rel="stylesheet">
|
||
</head>
|
||
|
||
<body>
|
||
<h1>Currently open butterfly sessions :</h1>
|
||
<ul>
|
||
{% for session in sessions %}
|
||
<li><h2><a target="_blank" href="/session/{{ session }}">{{ session }}</a></h2></li>
|
||
{% end %}
|
||
</ul>
|
||
</body>
|
||
</html>
|