-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathApp-ugly-tpl.html
37 lines (30 loc) · 1004 Bytes
/
App-ugly-tpl.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<!DOCTYPE html>
<html>
<head>
<title><%= name %></title>
<!-- (c) 2017 CA Technologies. All Rights Reserved. -->
<!-- Build Date: <%= new Date() %> -->
<script type="text/javascript">
var APP_BUILD_DATE = "<%= new Date() %>";
var STORY = "<%= story %>";
var BUILDER = "[%= builder %]";
var CHECKSUM = [%= checksum %];
</script>
<script type="text/javascript" src="/apps/<%= sdk %>/sdk.js"></script>
<!-- our highcharts (needed so that we can add patterns)
<script type="text/javascript" src="/apps/<%= sdk %>/lib/analytics/analytics-all.js"></script>
-->
<script type="text/javascript">
Rally.onReady(function() {
<%= ugly_contents %>
Rally.launchApp('<%= className %>', {
name: '<%= name %>'
});
});
</script>
<style type="text/css">
<%= style_contents %>
</style>
</head>
<body></body>
</html>