summaryrefslogtreecommitdiff
path: root/app/views/dashboard/show.html.tmpl
blob: acb0b3f86e57570ecc5afed313c8c53475413379 (plain)
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
<!doctype html>
<html lang="en">
  <head>
    <meta charset="utf-8">
    <meta name="viewport" content="width=device-width, initial-scale=1">
    <meta name="color-scheme" content="light dark">
    <title>SparkleLab</title>
    <link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/@picocss/pico@2/css/pico.min.css">
  </head>
  <body>
    <main class="container">
      <nav>
        <ul>
          <li><strong>SparkleLab</strong></li>
        </ul>
        <ul>
          <li>
            <form action="/session/destroy" method="post">
              <input type="submit" value="Logout">
            </form>
          </li>
        </ul>
      </nav>
      {{range .Sparkles}}
        <div>{{ . }}</div>
      {{else}}
        <div><strong>No Sparkles</strong></div>
      {{end}}
    </main>
  </body>
</html>