summaryrefslogtreecommitdiff
path: root/app/views/dashboard/nav.html.tmpl
blob: c9c4a843db5a6a95a835ef3b2da16e6c9d66da1f (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
<nav>
  <ul>
    <li><strong><a href="/" class="secondary">SparkleLab✨</a></strong></li>
  </ul>
  <ul>
    {{ if .IsLoggedIn }}
      <li>
        <details class="dropdown">
          <summary>
            {{ .CurrentUser.Username }}
          </summary>
          <ul dir="rtl">
            <li><a href="/dashboard">Dashboard</a></li>
            <li><a href="{{ .CurrentUser.ProfileURL }}">Profile</a></li>
            <li>
              <form action="/signout" method="post">
                <input type="submit" value="Logout">
              </form>
            </li>
          </ul>
        </details>
      </li>
    {{ else }}
      <li><a href="/dashboard" class="secondary">Login</a></li>
    {{ end }}
  </ul>
</nav>