all repos — privychka @ 9e327f2fa97646ef9737ab74b66a19fe7c653bbb

habit tracking service

display.html (view raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
<html>
  <title>today's activities</title>
  <meta charset="utf-8">
  <meta name="viewport" content="width=device-width, initial-scale=1">
  <style type="text/css">
  body {
    background: #f4f4f4;
    margin: 40px auto;
    max-width: 650px;
    line-height: 1.6;
    font-size: 18px;
    font-family: sans-serif;
    padding: 0 10px;
  }

  td, th {
    border: 1px solid;
    text-align: left;
    padding: 8px;
  }
  </style>
  <main>
    <body>
      <table>
        <tr>
          <th>time</th>
          <th>activity</th>
          <th>notes</th>
        </tr>
        {{ range $_, $activity := . }}
        <tr>
          <td>{{ .Time.Format "02 Jan, 2006 15:04:05" }}</td>
          <td>{{ .Activity }}</td>
          <td><em>{{ .Notes }}</em></td>
        </tr>
        {{ end }}
      </table> 
    </body>
  </main>
</html>