github.com/tuingking/flamingo@v0.0.0-20220403134817-2796ae0e84ca/web/templates/index.html (about)

     1  {{template "header"}}
     2  
     3  <h1>{{.title}}</h1>
     4  
     5  <div class="row">
     6      <h3>Stats</h3>
     7      <div class="col-md-6">
     8          <table class="table table-striped table-hover">
     9              <tr>
    10                  <td>Num CPU</td>
    11                  <td>{{.stat.cpu}}</td>
    12              </tr>
    13              <tr>
    14                  <td>Num goroutine</td>
    15                  <td>{{.stat.goroutine}}</td>
    16              </tr>
    17          </table>
    18      </div>
    19      <div class="col-md-6"></div>
    20  </div>
    21  
    22  {{template "footer"}}