30 lines
754 B
HTML
30 lines
754 B
HTML
|
|
<html>
|
||
|
|
<head>
|
||
|
|
<link rel="stylesheet" type="text/css" href="../../css/sight.css">
|
||
|
|
<link rel="stylesheet" type="text/css" href="css/template.css">
|
||
|
|
|
||
|
|
<script src="../../js/jquery-3.6.4.min.js"></script>
|
||
|
|
<script src="qrc:///qtwebchannel/qwebchannel.js"></script>
|
||
|
|
<script src="../../js/sight.js"></script>
|
||
|
|
<script>
|
||
|
|
$(document).ready(function(){
|
||
|
|
getData("name", true);
|
||
|
|
});
|
||
|
|
</script>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<main id="sight">
|
||
|
|
<div id="stitlebar">
|
||
|
|
<div id="stitle">TITLE</div>
|
||
|
|
<div id="sclose"></div>
|
||
|
|
<div id="stoggled"></div>
|
||
|
|
<div id="sminimize"></div>
|
||
|
|
</div>
|
||
|
|
<div id="content">
|
||
|
|
OTHER
|
||
|
|
<a href="main.html">Open the main inside this sight!</a>
|
||
|
|
</div>
|
||
|
|
<div id="sresize"></div>
|
||
|
|
</main>
|
||
|
|
</body>
|
||
|
|
</html>
|