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