github.com/jlowellwofford/u-root@v1.0.0/pkg/sos/html/sos.html (about)

     1  <head>
     2    <title>Service of Services</title>
     3    <link rel="stylesheet" href="css/stylesheet.css">
     4    <meta charset="utf-8">
     5  </head>
     6  
     7  <body>
     8    <div class="banner">
     9        <h1><a href="http://localhost:8000" target="_blank" class="bannerbtn">Service of Services</a></h1>
    10    </div>
    11    <div class="content">
    12      <div class="center">
    13        <h2 class="center">Current Services</h2>
    14        <table class="center">
    15          <tr>
    16              <th>Service</th>
    17              <th>Port Number</th>
    18            </tr>
    19          {{range $key, $value := .}}
    20          <tr>
    21          <td><a href="http://localhost:{{$value}}" target="_blank" class="button">{{$key}}</td>
    22          <td>{{$value}}</td>
    23          </tr>
    24          {{else}}
    25          <tr>
    26            <td colspan="3">No services</td>
    27          </tr>
    28          {{end}}
    29        </table>
    30      </div> 
    31    </div>
    32  </body>