golang.org/x/build@v0.0.0-20240506185731-218518f32b70/internal/gomoteserver/ui/status.html (about) 1 <!DOCTYPE html> 2 <!-- 3 Copyright 2023 The Go Authors. All rights reserved. 4 Use of this source code is governed by a BSD-style 5 license that can be found in the LICENSE file. 6 --> 7 8 <html lang="en"> 9 <head> 10 <title>Gomote Server</title> 11 <link rel="stylesheet" href="/style.css"> 12 </head> 13 <body> 14 <header> 15 <h1> 16 <a href="/">Gomote Server</a> 17 </h1> 18 <div class="clear"></div> 19 </header> 20 21 <h2>Instances <a href='#instances'>ΒΆ</a></h2> 22 23 <table> 24 <thead> 25 <tr> 26 <th>Name</th> 27 <th>Created</th> 28 <th>Expires</th> 29 </tr> 30 </thead> 31 <tbody> 32 {{ range .Instances }} 33 <tr> 34 <td>{{ .Name }}</td> 35 <td>{{ .Created }} ago</td> 36 <td>in {{ .Expires }}</td> 37 </tr> 38 {{ end }} 39 </tbody> 40 </table> 41 42 <div class="footer"><strong>Version: </strong>{{ .Version }}</div> 43 </body> 44 </html>