18 lines
464 B
Plaintext
18 lines
464 B
Plaintext
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8"/>
|
|
<title>Loading</title>
|
|
<link rel="stylesheet" type="text/css" href="/static/spa-loader.css" />
|
|
</head>
|
|
<body>
|
|
<script><%- inlineScript %></script>
|
|
<script>
|
|
FFSpaLoader.options.debug.enable = true;
|
|
FFSpaLoader.options.boot.angular.modules.push('exampleUI');
|
|
FFSpaLoader.options.server.assets = '/static/spa-client-resources';
|
|
FFSpaLoader.start();
|
|
</script>
|
|
</body>
|
|
</html>
|