s2-dungeonsandexploits/flask/templates/debug_index.html

26 lines
780 B
HTML
Raw Permalink Normal View History

2022-11-18 09:04:33 +01:00
{% extends "base.html" %}
{% block head %}
{{ super() }}
<link rel="stylesheet" href="/static/game/TemplateData/style.css">
{% endblock %}
{% block content %}
<div id="unity-container" class="unity-desktop">
<canvas id="unity-canvas" width=960 height=600></canvas>
<div id="unity-loading-bar">
<div id="unity-logo"></div>
<div id="unity-progress-bar-empty">
<div id="unity-progress-bar-full"></div>
</div>
</div>
<div id="unity-warning"> </div>
<div id="unity-footer">
<div id="unity-webgl-logo"></div>
<div id="unity-fullscreen-button"></div>
<div id="unity-build-title">game</div>
</div>
<script src="{{ url_for('static', filename='js/debug_index.js') }}"></script>
</div>
{% endblock %}