webgme
Version:
Web-based Generic Modeling Environment
48 lines (42 loc) • 1.56 kB
HTML
<head>
<title><%=pageTitle%></title>
<!-- Load main.js with RequireJS and launch the app from there -->
<script data-main="main" src="common/lib/requirejs/require.js"></script>
<!-- favicon -->
<link rel="shortcut icon" type="image/x-icon" href="<%=favicon%>">
<meta property="webgme-version" content="<%=webgmeVersion%>">
<meta property="app-version" content="<%=appVersion%>">
<meta property="mounted-path" content="<%=mountedPath%>">
<meta property="og:type" content="website"/>
<meta property="og:site_name" content="WebGME"/>
<meta property="og:description" content="Web-based Generic Modeling Environment"/>
<meta property="og:title" content="<%=projectId%>"/>
<meta property="og:url" content="<%=url%>"/>
<meta property="og:image" content="<%=imageUrl%>"/>
<!-- DO NOT enable base tag, it will break the raphael js svg, to test it open the meta-editor
when the base tag is present. -->
<!--<base href="/">-->
<style>
.default-container {
position: absolute;
width: 100%;
height: 86px;
line-height: 100%;
text-align: center;
top: 50%;
margin: 0 0 0 0;
font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
font-size: 14px;
}
.default-container > span {
font-weight: bold;
}
</style>
</head>
<body>
<div class="default-container">
<span>Loading Editor ...</span>
</div>
</body>
</html>