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

Side by Side Diff: milo/frontend/templates/pages/frontpage.html

Issue 2953183002: Fix milo deployment (Closed)
Patch Set: License header fix Created 3 years, 6 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
« no previous file with comments | « milo/frontend/templates/pages/error.html ('k') | milo/frontend/templates/pages/log.html » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {{define "title"}}Milo{{end}}
2
3 {{define "head"}}{{end}}
4
5 {{define "body"}}
6 <h1>Milo</h1>
7
8 {{ if .error }}
9 Encountered error while loading front page: {{ .error }}
10 {{ end }}
11
12 {{ range .frontpage.CIServices }}
13 <h2> {{ .Name }}
14 {{ if .Host }} ({{ .Host | linkify }}) {{ end }}
15 </h2>
16 {{ range .BuilderGroups }}
17 <h3> {{ .Name }} </h3>
18 {{ range .Builders }}
19 <li>{{ . | linkify }}</li>
20 {{ else }}
21 No builders found...
22 {{ end }}
23 {{ else}}
24 Nothing to see here...
25 {{ end }}
26 {{ end }}
27
28 {{end}} <!-- Body -->
OLDNEW
« no previous file with comments | « milo/frontend/templates/pages/error.html ('k') | milo/frontend/templates/pages/log.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698