foxx-framework
Version:
Foxx framework based on RiotJS + ArangoDB/Foxx
33 lines (26 loc) • 782 B
HTML
<html class="bg">
<head>
<meta charset="UTF-8">
<title>Foxxy - Connection</title>
<link rel="stylesheet" href="DIGEST(css/vendors.css)">
<link rel="stylesheet" href="DIGEST(css/css.css)">
</head>
<body>
<div id="app" class="login-block"></div>
<script src="DIGEST(js/vendors.js)"></script>
<script src="DIGEST(js/js.js)"></script>
<script>
var url = "http://localhost:8529/_db/{{DBNAME}}/";
// Production config
//if(window.location.hostname !== "localhost") {
// url = "_db/{{DBNAME}}/";
//}
var common = require("js/common.js");
common.init();
require("widgets/login.html.tag");
// Start the app
require("js/js.js");
</script>
</body>
</html>