mirror of
https://github.com/paradoxxxzero/butterfly.git
synced 2025-02-04 13:28:32 +00:00
30 lines
1.2 KiB
HTML
30 lines
1.2 KiB
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="{{ static_url('main.css') }}" rel="stylesheet" id="style">
|
|
</head>
|
|
|
|
<body spellcheck="false"
|
|
data-force-unicode-width="{{ 'yes' if options.force_unicode_width else 'no' }}"
|
|
data-root-path="{{ options.uri_root_path }}">
|
|
<div id="popup" class="hidden">
|
|
</div>
|
|
<script src="{{ static_url('html-sanitizer.js') }}"></script>
|
|
<script src="{{ static_url('main.%sjs' % (
|
|
'' if options.unminified else 'min.')) }}"></script>
|
|
<script src="{{ static_url('ext.%sjs' % (
|
|
'' if options.unminified else 'min.')) }}"></script>
|
|
<script src="{{ reverse_url('LocalJsStatic') }}"></script>
|
|
<div id="packed"></div>
|
|
<div id="term"></div>
|
|
</body>
|
|
</html>
|