mirror of
https://github.com/turboderp-org/exui.git
synced 2026-04-19 22:08:58 +00:00
38 lines
2.8 KiB
HTML
38 lines
2.8 KiB
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>ExUI</title>
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='theme.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='style.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='scrollbar.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='slider.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='controls.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='mainmenu.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='settings.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='spinner.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='models.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='chat.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='notepad.css') }}">
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='overlay.css') }}">
|
|
<link rel="icon" type="image/png" sizes="32x32" href="{{ url_for('static', filename='gfx/favicon.png') }}">
|
|
{% include 'svg_icons.html' %}
|
|
</head>
|
|
<body>
|
|
<script src="{{ url_for('static', filename='marked/marked.min.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='util.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='roles.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='globals.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='overlay.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='controls.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='mainmenu.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='settings.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='theme.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='models.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='chat.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='chatsettings.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='notepad.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='notepadsettings.js') }}"></script>
|
|
<script type="module" src="{{ url_for('static', filename='main.js') }}"></script>
|
|
</body>
|
|
</html>
|