Загрузить файлы в «/»

This commit is contained in:
2026-01-03 15:12:59 +01:00
parent 0e85fa5937
commit 9985eb277b
+51
View File
@@ -0,0 +1,51 @@
<!--
This file is part of iros
Copyright (C) 2024 Alex <uni@vrsal.xyz>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU Affero General Public License as published
by the Free Software Foundation, version 3 of the License.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU Affero General Public License for more details.
You should have received a copy of the GNU Affero General Public License
along with this program. If not, see <https://www.gnu.org/licenses/>.
-->
<!DOCTYPE html>
<html>
<head>
<title>IROS | Viewer</title>
{{template "header.html" .}}
<link rel="stylesheet" type="text/css" media="screen" href="./static/css/main.css">
<link rel="stylesheet" type="text/css" media="screen" href="./static/css/viewer.css">
<script src="./js/config.js"></script>
<script src="./static/js/commands/base.js"></script>
<script src="./static/js/util.js"></script>
<script src="./static/js/viewer.js"></script>
<script src="./static/js/elements/element.js"></script>
<script src="./static/js/elements/text.js"></script>
<script src="./static/js/elements/image.js"></script>
<script src="./static/js/elements/timer.js"></script>
<script src="./static/js/elements/audio.js"></script>
<script src="./static/js/elements/video.js"></script>
<script src="./static/js/elements/iframe.js"></script>
</head>
<body>
<!-- main content -->
<div id="overlay"></div>
<script>
var edt = null;
var view = new viewer($("#overlay"));
</script>
</body>
</html>