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

Side by Side Diff: milo/appengine/frontend/templates/pages/frontpage.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
1 {{define "title"}}Milo{{end}} 1 {{define "title"}}Milo{{end}}
2 2
3 {{define "head"}}{{end}} 3 {{define "head"}}{{end}}
4 4
5 {{define "body"}} 5 {{define "body"}}
6 <h1>Milo</h1> 6 <h1>Milo</h1>
7 7
8 {{ range .frontpage.CIServices }} 8 {{ range .frontpage.CIServices }}
9 <h2> {{ .Name }} 9 <h2> {{ .Name }}
10 {{ if .Host }} ({{ .Host | linkify }}) {{ end }} 10 {{ if .Host }} ({{ .Host | linkify }}) {{ end }}
11 </h2> 11 </h2>
12 {{ range .BuilderGroups }} 12 {{ range .BuilderGroups }}
13 <h3> {{ .Name }} </h3> 13 <h3> {{ .Name }} </h3>
14 {{ range .Builders }} 14 {{ range .Builders }}
15 <li>{{ . | linkify }}</li> 15 <li>{{ . | linkify }}</li>
16 {{ else }} 16 {{ else }}
17 No builders found... 17 No builders found...
18 {{ end }} 18 {{ end }}
19 {{ else}} 19 {{ else}}
20 Nothing to see here... 20 Nothing to see here...
21 {{ end }} 21 {{ end }}
22 {{ end }} 22 {{ end }}
23 23
24 {{end}} <!-- Body --> 24 {{end}} <!-- Body -->
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698