| OLD | NEW |
| 1 {{define "title"}}Configs{{end}} | 1 {{define "title"}}Configs{{end}} |
| 2 | 2 |
| 3 {{ define "head" }}{{ end }} | 3 {{ define "head" }}{{ end }} |
| 4 | 4 |
| 5 {{define "body"}} | 5 {{define "body"}} |
| 6 <div class="header"> | 6 <div class="header"> |
| 7 <a href="{{ .Navi.SiteTitle.URL }}">{{ .Navi.SiteTitle.Label }}</a> | 7 <a href="{{ .Navi.SiteTitle.URL }}">{{ .Navi.SiteTitle.Label }}</a> |
| 8 </div> | 8 </div> |
| 9 <div class="content"> | 9 <div class="content"> |
| 10 <h1>All Projects</h1> | 10 <h1>All Projects</h1> |
| (...skipping 30 matching lines...) Expand all Loading... |
| 41 {{ else }} | 41 {{ else }} |
| 42 <ul> | 42 <ul> |
| 43 <li> Revision: {{ .ServiceConfig.Revision }} </li> | 43 <li> Revision: {{ .ServiceConfig.Revision }} </li> |
| 44 <li> Last Updated: {{ .ServiceConfig.LastUpdated | localTime "N/A" }} </li
> | 44 <li> Last Updated: {{ .ServiceConfig.LastUpdated | localTime "N/A" }} </li
> |
| 45 </ul> | 45 </ul> |
| 46 Content: | 46 Content: |
| 47 <pre>{{ .ServiceConfig.Text }}</pre> | 47 <pre>{{ .ServiceConfig.Text }}</pre> |
| 48 {{ end }} | 48 {{ end }} |
| 49 </div> | 49 </div> |
| 50 {{end}} | 50 {{end}} |
| OLD | NEW |