40 lines
937 B
HTML
40 lines
937 B
HTML
<html>
|
|
<head>
|
|
<link rel="stylesheet" type="text/css" href="../../core/template_files/css/sight.css">
|
|
<link rel="stylesheet" type="text/css" href="css/template.css">
|
|
|
|
<script src="template.js"></script>
|
|
<script src="../../core/template_files/js/jquery-3.6.4.min.js"></script>
|
|
<script src="qrc:///qtwebchannel/qwebchannel.js"></script>
|
|
<script>
|
|
var init_sight={
|
|
'width' : 500,
|
|
'height' : 300,
|
|
'pos_x' : 50,
|
|
'pos_y': 50
|
|
}
|
|
</script>
|
|
|
|
<script>
|
|
$(document).ready(function(){
|
|
/*addData("name", "Balazs", true);
|
|
getData("name");*/
|
|
});
|
|
</script>
|
|
</head>
|
|
<body>
|
|
<main id="sight" display="show">
|
|
<div id="stitlebar" display="show">
|
|
<div id="stitle">Main Template</div>
|
|
<div id="sclose"></div>
|
|
<div id="stoggled"></div>
|
|
<div id="sminimize"></div>
|
|
</div>
|
|
<div id="content">
|
|
ADMIN
|
|
</div>
|
|
<div id="sresize" display="show"></div>
|
|
</main>
|
|
</body>
|
|
</html>
|