mirror of
https://github.com/paradoxxxzero/butterfly.git
synced 2025-01-27 02:08:53 +00:00
24 lines
980 B
HTML
24 lines
980 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 spellcheck="false"
|
|
data-force-unicode-width="{{ 'yes' if options.force_unicode_width else 'no' }}">
|
|
<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>
|
|
</body>
|
|
</html>
|