summaryrefslogtreecommitdiff
path: root/index.html
blob: 424dbd26d3f4d21dffb2a77c7a05bc208f445dab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<!DOCTYPE html>
<html>
<head>
    <link href='https://fonts.googleapis.com/css?family=Sarpanch:800' rel='stylesheet' type='text/css'>
    <link href='style.css' rel='stylesheet' type='text/css'>
    <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.28/angular.min.js"></script>
    <script src="js/main.js"></script>
</head>
<body ng-app="ciat">
    <h1><em>Baserock</em> <span>|</span> CIAT</h1>
    
    <div class="visualisation" ng-controller="VisualisationController">
        <div class="box"
             ng-class="{'pass': step.lastBuild.success, 'active': step.data.state == 'building', 'fail': !step.lastBuild.success}"
             ng-repeat="step in steps">
            {{step.name}}
        </div>
    </div>
</body>
</html>