mirror of
https://github.com/Hopiu/webapi-eca.git
synced 2026-03-16 22:10:31 +00:00
30 lines
No EOL
826 B
HTML
30 lines
No EOL
826 B
HTML
<!DOCTYPE HTML>
|
|
<html>
|
|
<head>
|
|
<title></title>
|
|
<link rel="stylesheet" type="text/css" href="style.css">
|
|
<script src='//ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js' type='text/javascript'></script>
|
|
<script type='text/javascript'>
|
|
var checkIncludes = function () {
|
|
if( window.$ === undefined ) {
|
|
document.getElementById('info').innerHTML = 'Not all required libraries have been loaded. Are you connected to the internet?';
|
|
}
|
|
};
|
|
window.addEventListener( "load" , checkIncludes, true );
|
|
</script>
|
|
|
|
<script type='text/javascript'>
|
|
{{{script}}}
|
|
</script>
|
|
{{{remote_scripts}}}
|
|
|
|
</head>
|
|
<body>
|
|
{{{menubar}}}
|
|
<div id="info"></div>
|
|
<div id="mainbody">
|
|
<div id="pagetitle"></div>
|
|
{{{content}}}
|
|
</div>
|
|
</body>
|
|
</html> |