Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(379)

Side by Side Diff: milo/appengine/frontend/expectations/bootstrap-buildbot.TestableBuilder-Basic_Test_with_builds.html

Issue 2748073006: Milo Refactor: Remove theme support (Closed)
Patch Set: Fix builder.html pointer Created 3 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(Empty)
1
2
3 <!DOCTYPE html>
4 <html lang="en">
5 <head>
6 <meta charset="utf-8">
7 <meta http-equiv="X-UA-Compatible" content="IE=edge">
8 <meta name="viewport" content="width=device-width, initial-scale=1">
9
10 <meta name="description" content="">
11 <meta name="author" content="Luci Authors">
12
13
14 <title>Builder Sample Builder</title>
15
16
17 <link href="/static/bootstrap/third_party/css/bootstrap.min.css" rel="styles heet">
18 <style>
19 body {
20 padding-top: 70px;
21 }
22 .starter-template {
23 padding: 40px 15px;
24 text-align: center;
25 }
26 </style>
27
28 </head>
29
30 <body>
31
32 <nav class="navbar navbar-inverse navbar-fixed-top">
33 <div class="container">
34 <div class="navbar-header">
35 <button type="button" class="navbar-toggle collapsed" data-toggle="col lapse" data-target="#navbar" aria-expanded="false" aria-controls="navbar">
36 <span class="sr-only">Toggle navigation</span>
37 <span class="icon-bar"></span>
38 <span class="icon-bar"></span>
39 <span class="icon-bar"></span>
40 </button>
41 <a class="navbar-brand" href="#">Luci</a>
42 </div>
43 <div id="navbar" class="collapse navbar-collapse">
44 <ul class="nav navbar-nav">
45 <li class="active"><a href="#">Home</a></li>
46 </ul>
47 <ul class="nav navbar-nav navbar-right">
48 <li><a href="/settings">Settings</a></li>
49 </ul>
50 </div>
51 </div>
52 </nav>
53
54 <div class="container">
55
56
57 <div class="row">
58
59 <div class="col-md-6">
60
61 <h4>Current Builds</h4>
62 <ul>
63
64 <li><a href="https://some.url/path">Some current build</a></a>
65 [Running for: 0s]
66 []
67 </li>
68
69 </ul>
70
71 </div>
72
73 <div class="col-md-6">
74
75 <h4>Pending Build Requests</h4>
76 <ul>
77
78 <li><small>(, waiting 0s)</small>
79
80
81
82
83 </li>
84
85 </ul>
86
87 </div>
88
89 <div class="col-md-6">
90 <h2>Recent Builds:</h2>
91 <table class="table table-condensed table-hover table-striped">
92 <tr>
93 <th>Time</th>
94 <th>Revision</th>
95 <th>Result</th>
96 <th>Build #</th>
97 <th>Info</th>
98 </tr>
99
100
101
102 <tr>
103 <td></td>
104 <td>deadbe</td>
105 <td> NotRun </td>
106 <td><a href="https://some.url/path">Some current build</a></td>
107 <td class="left">[]</td>
108 </tr>
109
110
111 </table>
112 </div>
113
114 </div>
115
116 </div>
117
118
119
120
121 <script src="/static/common/third_party/js/jquery.min.js"></script>
122 <script src="/static/bootstrap/third_party/js/bootstrap.min.js"></script>
123 </body>
124 </html>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698